mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1187605 pt 2 - Make the <select> dropdown arrow respect the 'orientation' attribute, if present. r=smontagu
This commit is contained in:
parent
5068a1ca21
commit
98ffae0b88
BIN
layout/style/arrow-left.gif
Normal file
BIN
layout/style/arrow-left.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 B |
BIN
layout/style/arrow-right.gif
Normal file
BIN
layout/style/arrow-right.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 B |
BIN
layout/style/arrowd-left.gif
Normal file
BIN
layout/style/arrowd-left.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 60 B |
BIN
layout/style/arrowd-right.gif
Normal file
BIN
layout/style/arrowd-right.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 59 B |
@ -274,6 +274,22 @@ select > button:active {
|
||||
background-image: url("arrowd.gif") !important;
|
||||
}
|
||||
|
||||
select > button[orientation="left"] {
|
||||
background-image: url("arrow-left.gif") !important;
|
||||
}
|
||||
|
||||
select > button[orientation="right"] {
|
||||
background-image: url("arrow-right.gif") !important;
|
||||
}
|
||||
|
||||
select > button[orientation="left"]:active {
|
||||
background-image: url("arrowd-left.gif") !important;
|
||||
}
|
||||
|
||||
select > button[orientation="right"]:active {
|
||||
background-image: url("arrowd-right.gif") !important;
|
||||
}
|
||||
|
||||
select:empty {
|
||||
inline-size: 2.5em;
|
||||
}
|
||||
|
@ -14,7 +14,11 @@ toolkit.jar:
|
||||
res/noframes.css (noframes.css)
|
||||
* res/forms.css (forms.css)
|
||||
res/number-control.css (number-control.css)
|
||||
res/arrow.gif (arrow.gif)
|
||||
res/arrowd.gif (arrowd.gif)
|
||||
res/arrow.gif (arrow.gif)
|
||||
res/arrow-left.gif (arrow-left.gif)
|
||||
res/arrow-right.gif (arrow-right.gif)
|
||||
res/arrowd.gif (arrowd.gif)
|
||||
res/arrowd-left.gif (arrowd-left.gif)
|
||||
res/arrowd-right.gif (arrowd-right.gif)
|
||||
|
||||
% resource gre-resources %res/
|
||||
|
Loading…
Reference in New Issue
Block a user