diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /editor/reftests/xul/input.css | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'editor/reftests/xul/input.css')
-rw-r--r-- | editor/reftests/xul/input.css | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/editor/reftests/xul/input.css b/editor/reftests/xul/input.css new file mode 100644 index 000000000..2104b16d2 --- /dev/null +++ b/editor/reftests/xul/input.css @@ -0,0 +1,70 @@ +@namespace url('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul'); +@namespace html url('http://www.w3.org/1999/xhtml'); + +#mac html|input, #mac html|textarea { + margin: 4px; + padding: 0 1px; +} + +#win html|input, #win html|textarea { + margin: 2px 4px; + padding: 2px 3px 3px; + padding-inline-start: 5px; +} + +#win html|input:-moz-system-metric(windows-default-theme) { + padding: 1px 2px 2px; + padding-inline-start: 4px; +} + +#linux html|input, #linux html|textarea { + margin: 2px 4px; + padding: 2px 5px 3px; +} + +textbox[multiline="true"], html|textarea { + border: none !important; + -moz-appearance: none !important; + background-color: white !important; + border-top-right-radius: 0; + border-bottom-left-radius: 0; +} + +html|input, html|textarea { + font: inherit; +} + +html|input.ac { + padding: 0 4px !important; +} + +html|input.empty { + color: graytext; +} + +:root:not(.winxp) html|input.empty:-moz-system-metric(windows-default-theme) { + font-style: italic; +} + +html|input.num { + text-align: end; +} + +#mac html|input.num { + margin-inline-end: 8px; +} + +#win html|input.num { + padding: 0 !important; +} + +#linux html|input.num { + margin-inline-end: 3px; + padding: 3px 4px; +} + +html|div.plainfield { + color: -moz-fieldtext; + white-space: pre; +} + |