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 transmission look #5

Open
wants to merge 1 commit into
base: oi/hipster
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
19 changes: 19 additions & 0 deletions gtk-engine/gtk-3.0/gtk-widgets.css
Original file line number Diff line number Diff line change
Expand Up @@ -1558,6 +1558,11 @@ progressbar.horizontal progress {
min-height: 21px;
}

treeview.view.progressbar,
treeview.view.progressbar:hover,
row progressbar progress,
row:hover progressbar progress,
row:selected progressbar progress,
progressbar progress {
border: 1px solid #89310d;
border-radius: 0;
Expand All @@ -1574,6 +1579,10 @@ progressbar progress {
border-left-width: 0;
}

treeview.view progressbar.vertical progress,
row progressbar.vertical progress,
row:hover progressbar.vertical progress,
row:selected progressbar.vertical progress,
progressbar.vertical progress {
border: 1px solid #89310d;
background-image: linear-gradient(to right,
Expand All @@ -1587,6 +1596,11 @@ progressbar.vertical progress {
border-bottom-width: 0;
}

treeview.view.trough,
treeview.view.trough:hover,
treeview.view.trough:selected,
row:selected progressbar trough,
row:selected:focus progressbar trough,
progressbar trough {
border: 1px solid shade(@theme_bg_color, 0.8);
border-radius: 0;
Expand All @@ -1601,6 +1615,11 @@ progressbar trough {
inset 0 1px white;
}

treeview.view progressbar.vertical trough.
treeview.view progressbar.vertical trough:hover.
treeview.view progressbar.vertical trough:selected.
row:selected progressbar.vertical trough,
row:selected:focus progressbar.vertical trough,
progressbar.vertical trough {
background-image: linear-gradient(to right,
#eff0f2,
Expand Down