mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 00:45:30 +02:00
65 lines
1.7 KiB
CSS
65 lines
1.7 KiB
CSS
window.sidebar-panel {
|
|
background-color: var(--zen-themed-toolbar-bg) !important;
|
|
}
|
|
|
|
search-textbox#search-box {
|
|
appearance: none !important;
|
|
background-color: var(--zen-colors-tertiary) !important;
|
|
border: 1px solid var(--zen-colors-border) !important;
|
|
padding: 0.5rem !important;
|
|
border-radius: 5px !important;
|
|
}
|
|
|
|
search-textbox#search-box:hover {
|
|
border: 1px solid var(--zen-colors-secondary) !important;
|
|
}
|
|
|
|
search-textbox#search-box:hover:active {
|
|
border: 1px solid var(--zen-colors-secondary) !important;
|
|
}
|
|
|
|
button#viewButton {
|
|
appearance: none;
|
|
color: inherit;
|
|
background-color: transparent !important;
|
|
border-radius: var(--toolbarbutton-border-radius);
|
|
border: 1px solid transparent !important;
|
|
}
|
|
|
|
button#viewButton:hover {
|
|
background-color: var(--zen-colors-border) !important;
|
|
}
|
|
|
|
button#viewButton:hover:active {
|
|
background-color: var(--zen-colors-border) !important;
|
|
}
|
|
|
|
#sidebar-box[sidebarcommand="viewHistorySidebar"] #sidebar-header {
|
|
border-bottom: 0px !important;
|
|
}
|
|
|
|
#sidebar-box[sidebarcommand="viewHistorySidebar"] {
|
|
background-color: var(--zen-themed-toolbar-bg) !important;
|
|
border-radius: var(--zen-border-radius);
|
|
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
|
|
border: 1px solid var(--zen-colors-border);
|
|
padding: var(--zen-toolbox-padding) !important;
|
|
position: fixed;
|
|
z-index: 1;
|
|
height: 80vh !important;
|
|
width: 20em !important;
|
|
top: 10vh !important;
|
|
right: 0.6vw !important;
|
|
transform: translateX(105%);
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
#sidebar-box[hidden="true"][sidebarcommand="viewHistorySidebar"] {
|
|
display: flex !important;
|
|
opacity: 0 !important;
|
|
transform: translateX(105%);
|
|
}
|
|
|
|
#sidebar-box[checked="true"][sidebarcommand="viewHistorySidebar"] {
|
|
transform: translateX(0);
|
|
}
|