MediaWiki:Gadget-progressDialog.css

From wikishia

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
#prog-dlg {
  background: #222;
  padding: 20px;
  text-align: center;
  font-family: Calibri, Verdana, sans-serif;
  border: none;
  cursor: wait;
}

#prog-app {
  font-size: 150%;
  margin: 10px 0;
  padding: 5px 0;
  color: #fff;
}

div.prog-container {
  margin: 10px 0;
}

div.prog-text {
  color: #fff;
  min-height: 0.5em;
}

div.prog-text:first-letter {
  text-transform: uppercase;
}

div.prog-bar {
  width: 100%;
  height: 5px;
  background: #111;
  margin: 10px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border-top: 1px solid rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 4px 5px 5px;
  display: inline-block;
}

div.prog-bar-inner {
  height: 100%;
  display: block;
  background: #777;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 2px;
  -webkit-transition: width .4s ease-in-out;
  -moz-transition: width .4s ease-in-out;
  -ms-transition: width .4s ease-in-out;
  -o-transition: width .4s ease-in-out;
  transition: width .4s ease-in-out;   
}

#prog-t-prog-inner {
  background: #8aff51;
}