Refactor build workflow and add branch validation

This commit is contained in:
mr. M
2024-10-11 18:30:32 +02:00
parent a01a6d0f43
commit 69020cc516
5 changed files with 84 additions and 16 deletions

View File

@@ -6,10 +6,9 @@
position: relative;
&:not([as-button='true']) {
--zen-workspaces-strip-background-color: color-mix(in srgb, var(--zen-colors-border) 20%, transparent 80%);
--toolbarbutton-hover-background: var(--toolbarbutton-hover-background) !important;
--toolbarbutton-hover-background: transparent !important;
border-radius: var(--zen-button-border-radius) !important;
background: var(--zen-workspaces-strip-background-color) !important;
background: transparent;
padding: 5px;
appearance: unset !important;
height: fit-content;
@@ -28,17 +27,22 @@
opacity: 0.6;
}
&[active='true']::after {
content: '';
position: absolute;
width: 4px;
border-radius: 99px;
height: 4px;
background: var(--zen-primary-color);
bottom: -2px;
left: 50%;
transform: translateX(-50%);
animation: zen-workspaces-button-active 0.1s ease-in-out;
&:not([active='true']) {
&::after {
content: '';
position: absolute;
width: 4px;
border-radius: 99px;
height: 4px;
background: color-mix(in srgb, var(--zen-primary-color) 10%, light-dark(#000, #fff) 90%);
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
& .zen-workspace-icon {
display: none;
}
}
}
}