2011-10-26 09:02:08 +00:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
2012-05-21 11:12:37 +00: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/. */
|
2011-10-26 09:02:08 +00:00
|
|
|
|
2016-01-12 12:28:13 +00:00
|
|
|
.theme-dark {
|
2016-02-29 16:18:14 +00:00
|
|
|
--sidemenu-selected-arrow: url(images/itemArrow-dark-ltr.svg);
|
|
|
|
--sidemenu-selected-arrow-rtl: url(images/itemArrow-dark-rtl.svg);
|
2016-01-12 12:28:13 +00:00
|
|
|
}
|
|
|
|
.theme-light {
|
2016-02-29 16:18:14 +00:00
|
|
|
--sidemenu-selected-arrow: url(images/itemArrow-ltr.svg);
|
|
|
|
--sidemenu-selected-arrow-rtl: url(images/itemArrow-rtl.svg);
|
2016-01-12 12:28:13 +00:00
|
|
|
}
|
2014-02-06 15:33:31 +00:00
|
|
|
|
2015-01-24 01:10:18 +00:00
|
|
|
.splitview-nav-container .devtools-throbber {
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading .splitview-nav-container .devtools-throbber {
|
|
|
|
display: block;
|
2012-01-12 16:26:31 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 14:14:58 +00:00
|
|
|
.splitview-nav {
|
2014-02-06 15:33:31 +00:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
2011-12-19 14:14:58 +00:00
|
|
|
margin: 0;
|
2016-02-29 16:18:14 +00:00
|
|
|
background-color: var(--theme-sidebar-background);
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 14:14:58 +00:00
|
|
|
.splitview-nav > li {
|
2016-02-29 16:18:14 +00:00
|
|
|
padding-inline-end: 8px;
|
2011-12-19 14:14:58 +00:00
|
|
|
-moz-box-align: center;
|
2014-02-06 15:33:31 +00:00
|
|
|
outline: 0;
|
|
|
|
vertical-align: bottom;
|
2016-02-29 16:18:14 +00:00
|
|
|
border-bottom: 1px solid rgba(128,128,128,0.15);
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|
2011-12-19 14:14:58 +00:00
|
|
|
|
|
|
|
.placeholder {
|
|
|
|
-moz-box-flex: 1;
|
|
|
|
text-align: center;
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|
2011-12-19 14:14:58 +00:00
|
|
|
|
|
|
|
.splitview-nav > li.splitview-active {
|
2016-02-29 16:18:14 +00:00
|
|
|
background-color: var(--theme-selection-background);
|
|
|
|
color: var(--theme-selection-color);
|
|
|
|
background-image: var(--sidemenu-selected-arrow);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center right;
|
2014-02-06 15:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.splitview-nav > li.splitview-active:-moz-locale-dir(rtl) {
|
2016-02-29 16:18:14 +00:00
|
|
|
background-image: var(--sidemenu-selected-arrow-rtl);
|
|
|
|
background-position: center left;
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|
2011-12-19 14:14:58 +00:00
|
|
|
|
|
|
|
/* Toolbars */
|
|
|
|
|
2013-12-11 16:22:21 +00:00
|
|
|
.splitview-main > .devtools-toolbar {
|
2011-12-19 14:14:58 +00:00
|
|
|
background-origin: border-box;
|
|
|
|
background-clip: border-box;
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|
|
|
|
|
2016-01-12 12:28:13 +00:00
|
|
|
.splitview-main > toolbar,
|
|
|
|
.loading .splitview-nav-container {
|
2016-02-29 16:18:14 +00:00
|
|
|
border-inline-end: 1px solid var(--theme-splitter-color);
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|
|
|
|
|
2013-12-11 16:22:21 +00:00
|
|
|
.splitview-main > .devtools-toolbarbutton {
|
2011-12-19 14:14:58 +00:00
|
|
|
font-size: 11px;
|
|
|
|
padding: 0 8px;
|
|
|
|
width: auto;
|
|
|
|
min-width: 48px;
|
|
|
|
min-height: 0;
|
2011-10-26 09:02:08 +00:00
|
|
|
}
|