Skip to content

Commit

Permalink
New upstream snapshot for GTK3 (mamolinux#50)
Browse files Browse the repository at this point in the history
Co-authored-by: hsbasu <[email protected]>
  • Loading branch information
github-actions[bot] and hsbasu authored Jun 9, 2023
1 parent d637904 commit b01d586
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
5 changes: 2 additions & 3 deletions gtk/upstream/gtk-3.0/Mint-Y/sass/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ $dark_sidebar_border: $borders_color;

$filechooser_bg: $header_bg;

$tooltip_bg_color: #fbeaa0;
$tooltip_fg_color: #4a4a4a;
$tooltip_border_color: #d0d0d0;
$tooltip_bg_color: transparentize(mix($selected_bg_color, black, 95%), 0.05);
$tooltip_fg_color: $selected_fg_color;

$osd_fg_color: #dbdbdb;
$osd_bg_color: if($variant == 'light', #404040, #353535);
Expand Down
25 changes: 11 additions & 14 deletions gtk/upstream/gtk-3.0/Mint-Y/sass/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ actionbar {
headerbar,
%titlebar {
min-height: 46px;
padding: 0 7px;
padding: 0 6px;

border-width: 0 0 1px;
border-style: solid;
Expand Down Expand Up @@ -1026,7 +1026,7 @@ headerbar,

&.default-decoration {
min-height: 28px;
padding: 0 7px;
padding: 2px 6px;
border-bottom-width: 0;

.maximized & { background-color: opacify($header_bg, 1); }
Expand Down Expand Up @@ -2898,20 +2898,19 @@ infobar {
//
// Tooltips
//
tooltip,
.tooltip {
tooltip {
&.background {
// background-color needs to be set this way otherwise it gets drawn twice
// see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details.
background-color: $tooltip_bg_color;
background-clip: padding-box;

label { padding: 4px; }
label { padding: 6px 10px; }
}

color: $tooltip_fg_color;
border-radius: 2px;
border: 1px solid $tooltip_border_color;
border-radius: 5px;
border: none;

decoration { background-color: transparent; }

Expand Down Expand Up @@ -3149,8 +3148,8 @@ decoration {
0 0 0 1px transparentize($_wm_border, 0.1);
}
tooltip.csd & {
border-radius: 2px;
box-shadow: 0 1px 3px 1px $_wm_border;
border-radius: 5px;
box-shadow: none;
}

messagedialog.csd & { border-radius: 8px; }
Expand All @@ -3174,19 +3173,17 @@ headerbar,
padding-bottom: 0px;
padding-right: 0px;
padding-left: 0px;
min-width: 22px;
min-height: 22px;
margin: 0;
}

button.titlebutton {
$_wm_backdrop_icon_color: if($variant == 'light', darken($wm_icon_unfocused_bg, 5%), lighten($wm_icon_unfocused_bg, 5%));

min-width: 18px;
min-height: 18px;
min-width: 20px;
min-height: 20px;
@extend .image-button;

padding: 10px 3px;
padding: 10px 1px;
margin: 0;
transition: none;

Expand Down

0 comments on commit b01d586

Please sign in to comment.