Fix budgie workspace switcher

This commit is contained in:
EliverLara
2019-06-05 11:11:45 -05:00
parent 693fa573f9
commit 0cd277545a
3 changed files with 165 additions and 0 deletions

View File

@@ -949,4 +949,61 @@ window.background.budgie-settings-window.csd {
buttonbox.inline-toolbar { border-style: none none solid; }
}
}
.workspace-switcher {
.workspace-layout {
border: 0 solid $panel_bg;
.top &,
.bottom & {
&:dir(ltr) { border-left-width: 1px; }
&:dir(rtl) { border-right-width: 1px; }
}
.left &,
.right & { border-top-width: 1px; }
}
.workspace-item,
.workspace-add-button {
border: 0 solid lighten($panel_bg, 10%);
.top &,
.bottom & {
&:dir(ltr) { border-right-width: 1px; }
&:dir(rtl) { border-left-width: 1px; }
}
.left &,
.right & { border-bottom-width: 1px; }
}
.workspace-item {
&.current-workspace { background-color: darken($panel_bg, 5%); }
}
.workspace-add-button {
border: none;
background: transparent;
box-shadow: none;
&:hover { box-shadow: none; }
&:active { background-image: none; }
&:active image { margin: 1px 0 -1px; }
}
.workspace-icon-button {
.budgie-panel & { // to overwrite the .budgie-panel button style below
min-height: 24px;
min-width: 24px;
padding: 0;
border-radius: 2px;
}
}
}