mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-18 03:31:34 +00:00
c7cb4ecee0
Currently we load textarea styles across all pages. However, in practice textareas only show up in the edit page and inside our JavaScript overlays To avoid loading these styles as rendering blocking CSS Additional changes: * Drop css reset for textarea so that textareas where unstyled have sensible defaults. Note given the usage of OOUI and MediaWiki UI this should be minimal/no disruption. * For consistency intentionally change the padding of the non-js editor to be consistent with other textareas * The padding-left/padding-right rules currently override the default rule so consolidate them into one single rule Note: * This will not break non-JavaScript editor mode as the module mediawiki.action.edit.styles is loaded on that page as a render blocking style. Bug: T199000 Depends-On: I1ab170fc4089b0c8129a3e62ee78efad1c6709fa Change-Id: I91743fdf1942a1b1b750422e973bf98fc4d106db
47 lines
833 B
Plaintext
47 lines
833 B
Plaintext
/* Fork of http://meyerweb.com/eric/tools/css/reset/
|
|
v2.0 | 20110126
|
|
License: none (public domain)
|
|
*/
|
|
@import '../../minerva.less/minerva.mixins';
|
|
|
|
html, body, div, span,
|
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
a, abbr, acronym, address, big, cite, code,
|
|
del, ins, em, img,
|
|
small, strike, strong, sub, sup, tt,
|
|
b, u, i, center,
|
|
dl, dt, dd, ol, ul, li,
|
|
fieldset, form, label, legend,
|
|
input, button, select,
|
|
audio, video {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
font: inherit;
|
|
font-size: 100%;
|
|
vertical-align: baseline;
|
|
background: none;
|
|
}
|
|
table, caption, tbody, tfoot, thead, tr, th, td {
|
|
font-size: 100%;
|
|
}
|
|
caption {
|
|
font-weight: bold;
|
|
}
|
|
button {
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
body {
|
|
line-height: 1;
|
|
}
|
|
input {
|
|
line-height: normal;
|
|
}
|
|
ol, ul {
|
|
list-style: none;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|