mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-13 21:43:52 +02:00
438 lines
9.4 KiB
CSS
438 lines
9.4 KiB
CSS
@namespace html 'http://www.w3.org/1999/xhtml';
|
|
|
|
#zen-workspaces-button {
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
&[dont-show='true'] {
|
|
display: none !important;
|
|
}
|
|
|
|
&:not([as-button='true']) {
|
|
--toolbarbutton-hover-background: transparent !important;
|
|
border-radius: var(--zen-button-border-radius) !important;
|
|
background: transparent;
|
|
padding: 2px;
|
|
appearance: unset !important;
|
|
height: fit-content;
|
|
gap: 3px;
|
|
|
|
& toolbarbutton {
|
|
margin: auto;
|
|
width: 25px;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 0 !important;
|
|
align-items: center;
|
|
position: relative;
|
|
|
|
@media (-moz-bool-pref: 'zen.workspaces.hide-deactivated-workspaces') {
|
|
&:not([active='true']):not(:hover) {
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 4px;
|
|
border-radius: 99px;
|
|
height: 4px;
|
|
background: color-mix(
|
|
in srgb,
|
|
var(--zen-primary-color) 10%,
|
|
light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.4)) 90%
|
|
);
|
|
left: 50%;
|
|
top: 50%;
|
|
filter: saturate(140%) brightness(110%) !important;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
& .zen-workspace-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media not (-moz-bool-pref: 'zen.workspaces.hide-deactivated-workspaces') {
|
|
& {
|
|
opacity: 0.4;
|
|
filter: grayscale(1);
|
|
transition: opacity 0.2s;
|
|
}
|
|
|
|
&[active='true'] {
|
|
filter: none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&[as-button='true'] {
|
|
border-radius: var(--tab-border-radius);
|
|
|
|
&:hover {
|
|
background: var(--toolbarbutton-hover-background);
|
|
}
|
|
}
|
|
|
|
&[as-button='true'] {
|
|
margin: auto;
|
|
padding: var(--toolbarbutton-inner-padding) !important;
|
|
width: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
|
|
height: calc(2 * var(--toolbarbutton-inner-padding) + 16px) !important;
|
|
border-radius: var(--tab-border-radius) !important;
|
|
|
|
&:hover {
|
|
background: var(--toolbarbutton-hover-background) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
#zen-workspaces-button .zen-workspace-sidebar-wrapper {
|
|
position: absolute;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#zen-workspaces-button .zen-workspace-sidebar-name {
|
|
margin-left: 0.2rem;
|
|
display: none;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/** Keep these selectors in sync with the ones in vertical-tabs.css */
|
|
#navigator-toolbox {
|
|
& #zen-workspaces-button[as-button='true'] {
|
|
width: calc(100% - var(--toolbarbutton-outer-padding));
|
|
margin: 2px;
|
|
min-width: calc(2 * var(--toolbarbutton-inner-padding) + 16px);
|
|
height: calc(2 * var(--toolbarbutton-inner-padding) + 16px);
|
|
}
|
|
|
|
& #zen-workspaces-button .zen-workspace-sidebar-name {
|
|
display: block;
|
|
}
|
|
|
|
& #zen-workspaces-button .zen-workspace-sidebar-icon {
|
|
margin-inline-end: 5px;
|
|
|
|
& [no-icon='true'] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
& #zen-workspaces-button .zen-workspace-sidebar-icon[no-icon='true'] + .zen-workspace-sidebar-name {
|
|
margin-left: 0;
|
|
}
|
|
|
|
& #zen-workspaces-button {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
display: flex;
|
|
gap: 0.5ch;
|
|
}
|
|
}
|
|
|
|
/* Workspaces Panel UI */
|
|
|
|
#PanelUI-zen-workspaces {
|
|
--panel-width: 320px;
|
|
--panel-padding: 0;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces > panelmultiview {
|
|
align-items: flex-start;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces panelmultiview panelview {
|
|
position: relative;
|
|
padding: 10px;
|
|
width: var(--panel-width);
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-icon-picker toolbarbutton {
|
|
width: 30px;
|
|
height: 30px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 2px solid transparent;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-icon-picker toolbarbutton[selected='true'] {
|
|
border-color: var(--zen-colors-secondary);
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-icon-picker toolbarbutton .toolbarbutton-icon {
|
|
display: none;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-icon-picker toolbarbutton .toolbarbutton-text {
|
|
min-width: unset;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-icon-picker {
|
|
padding: 5px !important;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-icon-picker-wrapper {
|
|
overflow-x: hidden;
|
|
justify-items: center;
|
|
overflow-y: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
align-content: space-between;
|
|
max-height: 250px;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-list[empty='true'] {
|
|
font-weight: 600;
|
|
padding: 10px;
|
|
width: 100%;
|
|
text-align: start;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.PanelUI-zen-workspaces-user-create {
|
|
height: 100%;
|
|
|
|
.PanelUI-zen-workspaces-creation-wraper {
|
|
border-radius: 5px;
|
|
border: 1px solid var(--zen-colors-border);
|
|
|
|
margin-top: 10px;
|
|
|
|
& .PanelUI-zen-workspaces-icons-container {
|
|
padding: 10px 0;
|
|
min-width: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-right: 1px solid var(--zen-colors-border);
|
|
margin-right: 2px;
|
|
}
|
|
|
|
& html|input {
|
|
border: none;
|
|
outline: none !important;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-list toolbarbutton {
|
|
padding: 5px;
|
|
border-radius: var(--zen-button-border-radius);
|
|
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
|
|
&:first-child {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
& .zen-workspace-icon {
|
|
position: relative;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: var(--zen-button-border-radius);
|
|
margin-right: 10px;
|
|
border: 1px solid var(--zen-colors-border);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-weight: 600;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
&[data-usercontextid] .zen-workspace-icon {
|
|
border-color: color-mix(in srgb, var(--identity-tab-color) 40%, transparent 60%);
|
|
}
|
|
|
|
& > vbox:has(> .zen-workspace-name) {
|
|
overflow: hidden;
|
|
}
|
|
|
|
& .zen-workspace-name {
|
|
font-weight: 600;
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
}
|
|
|
|
& .zen-workspace-container {
|
|
font-size: 12px;
|
|
opacity: 0.5;
|
|
font-weight: normal;
|
|
}
|
|
|
|
& .zen-workspace-actions,
|
|
.zen-workspace-actions-reorder-icon {
|
|
display: none;
|
|
margin: 0;
|
|
margin-left: auto !important;
|
|
}
|
|
|
|
&.zen-workspace-button[active='true'] {
|
|
position: relative;
|
|
}
|
|
|
|
&.zen-workspace-button[active='true'] .zen-workspace-icon::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
left: -2px;
|
|
width: 2px;
|
|
height: 16px;
|
|
background-color: var(--toolbarbutton-icon-fill-attention);
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
|
|
.zen-workspace-button.dragging {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.zen-workspace-button.dragover::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: var(--toolbarbutton-icon-fill-attention);
|
|
}
|
|
|
|
.zen-workspace-last-place-drop-target.dragover {
|
|
background-color: var(--toolbarbutton-icon-fill-attention);
|
|
}
|
|
|
|
|
|
#PanelUI-zen-workspaces-reorder-mode[active='true'] {
|
|
color: var(--toolbarbutton-icon-fill-attention) !important;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-list:not([reorder-mode='true']) toolbarbutton {
|
|
&:hover .zen-workspace-actions,
|
|
& .zen-workspace-actions[active='true'] {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-list[reorder-mode='true'] toolbarbutton {
|
|
.zen-workspace-actions-reorder-icon {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-list[reorder-mode='true'] .zen-workspace-last-place-drop-target {
|
|
display: block;
|
|
}
|
|
|
|
.zen-workspace-last-place-drop-target {
|
|
display: none;
|
|
height: 4px;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-view > vbox:nth-child(2) {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-new,
|
|
#PanelUI-zen-workspaces-reorder-mode,
|
|
#PanelUI-zen-gradient-generator-color-custom-add {
|
|
min-height: 1px !important;
|
|
padding: 3px;
|
|
border-radius: 4px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-create-footer,
|
|
#PanelUI-zen-workspaces-edit-footer {
|
|
padding-bottom: 0 !important;
|
|
margin-top: 10px;
|
|
margin-left: 0;
|
|
margin-bottom: 0 !important;
|
|
width: 100%;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-create-footer button[default='true'],
|
|
#PanelUI-zen-workspaces-edit-footer button[default='true'] {
|
|
width: 100%;
|
|
}
|
|
|
|
#PanelUI-zen-workspaces-header {
|
|
margin-right: auto;
|
|
}
|
|
|
|
/* Mark workspaces indicator */
|
|
#zen-current-workspace-indicator {
|
|
padding: 15px calc(4px + var(--tab-inline-padding));
|
|
font-weight: 600;
|
|
align-items: center;
|
|
position: relative;
|
|
|
|
& #zen-current-workspace-indicator-icon {
|
|
font-size: 14px;
|
|
}
|
|
|
|
#zen-current-workspace-indicator-name {
|
|
font-size: 13px;
|
|
opacity: 0.5;
|
|
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
display: block;
|
|
|
|
position: absolute;
|
|
max-width: 100%;
|
|
}
|
|
|
|
& #zen-current-workspace-indicator-icon:not([hidden]) + #zen-current-workspace-indicator-name {
|
|
margin-left: 22px;
|
|
}
|
|
}
|
|
|
|
@media not (-moz-bool-pref: 'zen.workspaces.show-workspace-indicator') {
|
|
#zen-current-workspace-indicator {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
#zen-current-workspace-indicator[hidden='true'] {
|
|
display: none !important;
|
|
}
|