browser/themes/shared/aiWindowSidebar.css
Propagation: 0%
Back to Home/* 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/. */
:root {
--ai-window-sidebar-width-default: 412px;
}
.ai-window-right-sidebar {
width: var(--ai-window-sidebar-width-default);
}
/* Splitter styling to match the left sidebar */
#ai-window-splitter {
width: var(--splitter-width);
border: 0;
background-color: transparent;
position: relative;
z-index: var(--browser-area-z-index-sidebar-splitter);
}
#ai-window-splitter:hover {
background-color: var(--toolbarbutton-hover-background);
}
Back to Home