mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
3a3c8a379a
MozReview-Commit-ID: 5SKzyEC0fVi --HG-- extra : rebase_source : ad27a8450b2e9d9470ab14fafa1c21c2bbc0d35a
331 lines
8.6 KiB
CSS
331 lines
8.6 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/. */
|
|
|
|
#PopupSearchAutoComplete {
|
|
/* JS code forces the panel to have the width of the searchbar rather than
|
|
* the width of the textfield. Alignment of the panel with the searchbar is
|
|
* obtained with negative margins here: margin-inline-start when the text
|
|
* field is in the same direction as the rest of the UI, margin-inline-end
|
|
* when the textfield's direction has been reversed.
|
|
* (eg. using command+shift+X) */
|
|
margin-inline-start: -23px;
|
|
margin-inline-end: -21px;
|
|
}
|
|
|
|
.searchbar-textbox {
|
|
border-radius: 10000px;
|
|
}
|
|
|
|
.searchbar-popup {
|
|
margin-top: 4px;
|
|
margin-inline-start: 3px;
|
|
}
|
|
|
|
.searchbar-textbox > .autocomplete-textbox-container > .textbox-input-box {
|
|
margin: 0;
|
|
padding: 3px 0 2px;
|
|
height: 20px;
|
|
}
|
|
|
|
.searchbar-engine-image {
|
|
width: 16px;
|
|
height: 16px;
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
|
|
}
|
|
|
|
.search-go-container {
|
|
-moz-box-align: center;
|
|
padding-inline-end: 6px;
|
|
}
|
|
|
|
.searchbar-search-button-container {
|
|
-moz-box-align: center;
|
|
}
|
|
|
|
.search-go-button {
|
|
list-style-image: url("chrome://browser/skin/reload-stop-go.png");
|
|
-moz-image-region: rect(0, 42px, 14px, 28px);
|
|
}
|
|
|
|
.search-go-button:hover:active {
|
|
-moz-image-region: rect(14px, 42px, 28px, 28px);
|
|
}
|
|
|
|
.search-go-button:-moz-locale-dir(rtl) {
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.searchbar-search-button {
|
|
list-style-image: url("chrome://browser/skin/search-indicator.png");
|
|
-moz-image-region: rect(0, 20px, 20px, 0);
|
|
margin-inline-start: 3px;
|
|
margin-inline-end: 1px;
|
|
}
|
|
|
|
.searchbar-search-button[addengines="true"] {
|
|
list-style-image: url("chrome://browser/skin/search-indicator-badge-add.png");
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
@media (min-resolution: 2dppx) {
|
|
.searchbar-engine-image {
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png");
|
|
}
|
|
|
|
.search-go-button {
|
|
list-style-image: url("chrome://browser/skin/reload-stop-go@2x.png");
|
|
-moz-image-region: rect(0, 84px, 28px, 56px);
|
|
width: 14px;
|
|
}
|
|
|
|
.search-go-button:hover:active {
|
|
list-style-image: url("chrome://browser/skin/reload-stop-go@2x.png");
|
|
-moz-image-region: rect(28px, 84px, 56px, 56px);
|
|
width: 14px;
|
|
}
|
|
|
|
.searchbar-search-button {
|
|
list-style-image: url("chrome://browser/skin/search-indicator@2x.png");
|
|
width: 20px;
|
|
-moz-image-region: rect(0, 40px, 40px, 0);
|
|
}
|
|
|
|
.searchbar-search-button[addengines="true"] {
|
|
list-style-image: url("chrome://browser/skin/search-indicator-badge-add@2x.png");
|
|
}
|
|
|
|
.searchbar-search-button:hover {
|
|
-moz-image-region: rect(0, 80px, 40px, 40px);
|
|
}
|
|
|
|
.searchbar-search-button:hover:active {
|
|
-moz-image-region: rect(0, 120px, 40px, 80px);
|
|
}
|
|
}
|
|
|
|
.search-panel-current-engine {
|
|
border-radius: 4px 4px 0 0;
|
|
}
|
|
|
|
/**
|
|
* The borders of the various elements are specified as follows.
|
|
*
|
|
* The current engine always has a bottom border.
|
|
* The search results never have a border.
|
|
*
|
|
* When the search results are not collapsed:
|
|
* - The elements underneath the search results all have a top border.
|
|
*
|
|
* When the search results are collapsed:
|
|
* - The elements underneath the search results all have a bottom border, except
|
|
* the lowest one: search-setting-button.
|
|
*/
|
|
|
|
.search-panel-current-engine {
|
|
border-top: none !important;
|
|
border-bottom: 1px solid var(--panel-separator-color);
|
|
}
|
|
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-header,
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-one-offs,
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > vbox > .addengine-item:first-of-type {
|
|
border-top: none;
|
|
}
|
|
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > .searchbar-engine-one-off-item,
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-current-input,
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > .search-panel-one-offs,
|
|
.search-panel-tree[collapsed=true] + .search-one-offs > vbox > .addengine-item:last-of-type {
|
|
border-bottom: 1px solid var(--panel-separator-color);
|
|
}
|
|
|
|
.search-panel-header {
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
background-color: var(--arrowpanel-dimmed);
|
|
border-top: 1px solid var(--panel-separator-color);
|
|
margin: 0;
|
|
padding: 3px 6px;
|
|
color: GrayText;
|
|
}
|
|
|
|
.search-panel-header > label {
|
|
margin-top: 2px !important;
|
|
margin-bottom: 2px !important;
|
|
}
|
|
|
|
.search-panel-current-input > label {
|
|
margin: 2px 0 !important;
|
|
}
|
|
|
|
.search-panel-input-value {
|
|
color: -moz-fieldtext;
|
|
}
|
|
|
|
.search-panel-one-offs {
|
|
margin: 0 !important;
|
|
border-top: 1px solid var(--panel-separator-color);
|
|
}
|
|
|
|
.searchbar-engine-one-off-item {
|
|
-moz-appearance: none;
|
|
display: inline-block;
|
|
min-width: 48px;
|
|
height: 32px;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: linear-gradient(transparent 15%, var(--panel-separator-color) 15%, var(--panel-separator-color) 85%, transparent 85%);
|
|
background-size: 1px auto;
|
|
background-repeat: no-repeat;
|
|
background-position: right center;
|
|
color: GrayText;
|
|
}
|
|
|
|
.searchbar-engine-one-off-item:-moz-locale-dir(rtl) {
|
|
background-position: left center;
|
|
}
|
|
|
|
.searchbar-engine-one-off-item:not(.last-row) {
|
|
box-sizing: content-box;
|
|
border-bottom: 1px solid var(--panel-separator-color);
|
|
}
|
|
|
|
.search-setting-button-compact {
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
.search-panel-one-offs:not([compact=true]) > .searchbar-engine-one-off-item.last-of-row,
|
|
.search-panel-one-offs[compact=true] > .searchbar-engine-one-off-item.last-of-row:not(.dummy),
|
|
.search-panel-one-offs[compact=true] > .searchbar-engine-one-off-item.dummy:not(.last-of-row),
|
|
.search-panel-one-offs[compact=true] > .searchbar-engine-one-off-item.last-engine,
|
|
.search-setting-button-compact {
|
|
background-image: none;
|
|
}
|
|
|
|
.searchbar-engine-one-off-item[selected] {
|
|
background-color: Highlight;
|
|
background-image: none;
|
|
color: HighlightText;
|
|
}
|
|
|
|
.searchbar-engine-one-off-item > .button-box > .button-text {
|
|
display: none;
|
|
}
|
|
|
|
.searchbar-engine-one-off-item > .button-box > .button-icon {
|
|
margin-inline-start: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.addengine-item {
|
|
-moz-appearance: none;
|
|
font-size: 10px;
|
|
height: 32px;
|
|
margin: 0;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.addengine-item > .button-box {
|
|
-moz-box-pack: start;
|
|
}
|
|
|
|
.addengine-item:first-of-type {
|
|
border-top: 1px solid var(--panel-separator-color);
|
|
}
|
|
|
|
.addengine-item[selected] {
|
|
background-color: Highlight;
|
|
color: HighlightText;
|
|
}
|
|
|
|
.addengine-item[type=menu][selected] {
|
|
color: inherit;
|
|
background-color: var(--arrowpanel-dimmed-further);
|
|
}
|
|
|
|
.addengine-icon {
|
|
width: 16px;
|
|
}
|
|
|
|
.addengine-badge {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: -7px -9px 7px 9px;
|
|
list-style-image: url("chrome://browser/skin/badge-add-engine.png");
|
|
}
|
|
|
|
.addengine-item > .button-box > .button-text,
|
|
.addengine-item[type=menu] > .button-box > .box-inherit > .button-text {
|
|
-moz-box-flex: 1;
|
|
text-align: start;
|
|
padding-inline-start: 10px;
|
|
}
|
|
|
|
.addengine-item:not([image]) {
|
|
list-style-image: url("chrome://browser/skin/search-engine-placeholder.png");
|
|
}
|
|
|
|
@media (min-resolution: 2dppx) {
|
|
.addengine-badge {
|
|
list-style-image: url("chrome://browser/skin/badge-add-engine@2x.png");
|
|
}
|
|
|
|
.addengine-item:not([image]) {
|
|
list-style-image: url("chrome://browser/skin/search-engine-placeholder@2x.png");
|
|
}
|
|
}
|
|
|
|
.addengine-item[type=menu] > .button-box > .button-menu-dropmarker {
|
|
display: -moz-box;
|
|
-moz-appearance: menuarrow !important;
|
|
list-style-image: none;
|
|
}
|
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-cell {
|
|
border-top: none !important;
|
|
}
|
|
|
|
.search-panel-tree > .autocomplete-treebody::-moz-tree-image {
|
|
padding-inline-start: 4px;
|
|
padding-inline-end: 2px;
|
|
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");
|
|
}
|
|
|
|
#PopupSearchAutoComplete {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.search-setting-button {
|
|
-moz-appearance: none;
|
|
border-radius: 0 0 4px 4px;
|
|
min-height: 32px;
|
|
}
|
|
|
|
.search-setting-button[selected] {
|
|
background-color: var(--arrowpanel-dimmed-further);
|
|
}
|
|
|
|
.search-setting-button-compact > .button-box > .button-icon {
|
|
list-style-image: url("chrome://browser/skin/gear.svg");
|
|
filter: url(chrome://global/skin/filters.svg#fill);
|
|
fill: currentColor;
|
|
}
|