зеркало из https://github.com/mozilla/gecko-dev.git
44 строки
1.1 KiB
CSS
44 строки
1.1 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/. */
|
|
|
|
/* Splitters */
|
|
:root[devtoolstheme="light"] {
|
|
/* These variables are used in browser.xul but inside the toolbox they are overridden by --theme-splitter-color */
|
|
--devtools-splitter-color: #dde1e4;
|
|
}
|
|
|
|
:root[devtoolstheme="dark"] {
|
|
--devtools-splitter-color: #42484f;
|
|
}
|
|
|
|
.devtools-horizontal-splitter {
|
|
-moz-appearance: none;
|
|
background-image: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
border-bottom: 1px solid var(--devtools-splitter-color);
|
|
min-height: 3px;
|
|
height: 3px;
|
|
margin-top: -3px;
|
|
position: relative;
|
|
}
|
|
|
|
.devtools-side-splitter {
|
|
-moz-appearance: none;
|
|
background-image: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
-moz-border-end: 1px solid var(--devtools-splitter-color);
|
|
min-width: 3px;
|
|
width: 3px;
|
|
-moz-margin-start: -3px;
|
|
position: relative;
|
|
cursor: e-resize;
|
|
}
|
|
|
|
.devtools-horizontal-splitter.disabled,
|
|
.devtools-side-splitter.disabled {
|
|
pointer-events: none;
|
|
}
|