2015-01-18 18:24:00 +03: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/. */
|
|
|
|
|
2017-09-20 18:30:14 +03:00
|
|
|
.description-wrapper {
|
|
|
|
background-image: url("chrome://browser/skin/illustrations/error-session-restore.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 38%;
|
|
|
|
padding-inline-start: 38%;
|
|
|
|
background-position: left center;
|
|
|
|
min-height: 300px;
|
|
|
|
}
|
|
|
|
|
2018-11-22 22:47:27 +03:00
|
|
|
.description-wrapper:dir(rtl) {
|
2020-04-07 19:30:23 +03:00
|
|
|
background-position-x: right;
|
2017-09-20 18:30:14 +03:00
|
|
|
}
|
2018-11-22 22:47:27 +03:00
|
|
|
|
2020-04-07 19:30:23 +03:00
|
|
|
.title {
|
|
|
|
background-image: none;
|
2017-09-20 18:30:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#tabsToggle {
|
|
|
|
cursor: pointer;
|
2018-12-12 13:34:33 +03:00
|
|
|
/* Override button background-color and color from common.css */
|
|
|
|
background-color: transparent;
|
2018-11-11 00:28:39 +03:00
|
|
|
color: #0a84ff !important;
|
2017-09-20 18:30:14 +03:00
|
|
|
-moz-context-properties: fill;
|
|
|
|
fill: currentColor;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding-inline-end: 45px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabsToggle:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
2020-04-07 19:30:23 +03:00
|
|
|
inset-inline-start: 0;
|
2017-09-20 18:30:14 +03:00
|
|
|
background-image: url("chrome://global/skin/icons/arrow-dropdown-16.svg");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 20px;
|
|
|
|
background-position: right center;
|
|
|
|
}
|
|
|
|
|
2020-04-07 19:30:23 +03:00
|
|
|
#tabsToggle:dir(rtl):after {
|
|
|
|
background-position-x: left;
|
|
|
|
}
|
|
|
|
|
2017-09-20 18:30:14 +03:00
|
|
|
#tabsToggle:not(.show-tabs):after {
|
|
|
|
transform: scaleY(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabsToggle.show-tabs > #hideTabs,
|
|
|
|
#tabsToggle:not(.show-tabs) > #showTabs {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tree-container:not(.expanded) {
|
|
|
|
visibility: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-container {
|
|
|
|
text-align: end;
|
2015-01-18 18:24:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
treechildren::-moz-tree-image(icon),
|
|
|
|
treechildren::-moz-tree-image(noicon) {
|
2020-04-07 19:30:23 +03:00
|
|
|
padding-inline-end: 2px;
|
2015-02-13 13:49:00 +03:00
|
|
|
margin: 0 2px;
|
2015-01-18 18:24:00 +03:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
treechildren::-moz-tree-image(noicon) {
|
2017-05-03 10:31:05 +03:00
|
|
|
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.svg");
|
2018-01-24 17:15:51 +03:00
|
|
|
-moz-context-properties: fill;
|
|
|
|
fill: currentColor;
|
2015-01-18 18:24:00 +03:00
|
|
|
}
|
|
|
|
treechildren::-moz-tree-image(container, noicon) {
|
2018-04-02 06:01:48 +03:00
|
|
|
list-style-image: url("chrome://browser/skin/window.svg");
|
2015-01-18 18:24:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
treechildren::-moz-tree-image(checked) {
|
2018-09-21 13:23:21 +03:00
|
|
|
list-style-image: url("chrome://global/skin/icons/check.svg");
|
2017-05-30 14:09:42 +03:00
|
|
|
-moz-context-properties: fill, stroke;
|
|
|
|
fill: #2292d0;
|
2015-01-18 18:24:00 +03:00
|
|
|
}
|
|
|
|
treechildren::-moz-tree-image(checked, selected) {
|
2017-05-30 14:09:42 +03:00
|
|
|
fill: white;
|
|
|
|
stroke: #0095dd;
|
2015-01-18 18:24:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
treechildren::-moz-tree-image(partial) {
|
2018-09-21 13:23:21 +03:00
|
|
|
list-style-image: url("chrome://global/skin/icons/check-partial.svg");
|
2017-05-30 13:42:15 +03:00
|
|
|
-moz-context-properties: fill, stroke;
|
|
|
|
fill: #2292d0;
|
2015-01-18 18:24:00 +03:00
|
|
|
}
|
|
|
|
treechildren::-moz-tree-image(partial, selected) {
|
2017-05-30 13:42:15 +03:00
|
|
|
fill: white;
|
|
|
|
stroke: #0095dd;
|
2015-05-22 16:58:00 +03:00
|
|
|
}
|