2009-03-12 07:16:33 -07: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 14:18:37 -07:00
|
|
|
-moz-box-sizing: border-box;
|
2009-03-12 07:16:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
html|*.textbox-textarea {
|
|
|
|
-moz-appearance: none !important;
|
|
|
|
text-shadow: inherit;
|
2009-04-27 14:18:37 -07:00
|
|
|
-moz-box-sizing: border-box;
|
2009-03-12 07:16:33 -07:00
|
|
|
}
|
|
|
|
|
2010-03-07 13:05:01 -08:00
|
|
|
/*
|
2010-03-03 23:13:27 -08:00
|
|
|
html|*.textbox-input:-moz-placeholder,
|
|
|
|
html|*.textbox-textarea:-moz-placeholder {
|
2009-03-12 07:16:33 -07:00
|
|
|
text-align: left;
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2010-03-03 23:13:27 -08:00
|
|
|
html|*.textbox-input:-moz-placeholder:-moz-locale-dir(rtl),
|
|
|
|
html|*.textbox-textarea:-moz-placeholder:-moz-locale-dir(rtl) {
|
2009-03-12 07:16:33 -07:00
|
|
|
text-align: right;
|
|
|
|
direction: rtl;
|
|
|
|
}
|
2010-03-07 13:05:01 -08:00
|
|
|
*/
|