Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Oct 26, 2023
1 parent 1ed932a commit 71dacd7
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 81 deletions.
19 changes: 7 additions & 12 deletions src/_sass/gtk/apps/_budgie.scss
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,8 @@ window.budgie-popover:not(.csd) {
.right & { border-top-width: 1px; }
}

.workspace-item,
.workspace-add-button {
.workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
border: 0 solid rgba(white, 0.12);

.top &,
Expand All @@ -455,20 +455,15 @@ window.budgie-popover:not(.csd) {

.left &,
.right & { border-bottom-width: 1px; }
}

.workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);

&.current-workspace { background-color: rgba(white, 0.12); }
&.current-workspace { background-color: rgba($panel_fg, 0.08); }
}

.workspace-add-button {
background-color: transparent;

&:hover { box-shadow: none; }
&:active { background-image: none; }
&:active image { margin: 1px 0 -1px; }
min-height: 24px;
min-width: 24px;
padding: 0;
border-radius: $bt_radius;
}

.workspace-icon-button {
Expand Down
33 changes: 10 additions & 23 deletions src/gtk/theme-3.0/gtk-Dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -8261,45 +8261,32 @@ window.budgie-popover:not(.csd) > frame.container > border {
border-top-width: 1px;
}

.workspace-switcher .workspace-item,
.workspace-switcher .workspace-add-button {
.workspace-switcher .workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
border: 0 solid rgba(255, 255, 255, 0.12);
}

.top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) {
.top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr) {
border-right-width: 1px;
}

.top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) {
.top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl) {
border-left-width: 1px;
}

.left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button {
.left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item {
border-bottom-width: 1px;
}

.workspace-switcher .workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.workspace-switcher .workspace-item.current-workspace {
background-color: rgba(255, 255, 255, 0.12);
background-color: rgba(211, 218, 227, 0.08);
}

.workspace-switcher .workspace-add-button {
background-color: transparent;
}

.workspace-switcher .workspace-add-button:hover {
box-shadow: none;
}

.workspace-switcher .workspace-add-button:active {
background-image: none;
}

.workspace-switcher .workspace-add-button:active image {
margin: 1px 0 -1px;
min-height: 24px;
min-width: 24px;
padding: 0;
border-radius: 2px;
}

.budgie-panel .workspace-switcher .workspace-icon-button {
Expand Down
33 changes: 10 additions & 23 deletions src/gtk/theme-3.0/gtk-Light.css
Original file line number Diff line number Diff line change
Expand Up @@ -8239,45 +8239,32 @@ window.budgie-popover:not(.csd) > frame.container > border {
border-top-width: 1px;
}

.workspace-switcher .workspace-item,
.workspace-switcher .workspace-add-button {
.workspace-switcher .workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
border: 0 solid rgba(255, 255, 255, 0.12);
}

.top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) {
.top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr) {
border-right-width: 1px;
}

.top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) {
.top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl) {
border-left-width: 1px;
}

.left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button {
.left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item {
border-bottom-width: 1px;
}

.workspace-switcher .workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.workspace-switcher .workspace-item.current-workspace {
background-color: rgba(255, 255, 255, 0.12);
background-color: rgba(211, 218, 227, 0.08);
}

.workspace-switcher .workspace-add-button {
background-color: transparent;
}

.workspace-switcher .workspace-add-button:hover {
box-shadow: none;
}

.workspace-switcher .workspace-add-button:active {
background-image: none;
}

.workspace-switcher .workspace-add-button:active image {
margin: 1px 0 -1px;
min-height: 24px;
min-width: 24px;
padding: 0;
border-radius: 2px;
}

.budgie-panel .workspace-switcher .workspace-icon-button {
Expand Down
33 changes: 10 additions & 23 deletions src/gtk/theme-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -8255,45 +8255,32 @@ window.budgie-popover:not(.csd) > frame.container > border {
border-top-width: 1px;
}

.workspace-switcher .workspace-item,
.workspace-switcher .workspace-add-button {
.workspace-switcher .workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
border: 0 solid rgba(255, 255, 255, 0.12);
}

.top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr), .top .workspace-switcher .workspace-add-button:dir(ltr), .bottom .workspace-switcher .workspace-add-button:dir(ltr) {
.top .workspace-switcher .workspace-item:dir(ltr), .bottom .workspace-switcher .workspace-item:dir(ltr) {
border-right-width: 1px;
}

.top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl), .top .workspace-switcher .workspace-add-button:dir(rtl), .bottom .workspace-switcher .workspace-add-button:dir(rtl) {
.top .workspace-switcher .workspace-item:dir(rtl), .bottom .workspace-switcher .workspace-item:dir(rtl) {
border-left-width: 1px;
}

.left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item, .left .workspace-switcher .workspace-add-button, .right .workspace-switcher .workspace-add-button {
.left .workspace-switcher .workspace-item, .right .workspace-switcher .workspace-item {
border-bottom-width: 1px;
}

.workspace-switcher .workspace-item {
transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.workspace-switcher .workspace-item.current-workspace {
background-color: rgba(255, 255, 255, 0.12);
background-color: rgba(211, 218, 227, 0.08);
}

.workspace-switcher .workspace-add-button {
background-color: transparent;
}

.workspace-switcher .workspace-add-button:hover {
box-shadow: none;
}

.workspace-switcher .workspace-add-button:active {
background-image: none;
}

.workspace-switcher .workspace-add-button:active image {
margin: 1px 0 -1px;
min-height: 24px;
min-width: 24px;
padding: 0;
border-radius: 2px;
}

.budgie-panel .workspace-switcher .workspace-icon-button {
Expand Down

0 comments on commit 71dacd7

Please sign in to comment.