/*
EditorAutoBackup Gadget - CSS Styling. The editor auto saves old versions of the file edited
See detailed documentation in Dev/mediawiki
*/

#wikiEditor-ui-toolbar .editor-auto-backup {
  position: absolute;
  right: 143px;
  top: 5px;
  cursor: pointer;
  font-size: 20px;
  text-align: center;
  width: 30px;
  height: 30px;
  color: #01ca0e;
}

#wikiEditor-ui-toolbar .editor-auto-backup.has-error {
  color: red;
}

#editorAutoBackupModal div.content {
  position: absolute;
  left: 50px;
  max-width: calc(100% - 150px);
  height: calc(100% - 200px);
  border: none;
  box-shadow: 3px 3px 10px rgba(0,0,0,.3);
  background: #eee;
  padding: 20px;
}

#editorAutoBackupModal > .content > .viewport {
  overflow: auto;
}

#editorAutoBackupModal > .content > .viewport > .overview {
  width: 100%;
  height: 100%;
}

#editorAutoBackupModal > .content > .scrollbar {
  display: none;
}

#editorAutoBackupModal .intro,
#editorAutoBackupModal .has-error-warning {
  background: #fcfcfc;
  color: #444;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-left: 4px solid #777;
}

#editorAutoBackupModal .has-error-warning {
  border-left-color: red;
}

#editorAutoBackupModal div.content textarea {
  height: 35vw;
  white-space: pre;
  font-family: monospace;
  font-size: 12px;
  background-color: #fcfcfc;
  padding: 15px 20px;
  line-height: 19px;
  margin-top: 6px;
  border-radius: 8px;
}

/*
[[Category:MultiWiki]]
*/
