MediaWiki:Common.css: Difference between revisions

From Food Hacking Base
Jump to navigation Jump to search
(moar. moar!)
No edit summary
Line 16: Line 16:
   color: #252525;
   color: #252525;
   padding: 0.35em 0 0.35em 0.5em;
   padding: 0.35em 0 0.35em 0.5em;
  font-size: 1em;
  line-height: 1.4em;
}
}



Revision as of 01:57, 1 February 2014

/* CSS placed here will be applied to all skins */

/* fix captcha input style */
/* copied from resources/mediawiki.ui/mediawiki.ui.vector.css */

.mw-ui-vform div.captcha input {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #c9c9c9;
  color: #252525;
  padding: 0.35em 0 0.35em 0.5em;
  font-size: 1em;
  line-height: 1.4em;
}

.mw-ui-vform div.captcha input:focus {
  box-shadow: #4091ed 0px 0px 5px;
  border-color: #4091ed;
  outline: 0;
}

.mw-ui-vform div.captcha label {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.9em;
  color: #4a4a4a;
  width: auto;
  margin: 0 0 0.2em 0;
  padding: 0;
}