mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 13:58:49 +00:00
cac5c5adc7
+ native in moebius: Bug 1317600: https://bugzilla.mozilla.org/show_bug.cgi?id=1317600 A note - not implemented: Bug 1282768: https://bugzilla.mozilla.org/show_bug.cgi?id=1282768 *.css: filter: url("chrome://global/skin/filters.svg#fill");, fill: Bug 1283385: https://bugzilla.mozilla.org/show_bug.cgi?id=1283385 Bug 1323109: https://bugzilla.mozilla.org/show_bug.cgi?id=1323109 Bug 1314544: https://bugzilla.mozilla.org/show_bug.cgi?id=1314544 Bug 1286182: https://bugzilla.mozilla.org/show_bug.cgi?id=1286182 Bug 1325922: https://bugzilla.mozilla.org/show_bug.cgi?id=1325922 A note - not implemented: Bug 1282768: https://bugzilla.mozilla.org/show_bug.cgi?id=1282768 *.css: filter: url("chrome://global/skin/filters.svg#fill");, fill: Bug 1320225: https://bugzilla.mozilla.org/show_bug.cgi?id=1320225 Bug 1341190: https://bugzilla.mozilla.org/show_bug.cgi?id=1341190
56 lines
1.2 KiB
CSS
56 lines
1.2 KiB
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
@namespace url("http://www.w3.org/1999/xhtml");
|
|
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
.datetime-input-box-wrapper {
|
|
-moz-appearance: none;
|
|
display: inline-flex;
|
|
flex: 1;
|
|
cursor: default;
|
|
background-color: inherit;
|
|
color: inherit;
|
|
min-width: 0;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.datetime-input-edit-wrapper {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.datetime-input {
|
|
-moz-appearance: none;
|
|
text-align: center;
|
|
padding: 0;
|
|
border: 0;
|
|
margin: 0;
|
|
ime-mode: disabled;
|
|
cursor: default;
|
|
-moz-user-select: none;
|
|
}
|
|
|
|
.datetime-separator {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.datetime-input[readonly],
|
|
.datetime-input[disabled] {
|
|
color: GrayText;
|
|
-moz-user-select: none;
|
|
}
|
|
|
|
.datetime-reset-button {
|
|
background-image: url(chrome://global/skin/icons/input-clear.svg);
|
|
background-color: transparent;
|
|
background-repeat: no-repeat;
|
|
background-size: 12px, 12px;
|
|
border: none;
|
|
height: 12px;
|
|
width: 12px;
|
|
align-self: center;
|
|
flex: none;
|
|
}
|