mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 512461: Theme the fennec search fields, r=gavin
This commit is contained in:
parent
af56472f2a
commit
5316e57922
BIN
mobile/themes/hildon/images/search-clear-30.png
Normal file
BIN
mobile/themes/hildon/images/search-clear-30.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 476 B |
BIN
mobile/themes/hildon/images/search-glass-30.png
Normal file
BIN
mobile/themes/hildon/images/search-glass-30.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 552 B |
@ -86,6 +86,8 @@ chrome.jar:
|
||||
images/check-30.png (images/check-30.png)
|
||||
images/fullscreen-close-40.png (images/fullscreen-close-40.png)
|
||||
images/fullscreen-up-40.png (images/fullscreen-up-40.png)
|
||||
images/search-glass-30.png (images/search-glass-30.png)
|
||||
images/search-clear-30.png (images/search-clear-30.png)
|
||||
images/section-expanded-16.png (images/section-expanded-16.png)
|
||||
images/section-collapsed-16.png (images/section-collapsed-16.png)
|
||||
images/geo-16.png (images/geo-16.png)
|
||||
|
@ -355,3 +355,12 @@ colorpicker > panel {
|
||||
colorpicker > vbox {
|
||||
background-color: #36373b;
|
||||
}
|
||||
|
||||
/* textbox ----------------------------------------------------------------- */
|
||||
.textbox-search-icon {
|
||||
list-style-image: url("chrome://browser/skin/images/search-glass-30.png");
|
||||
}
|
||||
|
||||
.textbox-search-clear {
|
||||
list-style-image: url("chrome://browser/skin/images/search-clear-30.png");
|
||||
}
|
||||
|
BIN
mobile/themes/wince/images/search-clear-16.png
Normal file
BIN
mobile/themes/wince/images/search-clear-16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 345 B |
BIN
mobile/themes/wince/images/search-clear-30.png
Normal file
BIN
mobile/themes/wince/images/search-clear-30.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 476 B |
BIN
mobile/themes/wince/images/search-glass-16.png
Normal file
BIN
mobile/themes/wince/images/search-glass-16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 335 B |
BIN
mobile/themes/wince/images/search-glass-30.png
Normal file
BIN
mobile/themes/wince/images/search-glass-30.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 552 B |
@ -66,6 +66,8 @@ chrome.jar:
|
||||
images/check-30.png (images/check-30.png)
|
||||
images/fullscreen-close-40.png (images/fullscreen-close-40.png)
|
||||
images/fullscreen-up-40.png (images/fullscreen-up-40.png)
|
||||
images/search-glass-30.png (images/search-glass-30.png)
|
||||
images/search-clear-30.png (images/search-clear-30.png)
|
||||
images/section-expanded-16.png (images/section-expanded-16.png)
|
||||
images/section-collapsed-16.png (images/section-collapsed-16.png)
|
||||
images/geo-16.png (images/geo-16.png)
|
||||
@ -162,3 +164,5 @@ chrome.jar:
|
||||
images/buttondark-active-36.png (images/buttondark-active-36.png)
|
||||
images/toolbarbutton-default-36.png (images/toolbarbutton-default-36.png)
|
||||
images/toolbarbutton-active-36.png (images/toolbarbutton-active-36.png)
|
||||
images/search-glass-16.png (images/search-glass-16.png)
|
||||
images/search-clear-16.png (images/search-clear-16.png)
|
||||
|
@ -503,3 +503,27 @@ colorpicker > panel {
|
||||
colorpicker > vbox {
|
||||
background-color: #36373b;
|
||||
}
|
||||
|
||||
/* textbox ----------------------------------------------------------------- */
|
||||
|
||||
/* high-res screens */
|
||||
@media all and (min-device-width: 401px) {
|
||||
.textbox-search-icon {
|
||||
list-style-image: url("chrome://browser/skin/images/search-glass-30.png");
|
||||
}
|
||||
|
||||
.textbox-search-clear {
|
||||
list-style-image: url("chrome://browser/skin/images/search-clear-30.png");
|
||||
}
|
||||
}
|
||||
|
||||
/* low-res screens */
|
||||
@media all and (max-device-width: 400px) {
|
||||
.textbox-search-icon {
|
||||
list-style-image: url("chrome://browser/skin/images/search-glass-16.png");
|
||||
}
|
||||
|
||||
.textbox-search-clear {
|
||||
list-style-image: url("chrome://browser/skin/images/search-clear-16.png");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user