2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
|
|
|
|
2015-01-09 10:00:51 -08:00
|
|
|
#PopupSearchAutoComplete {
|
|
|
|
-moz-margin-start: -24px;
|
2015-01-29 05:06:39 -08:00
|
|
|
padding: 1px;
|
2015-01-09 10:00:51 -08:00
|
|
|
}
|
|
|
|
|
2010-02-21 07:03:52 -08:00
|
|
|
.autocomplete-textbox-container {
|
|
|
|
-moz-box-align: stretch;
|
|
|
|
}
|
|
|
|
|
2007-11-23 22:00:27 -08:00
|
|
|
.textbox-input-box {
|
|
|
|
margin: 0;
|
2007-11-06 21:08:23 -08:00
|
|
|
}
|
|
|
|
|
2007-11-07 00:50:18 -08:00
|
|
|
/* Engine button */
|
2007-11-06 21:07:46 -08:00
|
|
|
.searchbar-engine-image {
|
2007-11-06 21:09:38 -08:00
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
2011-08-11 17:50:09 -07:00
|
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
|
2015-09-04 13:54:27 -07:00
|
|
|
-moz-margin-start: -1px;
|
2007-11-06 21:09:39 -08:00
|
|
|
}
|
|
|
|
|
2007-11-23 22:00:27 -08:00
|
|
|
/* Search go button */
|
|
|
|
.search-go-container {
|
2007-11-06 21:08:23 -08:00
|
|
|
-moz-box-align: center;
|
2007-11-06 21:09:33 -08:00
|
|
|
}
|
|
|
|
|
2007-11-06 21:09:43 -08:00
|
|
|
.search-go-button {
|
2007-11-23 22:00:27 -08:00
|
|
|
padding: 1px;
|
2015-09-04 13:54:28 -07:00
|
|
|
list-style-image: url("chrome://browser/skin/reload-stop-go.png");
|
|
|
|
-moz-image-region: rect(0, 42px, 14px, 28px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-go-button:hover {
|
|
|
|
-moz-image-region: rect(14px, 42px, 28px, 28px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-go-button:hover:active {
|
|
|
|
-moz-image-region: rect(28px, 42px, 42px, 28px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-go-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
|
|
|
|
transform: scaleX(-1);
|
2007-11-06 21:09:09 -08:00
|
|
|
}
|
2007-11-06 21:09:33 -08:00
|
|
|
|
2008-02-25 00:47:24 -08:00
|
|
|
menuitem[cmd="cmd_clearhistory"] {
|
|
|
|
list-style-image: url("moz-icon://stock/gtk-clear?size=menu");
|
|
|
|
}
|
|
|
|
|
|
|
|
menuitem[cmd="cmd_clearhistory"][disabled] {
|
|
|
|
list-style-image: url("moz-icon://stock/gtk-clear?size=menu&state=disabled");
|
|
|
|
}
|
|
|
|
|
2014-11-17 15:59:11 -08:00
|
|
|
.searchbar-search-button-container {
|
|
|
|
-moz-box-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-search-button {
|
2014-11-20 11:55:41 -08:00
|
|
|
list-style-image: url("chrome://browser/skin/search-indicator.png");
|
|
|
|
-moz-image-region: rect(0, 20px, 20px, 0);
|
2015-07-22 09:11:34 -07:00
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 1px;
|
2015-01-09 10:00:51 -08:00
|
|
|
-moz-margin-start: 2px;
|
2014-11-20 11:55:41 -08:00
|
|
|
}
|
|
|
|
|
2014-12-18 12:25:21 -08:00
|
|
|
.searchbar-search-button[addengines="true"] {
|
|
|
|
list-style-image: url("chrome://browser/skin/search-indicator-badge-add.png");
|
|
|
|
}
|
|
|
|
|
2014-11-20 11:55:41 -08:00
|
|
|
.searchbar-search-button:hover {
|
|
|
|
-moz-image-region: rect(0, 40px, 20px, 20px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-search-button:hover:active {
|
|
|
|
-moz-image-region: rect(0, 60px, 20px, 40px);
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.search-panel-current-engine {
|
|
|
|
border-top: none !important;
|
2014-11-20 13:59:58 -08:00
|
|
|
-moz-box-align: center;
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
2015-04-29 07:35:00 -07:00
|
|
|
.search-panel-current-engine {
|
2015-10-28 04:38:27 -07:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-tree {
|
|
|
|
border-top: 1px solid #ccc !important;
|
2015-02-20 03:41:11 -08:00
|
|
|
}
|
|
|
|
|
2014-11-17 15:59:11 -08:00
|
|
|
.search-panel-header {
|
|
|
|
font-weight: normal;
|
2015-09-21 15:18:51 -07:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
2014-11-17 15:59:11 -08:00
|
|
|
padding: 3px 5px;
|
2015-09-21 15:18:51 -07:00
|
|
|
color: MenuText;
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
2015-05-26 17:47:33 -07:00
|
|
|
.search-panel-header > label {
|
|
|
|
margin-top: 2px !important;
|
|
|
|
margin-bottom: 1px !important;
|
|
|
|
}
|
|
|
|
|
2014-11-17 15:59:11 -08:00
|
|
|
.search-panel-current-input > label {
|
2015-05-26 17:47:33 -07:00
|
|
|
margin: 2px 0 1px !important;
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-input-value {
|
2015-09-21 15:18:51 -07:00
|
|
|
color: Highlight;
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-one-offs {
|
2015-01-29 05:06:39 -08:00
|
|
|
margin: 0 -1px !important;
|
2015-09-21 15:18:51 -07:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item {
|
|
|
|
-moz-appearance: none;
|
|
|
|
display: inline-block;
|
|
|
|
border: none;
|
|
|
|
min-width: 48px;
|
|
|
|
height: 32px;
|
|
|
|
margin: 0 0;
|
|
|
|
padding: 0 0;
|
|
|
|
background: none;
|
2015-09-21 15:18:51 -07:00
|
|
|
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAWCAYAAAABxvaqAAAABmJLR0QA/wD/AP+gvaeTAAAAFElEQVQI12NgYGAwZmJgYGCgBwEAHpIAXs+dj/cAAAAASUVORK5CYII=');
|
2014-11-17 15:59:11 -08:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: right center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item:not(.last-row) {
|
2015-06-02 05:46:00 -07:00
|
|
|
box-sizing: content-box;
|
2015-09-21 15:18:51 -07:00
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item.last-of-row {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item[selected] {
|
|
|
|
background-color: Highlight;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item > .button-box {
|
|
|
|
border: none;
|
2015-01-29 05:06:39 -08:00
|
|
|
padding: 0;
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item > .button-box > .button-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchbar-engine-one-off-item > .button-box > .button-icon {
|
|
|
|
display: -moz-box;
|
|
|
|
-moz-margin-end: 0;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2014-11-20 11:55:41 -08:00
|
|
|
.addengine-item {
|
|
|
|
-moz-appearance: none;
|
2014-11-20 13:59:58 -08:00
|
|
|
border: none;
|
2014-11-20 11:55:41 -08:00
|
|
|
height: 32px;
|
2015-01-29 05:06:39 -08:00
|
|
|
margin: 0;
|
2014-11-20 11:55:41 -08:00
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.addengine-item > .button-box {
|
|
|
|
-moz-box-pack: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.addengine-item:first-of-type {
|
2015-09-21 15:18:51 -07:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
2014-11-20 11:55:41 -08:00
|
|
|
}
|
|
|
|
|
2015-02-11 11:47:27 -08:00
|
|
|
.addengine-item[selected] {
|
2014-11-20 11:55:41 -08:00
|
|
|
background-color: Highlight;
|
2014-11-24 03:49:46 -08:00
|
|
|
color: HighlightText;
|
2014-11-20 11:55:41 -08:00
|
|
|
}
|
|
|
|
|
2014-12-18 12:25:21 -08:00
|
|
|
.addengine-icon {
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.addengine-badge {
|
2014-11-20 11:55:41 -08:00
|
|
|
width: 16px;
|
2014-12-18 12:25:21 -08:00
|
|
|
height: 16px;
|
|
|
|
margin: -7px -9px 7px 9px;
|
|
|
|
list-style-image: url("chrome://browser/skin/badge-add-engine.png");
|
2014-11-20 11:55:41 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.addengine-item > .button-box > .button-text {
|
|
|
|
-moz-box-flex: 1;
|
|
|
|
text-align: start;
|
|
|
|
-moz-padding-start: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.addengine-item:not([image]) {
|
|
|
|
list-style-image: url("chrome://browser/skin/search-engine-placeholder.png");
|
|
|
|
}
|
|
|
|
|
2014-11-17 15:59:11 -08:00
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-cell {
|
|
|
|
border-top: none !important;
|
|
|
|
}
|
|
|
|
|
2014-12-22 11:34:58 -08:00
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-cell-text {
|
|
|
|
-moz-padding-start: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-image {
|
2015-01-09 10:00:51 -08:00
|
|
|
-moz-padding-start: 5px;
|
2014-12-22 11:34:58 -08:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-image(fromhistory) {
|
|
|
|
list-style-image: url("chrome://browser/skin/search-history-icon.svg#search-history-icon");
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-image(fromhistory, selected) {
|
|
|
|
list-style-image: url("chrome://browser/skin/search-history-icon.svg#search-history-icon-active");
|
|
|
|
}
|
|
|
|
|
2014-11-17 15:59:11 -08:00
|
|
|
.search-setting-button {
|
|
|
|
-moz-appearance: none;
|
2015-09-21 15:18:51 -07:00
|
|
|
background-color: Menu;
|
2015-01-29 05:06:39 -08:00
|
|
|
border: none;
|
2015-09-21 15:18:51 -07:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
2015-01-29 05:06:39 -08:00
|
|
|
margin: 0;
|
2014-11-17 15:59:11 -08:00
|
|
|
min-height: 32px;
|
|
|
|
}
|
|
|
|
|
2015-02-11 11:47:27 -08:00
|
|
|
.search-setting-button[selected] {
|
2015-09-21 15:18:51 -07:00
|
|
|
background-color: Highlight;
|
|
|
|
color: HighlightText;
|
2014-11-20 11:55:41 -08:00
|
|
|
border-top-color: #bdbebe;
|
2014-11-17 15:59:11 -08:00
|
|
|
}
|