-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dark Shell Notifications have too bright onClick color #4082
Comments
I will try to look on this |
One problem tho as I always say I'm a complete newbie. this is under gnome-shell/ right? Modifying border-radius and the ligthen function .notification-banner {
min-height: $notification_banner_height;
width: $notification_banner_width;
box-shadow: 0 2px 4px 2px $shadow_color;
margin: $base_margin;
border-radius: $modal_radius;
background-color: $bg_color; // Yaru change: use bg_color for better contrast with buttons
@if $contrast == 'high' {
@include draw_hc_inset();
}
&:hover {
// Yaru change: ↑↑↑
background-color: if($variant =='light', darken($bg_color, 2%), lighten($bg_color, 2%));
}
&:active {
// Yaru change: ↑↑↑
background-color: if($variant =='light', darken($bg_color, 4%), lighten($bg_color, 4%));
}
// Yaru: make notifications more visible on different headerbars:
&,
&:hover,
&:focus,
&:active {
box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
border: 1px solid $borders_color;
}
}
build from modified source:the ninja installation work I looked at the changes in /usr/share/gnome-shell and confirmed that the 60px border radius I tested is in there but the popup notification is still in the default radius manually edited gnome-shell.css:I also tried changing gnome-shell.css in /usr/share/themes/Yaru/Yaru-dark ... log out login ... no luck. I'm not familiar into css theming in Yaru at all so maybe there are |
@Feichtmeier Did I miss something? I followed the build and install steps
even tried to uninstall Did I miss something? |
I'm a little out of the loop but the last time I edited the notifications all I needed to change was scss code |
thanks! |
I have forgotten how the css property is named, but when one clicks the notifications in the dark shell they are super bright
Plus I think the border radius is too small
CC @3v1n0
The text was updated successfully, but these errors were encountered: