Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Oct 16, 2022
1 parent 1c68b9e commit c8b414f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 20 deletions.
1 change: 0 additions & 1 deletion src/_sass/gtk/_common-4.0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3702,7 +3702,6 @@ window.dialog.message { // Message Dialog styling
padding: 6px 10px 8px 10px;
border-radius: 0;
border: none;
border-top: 1px solid $borders_color;
background-color: $dialog_bg;
color: $dialog_fg;
}
Expand Down
8 changes: 4 additions & 4 deletions src/_sass/gtk/_libadwaita.scss
Original file line number Diff line number Diff line change
Expand Up @@ -569,8 +569,8 @@ tabbar {
tabbox {
> tabboxchild {
border-radius: 0;
margin-bottom: $cont_padding;
margin-top: $cont_padding;
margin-bottom: 0;
margin-top: 0;
}

> separator {
Expand All @@ -594,13 +594,13 @@ tabbar {
tab {
transition: background 150ms ease-in-out;

&:selected, &:checked, &:active, &:active:hover, &:checked:hover {
&:selected, &:checked {
background-color: transparent;
box-shadow: inset 0 -2px $selected_bg_color;
color: $fg_color;
}

&:hover {
&:hover:not(:selected):not(:checked) {
box-shadow: inset 0 -2px mix($selected_bg_color, $header_bg, 50%);
}
}
Expand Down
9 changes: 4 additions & 5 deletions src/gtk/theme-4.0/gtk-Dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4624,7 +4624,6 @@ window.dialog.message .dialog-action-area button {
padding: 6px 10px 8px 10px;
border-radius: 0;
border: none;
border-top: 1px solid rgba(255, 255, 255, 0.12);
background-color: #32343D;
color: #e0e5eb;
}
Expand Down Expand Up @@ -6305,8 +6304,8 @@ tabbar .box {

tabbar tabbox > tabboxchild {
border-radius: 0;
margin-bottom: 6px;
margin-top: 6px;
margin-bottom: 0;
margin-top: 0;
}

tabbar tabbox > separator {
Expand All @@ -6330,13 +6329,13 @@ tabbar tab {
transition: background 150ms ease-in-out;
}

tabbar tab:selected, tabbar tab:checked, tabbar tab:active, tabbar tab:active:hover, tabbar tab:checked:hover {
tabbar tab:selected, tabbar tab:checked {
background-color: transparent;
box-shadow: inset 0 -2px #5294e2;
color: #e6ebef;
}

tabbar tab:hover {
tabbar tab:hover:not(:selected):not(:checked) {
box-shadow: inset 0 -2px #3d5f8b;
}

Expand Down
9 changes: 4 additions & 5 deletions src/gtk/theme-4.0/gtk-Light.css
Original file line number Diff line number Diff line change
Expand Up @@ -4608,7 +4608,6 @@ window.dialog.message .dialog-action-area button {
padding: 6px 10px 8px 10px;
border-radius: 0;
border: none;
border-top: 1px solid rgba(0, 0, 0, 0.12);
background-color: #ffffff;
color: #4a4c59;
}
Expand Down Expand Up @@ -6301,8 +6300,8 @@ tabbar .box {

tabbar tabbox > tabboxchild {
border-radius: 0;
margin-bottom: 6px;
margin-top: 6px;
margin-bottom: 0;
margin-top: 0;
}

tabbar tabbox > separator {
Expand All @@ -6326,13 +6325,13 @@ tabbar tab {
transition: background 150ms ease-in-out;
}

tabbar tab:selected, tabbar tab:checked, tabbar tab:active, tabbar tab:active:hover, tabbar tab:checked:hover {
tabbar tab:selected, tabbar tab:checked {
background-color: transparent;
box-shadow: inset 0 -2px #5294e2;
color: #464853;
}

tabbar tab:hover {
tabbar tab:hover:not(:selected):not(:checked) {
box-shadow: inset 0 -2px #a9caf1;
}

Expand Down
9 changes: 4 additions & 5 deletions src/gtk/theme-4.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4654,7 +4654,6 @@ window.dialog.message .dialog-action-area button {
padding: 6px 10px 8px 10px;
border-radius: 0;
border: none;
border-top: 1px solid rgba(0, 0, 0, 0.12);
background-color: #282A33;
color: #e0e5eb;
}
Expand Down Expand Up @@ -6347,8 +6346,8 @@ tabbar .box {

tabbar tabbox > tabboxchild {
border-radius: 0;
margin-bottom: 6px;
margin-top: 6px;
margin-bottom: 0;
margin-top: 0;
}

tabbar tabbox > separator {
Expand All @@ -6372,13 +6371,13 @@ tabbar tab {
transition: background 150ms ease-in-out;
}

tabbar tab:selected, tabbar tab:checked, tabbar tab:active, tabbar tab:active:hover, tabbar tab:checked:hover {
tabbar tab:selected, tabbar tab:checked {
background-color: transparent;
box-shadow: inset 0 -2px #5294e2;
color: #464853;
}

tabbar tab:hover {
tabbar tab:hover:not(:selected):not(:checked) {
box-shadow: inset 0 -2px #3d5f8b;
}

Expand Down

0 comments on commit c8b414f

Please sign in to comment.