Skip to content
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

Fix background color of hovered menu item in Chromium 54.x #34

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions gtk-3.0/gtk-widgets.css
Original file line number Diff line number Diff line change
Expand Up @@ -1709,6 +1709,7 @@ menu menuitem:hover,
border-width: 1px;
border-color: @menubar_menuitem_hover_border_color;
color: @theme_selected_fg_color;
background-color: @theme_selected_bg_color;
background-image: -gtk-gradient (linear,
left top,
left bottom,
Expand Down Expand Up @@ -2701,3 +2702,25 @@ printdialog.background > box.view.vertical.dialog-vbox {
dialog.background dialog-vbox.vertical .vertical {
background: transparent;
}

.app-notification,
.app-notification.frame {
padding: 5px;
border-radius: 0 0 4px 4px;
border-style: solid;
border-width: 0 1px 1px 1px;
border-color: darker(@theme_bg_color);
background-color: @theme_bg_color;
background-clip: padding-box;
}

.app-notification:backdrop,
.app-notification.frame:backdrop {
background-image: none;
transition: 200ms ease-out;
}

.app-notification border,
.app-notification.frame border {
border: none;
}