Skip to content

Commit 7ee024e

Browse files
committed
Fix #232
1 parent 70a4d91 commit 7ee024e

File tree

7 files changed

+15
-0
lines changed

7 files changed

+15
-0
lines changed

gtk/src/adw-gtk3-dark/gtk-3.0/meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ install_subdir('../../adw-gtk3/gtk-3.0/assets', install_dir : gtk3_dark_dir, str
88
# Provide a copy of libadwaita as is.
99
# In the gtk3 directory so we don't have duplicate the assets.
1010
install_data(['../../adw-gtk3/gtk-3.0/libadwaita.css'], install_dir: gtk3_dark_dir)
11+
install_data(['../../adw-gtk3/gtk-3.0/libadwaita-tweaks.css'], install_dir: gtk3_dark_dir)

gtk/src/adw-gtk3-dark/gtk-4.0/gtk-dark.css

+1
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@
3636
@define-color scrollbar_outline_color rgba(0, 0, 0, 0.5);
3737

3838
@import '../gtk-3.0/libadwaita.css';
39+
@import '../gtk-3.0/libadwaita-tweaks.css';

gtk/src/adw-gtk3-dark/gtk-4.0/gtk.css

+1
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@
3636
@define-color scrollbar_outline_color rgba(0, 0, 0, 0.5);
3737

3838
@import '../gtk-3.0/libadwaita.css';
39+
@import '../gtk-3.0/libadwaita-tweaks.css';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
This file will fix some legacy widget styles that aren't styled in libadwaita
3+
*/
4+
5+
/* add a bg color to notebook headers */
6+
notebook > header {
7+
background-color: @headerbar_bg_color;
8+
border-color: mix(currentColor,@window_bg_color,0.85);
9+
}

gtk/src/adw-gtk3/gtk-3.0/meson.build

+1
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ endforeach
5151
# Provide a copy of libadwaita as is.
5252
# In the gtk3 directory so we don't have duplicate the assets.
5353
install_data(['libadwaita.css'], install_dir: gtk3_dir)
54+
install_data(['libadwaita-tweaks.css'], install_dir: gtk3_dir)

gtk/src/adw-gtk3/gtk-4.0/gtk-dark.css

+1
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@
3636
@define-color scrollbar_outline_color rgba(0, 0, 0, 0.5);
3737

3838
@import '../gtk-3.0/libadwaita.css';
39+
@import '../gtk-3.0/libadwaita-tweaks.css';

gtk/src/adw-gtk3/gtk-4.0/gtk.css

+1
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@
3636
@define-color scrollbar_outline_color white;
3737

3838
@import '../gtk-3.0/libadwaita.css';
39+
@import '../gtk-3.0/libadwaita-tweaks.css';

0 commit comments

Comments
 (0)