Fixed workspace favourite's selection UI

This commit is contained in:
mr. M
2024-12-05 00:13:53 +01:00
parent 54cb67b316
commit 1a95a6c028
2 changed files with 7 additions and 8 deletions

View File

@@ -296,7 +296,6 @@ menuitem {
position: relative;
width: 100%;
display: flex;
gap: 16px;
}
.workspace-trigger {
@@ -311,32 +310,32 @@ menuitem {
justify-content: space-between;
}
.workspace-list {
#editBMPanel_workspaceList {
flex-direction: column;
width: 100%;
max-height: 200px;
overflow-y: auto;
margin-top: 4px;
border: 1px solid var(--card-outline-color);
border: 1px solid var(--zen-colors-border);
border-radius: 4px;
background-color: var(--zen-colors-tertiary);
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
padding: 4px 0;
}
.workspace-list li {
#editBMPanel_workspaceList li {
list-style: none;
margin: 0;
padding: 0;
}
.workspace-list li > label {
#editBMPanel_workspaceList li > label {
display: flex;
align-items: center;
padding: 4px 12px;
cursor: pointer;
}
.workspace-list input[type="checkbox"] {
#editBMPanel_workspaceList input[type="checkbox"] {
margin-right: 8px;
}

View File

@@ -78,7 +78,7 @@
--zen-button-padding: 0.6rem 1.2rem;
--zen-toolbar-element-bg: light-dark(
rgba(255, 255, 255, 0.5),
rgba(255, 255, 255, 0.4),
rgba(170, 170, 170, 0.2)
);