зеркало из https://github.com/mozilla/gecko-dev.git
Bug 782973 - <select> elements in-content looks as a textfield. r=fabrice
This commit is contained in:
Родитель
ae7d6c1ee3
Коммит
5c56390bd9
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="11px" style="position: absolute; top: -moz-calc(50% - 2px);">
|
||||
<polyline points="1 1 5 6 9 1" stroke="#414141" stroke-width="2" stroke-linecap="round" fill="transparent" stroke-linejoin="round"/>
|
||||
</svg>
|
После Ширина: | Высота: | Размер: 360 B |
|
@ -74,3 +74,216 @@ xul|thumb {
|
|||
:-moz-any(video, audio) > xul|videocontrols {
|
||||
-moz-binding: url("chrome://global/content/bindings/videocontrols.xml#touchControls");
|
||||
}
|
||||
|
||||
select:not([size]):not([multiple]) > xul|scrollbar,
|
||||
select[size="1"] > xul|scrollbar,
|
||||
select:not([size]):not([multiple]) xul|scrollbarbutton,
|
||||
select[size="1"] xul|scrollbarbutton {
|
||||
display: block;
|
||||
margin-left: 0;
|
||||
min-width: 16px;
|
||||
}
|
||||
|
||||
/* Override inverse OS themes */
|
||||
select,
|
||||
textarea,
|
||||
button,
|
||||
xul|button,
|
||||
* > input:not([type="image"]) {
|
||||
-moz-appearance: none !important; /* See bug 598421 for fixing the platform */
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
select[size],
|
||||
select[multiple],
|
||||
select[size][multiple],
|
||||
textarea,
|
||||
* > input:not([type="image"]) {
|
||||
border-style: solid;
|
||||
border-color: #7d7d7d;
|
||||
color: #414141;
|
||||
background: white -moz-linear-gradient(top, rgba(115,115,115,0.5) 0, rgba(215,215,215,0.5) 3px, rgba(255,255,255,0.2) 16px);
|
||||
}
|
||||
|
||||
/* Selects are handled by the form helper, see bug 685197 */
|
||||
select option, select optgroup {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
input:-moz-placeholder,
|
||||
textarea:-moz-placeholder {
|
||||
color: GrayText;
|
||||
}
|
||||
|
||||
select:not([size]):not([multiple]),
|
||||
select[size="0"],
|
||||
select[size="1"],
|
||||
* > input[type="button"],
|
||||
* > input[type="submit"],
|
||||
* > input[type="reset"],
|
||||
button {
|
||||
border-style: solid;
|
||||
border-color: #7d7d7d;
|
||||
color: #414141;
|
||||
background: white -moz-linear-gradient(top, rgba(255,255,255,0.2) 0, rgba(215,215,215,0.5) 18px, rgba(115,115,115,0.5) 100%);
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
background: white -moz-linear-gradient(top, rgba(115,115,115,0.5) 0, rgba(215,215,215,0.5) 2px, rgba(255,255,255,0.2) 6px);
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
background: -moz-radial-gradient(6px 6px, cover, rgba(255,255,255,0.2) 3px, rgba(195,195,195,0.5) 5px, rgba(115,115,115,0.5) 100%);
|
||||
}
|
||||
|
||||
select {
|
||||
border-width: 1px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
select:not([size]):not([multiple]),
|
||||
select[size="0"],
|
||||
select[size="1"] {
|
||||
padding: 0 1px 0 1px;
|
||||
}
|
||||
|
||||
* > input:not([type="image"]) {
|
||||
border-width: 1px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
border-width: 1px;
|
||||
padding: 2px 1px 2px 1px;
|
||||
}
|
||||
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
input[type="reset"],
|
||||
button {
|
||||
border-width: 1px;
|
||||
padding: 0 7px 0 7px;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
max-width: 14px;
|
||||
max-height: 14px;
|
||||
border: 1px solid #a7a7a7 !important;
|
||||
padding: 2px 1px 2px 1px;
|
||||
}
|
||||
|
||||
select > button {
|
||||
border-width: 0px !important;
|
||||
margin: 0px !important;
|
||||
padding: 0px !important;
|
||||
border-radius: 0;
|
||||
color: #414141;
|
||||
|
||||
background-image: -moz-radial-gradient(bottom left, #bbbbbb 40%, #f5f5f5), url(arrow.svg) !important;
|
||||
background-color: transparent;
|
||||
background-position: -15px center, 4px center !important;
|
||||
background-repeat: no-repeat, no-repeat !important;
|
||||
background-size: 100% 90%, normal normal;
|
||||
|
||||
-moz-binding: none !important;
|
||||
position: relative !important;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
select[size]:focus,
|
||||
select[multiple]:focus,
|
||||
select[size][multiple]:focus,
|
||||
textarea:focus,
|
||||
input[type="file"]:focus > input[type="text"],
|
||||
* > input:not([type="image"]):focus {
|
||||
outline: 0px !important;
|
||||
border-style: solid;
|
||||
border-color: rgb(94,128,153);
|
||||
background: white -moz-linear-gradient(top, rgba(27,113,177,0.5) 0, rgba(198,225,246,0.2) 3px, rgba(255,255,255,0.2) 16px);
|
||||
}
|
||||
|
||||
select:not([size]):not([multiple]):focus,
|
||||
select[size="0"]:focus,
|
||||
select[size="1"]:focus,
|
||||
input[type="button"]:focus,
|
||||
input[type="submit"]:focus,
|
||||
input[type="reset"]:focus,
|
||||
button:focus {
|
||||
outline: 0px !important;
|
||||
border-style: solid;
|
||||
border-color: rgb(94,128,153);
|
||||
background: white -moz-linear-gradient(top, rgba(255,255,255,0.2) 0, rgba(198,225,256,0.2) 18px, rgba(27,113,177,0.5) 100%);
|
||||
}
|
||||
|
||||
input[type="checkbox"]:focus,
|
||||
input[type="radio"]:focus {
|
||||
border-color: #99c6e0 !important;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:focus {
|
||||
background: white -moz-linear-gradient(top, rgba(27,113,177,0.5) 0, rgba(198,225,246,0.2) 2px, rgba(255,255,255,0.2) 6px);
|
||||
}
|
||||
|
||||
input[type="radio"]:focus {
|
||||
background: -moz-radial-gradient(6px 6px, cover, rgba(255,255,255,0.2) 3px, rgba(198,225,246,0.2) 5px, rgba(27,113,177,0.5) 100%);
|
||||
}
|
||||
|
||||
/* we need to be specific for selects because the above rules are specific too */
|
||||
textarea[disabled],
|
||||
select[size][disabled],
|
||||
select[multiple][disabled],
|
||||
select[size][multiple][disabled],
|
||||
select:not([size]):not([multiple])[disabled],
|
||||
select[size="0"][disabled],
|
||||
select[size="1"][disabled],
|
||||
button[disabled],
|
||||
* > input:not([type="image"])[disabled] {
|
||||
color: rgba(0,0,0,0.3);
|
||||
border-color: rgba(125,125,125,0.4);
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
background: transparent -moz-linear-gradient(top, rgba(185,185,185,0.4) 0, rgba(235,235,235,0.4) 3px, rgba(255,255,255,0.4) 100%);
|
||||
}
|
||||
|
||||
select:not([size]):not([multiple])[disabled],
|
||||
select[size="0"][disabled],
|
||||
select[size="1"][disabled] {
|
||||
background: transparent -moz-linear-gradient(top, rgba(255,255,255,0.4) 0, rgba(235,235,235,0.4) 3px, rgba(185,185,185,0.4) 100%);
|
||||
}
|
||||
|
||||
input[type="button"][disabled],
|
||||
input[type="submit"][disabled],
|
||||
input[type="reset"][disabled],
|
||||
button[disabled="true"] {
|
||||
padding: 0 7px 0 7px;
|
||||
background: transparent -moz-linear-gradient(top, rgba(255,255,255,0.4) 0, rgba(235,235,235,0.4) 3px, rgba(185,185,185,0.4) 100%);
|
||||
}
|
||||
|
||||
input[type="radio"][disabled],
|
||||
input[type="radio"][disabled]:active,
|
||||
input[type="radio"][disabled]:hover,
|
||||
input[type="radio"][disabled]:hover:active,
|
||||
input[type="checkbox"][disabled],
|
||||
input[type="checkbox"][disabled]:active,
|
||||
input[type="checkbox"][disabled]:hover,
|
||||
input[type="checkbox"][disabled]:hover:active {
|
||||
border:1px solid rgba(125,125,125,0.4) !important;
|
||||
}
|
||||
|
||||
select[disabled] > button {
|
||||
opacity: 0.6;
|
||||
padding: 1px 7px 1px 7px;
|
||||
}
|
||||
|
||||
*:-moz-any-link:active,
|
||||
*[role=button]:active,
|
||||
button:active,
|
||||
input:active,
|
||||
option:active,
|
||||
select:active,
|
||||
label:active,
|
||||
textarea:active {
|
||||
background-color: rgba(141, 184, 216, 0.5);
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@ chrome.jar:
|
|||
% content branding %content/branding/
|
||||
% content browser %content/
|
||||
|
||||
content/arrow.svg (content/arrow.svg)
|
||||
content/dbg-browser-actors.js (content/dbg-browser-actors.js)
|
||||
content/forms.js (content/forms.js)
|
||||
content/settings.js (content/settings.js)
|
||||
|
|
Загрузка…
Ссылка в новой задаче