2009-03-12 14:16:33 +00:00
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
|
|
|
|
@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
|
|
|
|
|
|
|
|
html|*.textbox-input {
|
|
|
|
-moz-appearance: none !important;
|
|
|
|
text-align: inherit;
|
|
|
|
text-shadow: inherit;
|
2009-04-27 21:18:37 +00:00
|
|
|
-moz-box-sizing: border-box;
|
2009-03-12 14:16:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html|*.textbox-textarea {
|
|
|
|
-moz-appearance: none !important;
|
|
|
|
text-shadow: inherit;
|
2009-04-27 21:18:37 +00:00
|
|
|
-moz-box-sizing: border-box;
|
2009-03-12 14:16:33 +00:00
|
|
|
}
|
|
|
|
|
2010-03-07 21:05:01 +00:00
|
|
|
/*
|
2010-03-04 07:13:27 +00:00
|
|
|
html|*.textbox-input:-moz-placeholder,
|
|
|
|
html|*.textbox-textarea:-moz-placeholder {
|
2009-03-12 14:16:33 +00:00
|
|
|
text-align: left;
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2010-03-04 07:13:27 +00:00
|
|
|
html|*.textbox-input:-moz-placeholder:-moz-locale-dir(rtl),
|
|
|
|
html|*.textbox-textarea:-moz-placeholder:-moz-locale-dir(rtl) {
|
2009-03-12 14:16:33 +00:00
|
|
|
text-align: right;
|
|
|
|
direction: rtl;
|
|
|
|
}
|
2010-03-07 21:05:01 +00:00
|
|
|
*/
|