Merge lp:~3v1n0/ubuntu-themes/list-theming into lp:ubuntu-themes

Proposed by Marco Trevisan (Treviño)
Status: Merged
Approved by: Andrea Azzarone
Approved revision: 609
Merged at revision: 602
Proposed branch: lp:~3v1n0/ubuntu-themes/list-theming
Merge into: lp:ubuntu-themes
Diff against target: 541 lines (+249/-23)
2 files modified
Ambiance/gtk-3.20/gtk-widgets.css (+123/-12)
Radiance/gtk-3.20/gtk-widgets.css (+126/-11)
To merge this branch: bzr merge lp:~3v1n0/ubuntu-themes/list-theming
Reviewer Review Type Date Requested Status
Andrea Azzarone (community) Approve
Daniel van Vugt Abstain
Ubuntu Artwork Packagers Pending
Review via email: mp+341003@code.launchpad.net

Commit message

list, row: set padding, use white bg and hover effect on activatable

Also in sidebar show frames around sidebar but avoid double ones

Description of the change

To post a comment you must log in.
Revision history for this message
Daniel van Vugt (vanvugt) wrote :

This seems to break the list in Settings a bit:

(1) Alternating background (every second item) is the same colour as the selection.

(2) Text colour is white on light grey (unreadable).

And pre-existing bugs should be fixed but aren't:

(3) Some list items (like the monitor name in Settings > Color) never highlight. Works in Adwaita.

(4) List in bubble menus (Settings > Displays > Resolution etc) are a mixture of grey and white backgrounds.

(5) The background area around the Settings > Color > 'Add profile' and 'Calibrate' buttons is still missing in Ambiance (but not in Adwaita).

---
So this feels like more of a step backwards. Maybe try fixing each issue in separate smaller branches?

review: Needs Fixing
Revision history for this message
Daniel van Vugt (vanvugt) wrote :

(3) I mean the hover effect is missing in Settings > Color

lp:~3v1n0/ubuntu-themes/list-theming updated
604. By Marco Trevisan (Treviño)

Ambiance: use darker color in hover for zebra-stripped lists

605. By Marco Trevisan (Treviño)

Radiance: add zebra-stripping (as in Ambiance)

606. By Marco Trevisan (Treviño)

Ambiance, Radiance: just apply opacity to dimmed/disabled text child of selected items

607. By Marco Trevisan (Treviño)

Ambiance, Radiance: apply .inline-toolbar to all widget kinds

608. By Marco Trevisan (Treviño)

Ambiance, Radiance: use flat background for .inline-toolbar's in stack's

Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

As also said on IRC, g-c-c is the worse example where to test such changes, as it embeds a theme change which would override these changes.

So these fixes should be landed together with the debdiff included here:
 https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1757471

> (1) Alternating background (every second item) is the same colour as the
> selection.

Thank for pointing out, I've fixed this case. Now we use a darker hover color when using the zebra-lists.

> (2) Text colour is white on light grey (unreadable).

Fixed.

> And pre-existing bugs should be fixed but aren't:
>
> (3) Some list items (like the monitor name in Settings > Color) never
> highlight. Works in Adwaita.
> (3) I mean the hover effect is missing in Settings > Color

This is fixed here, but the theme override won't show it.

> (4) List in bubble menus (Settings > Displays > Resolution etc) are a mixture
> of grey and white backgrounds.

Works here. Again, after removing the g-c-c patch.

> (5) The background area around the Settings > Color > 'Add profile' and
> 'Calibrate' buttons is still missing in Ambiance (but not in Adwaita).

Thanks, this is a different part of the theme which wasn't covered at all.
I've fixed this too.

lp:~3v1n0/ubuntu-themes/list-theming updated
609. By Marco Trevisan (Treviño)

Ambiance, Radiance: use darker separator color in zebra-stripped lists

Revision history for this message
Daniel van Vugt (vanvugt) :
review: Abstain
Revision history for this message
Andrea Azzarone (azzar1) wrote :

gnome-control-center (after removing the patch) works fine here.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Ambiance/gtk-3.20/gtk-widgets.css'
--- Ambiance/gtk-3.20/gtk-widgets.css 2018-01-22 12:01:07 +0000
+++ Ambiance/gtk-3.20/gtk-widgets.css 2018-03-22 02:10:57 +0000
@@ -551,6 +551,44 @@
551 border-top-color: shade (@backdrop_selected_bg_color, 0.9);551 border-top-color: shade (@backdrop_selected_bg_color, 0.9);
552}552}
553553
554stacksidebar row {
555 padding: 10px 4px;
556}
557
558stacksidebar row > label {
559 padding-left: 6px;
560 padding-right: 6px;
561}
562
563stacksidebar row.needs-attention > label {
564 background-size: 6px 6px, 0 0;
565}
566
567list row {
568 border-image: none;
569}
570
571list row:selected,
572list row:selected:backdrop {
573 background-image: none;
574 border: none;
575}
576
577list row.activatable:hover,
578list row.has-open-popup {
579 background-color: shade (@base_color, 0.965);
580}
581
582list row.activatable:hover:selected,
583list row.has-open-popup:selected {
584 background-color: shade (alpha (@selected_bg_color, 0.9), 0.965);
585}
586
587list row.activatable:selected:backdrop:hover,
588list row.has-open-popup:selected:backdrop {
589 background-color: shade (alpha (@backdrop_selected_bg_color, 0.9), 0.965);
590}
591
554/*******************592/*******************
555 * check and radio *593 * check and radio *
556 *******************/594 *******************/
@@ -588,6 +626,7 @@
588 background: none;626 background: none;
589}627}
590628
629list separator,
591menu radio * {630menu radio * {
592 box-shadow: none;631 box-shadow: none;
593}632}
@@ -796,7 +835,8 @@
796/*********835/*********
797 * frame *836 * frame *
798 *********/837 *********/
799.frame {838.frame,
839frame > border {
800 border-radius: 3px;840 border-radius: 3px;
801 border-width: 1px;841 border-width: 1px;
802 border-style: solid;842 border-style: solid;
@@ -820,7 +860,8 @@
820 background: none;860 background: none;
821}861}
822862
823.frame.flat, frame border.flat {863frame > border.flat,
864.frame.flat {
824 border: none;865 border: none;
825}866}
826867
@@ -837,7 +878,8 @@
837 * iconview *878 * iconview *
838 ************/879 ************/
839880
840.view {881.view,
882list {
841 background-color: @base_color;883 background-color: @base_color;
842 color: @text_color;884 color: @text_color;
843}885}
@@ -1030,7 +1072,7 @@
1030.menubar {1072.menubar {
1031 -GtkWidget-window-dragging: true;1073 -GtkWidget-window-dragging: true;
10321074
1033 background-color: @dark_bg_color;1075 background-color: shade (@dark_bg_color, 1.10);
1034 background-image: none;1076 background-image: none;
1035 border-width: 0;1077 border-width: 0;
10361078
@@ -1892,8 +1934,14 @@
1892 border-right-color: alpha (shade (@bg_color, 1.26), 0.6);1934 border-right-color: alpha (shade (@bg_color, 1.26), 0.6);
1893}1935}
18941936
1937list separator {
1938 border: 0;
1939 background: shade (@bg_color, 0.92);
1940}
1941
1895treeview.view separator,1942treeview.view separator,
1896treeview separator,1943treeview separator,
1944list separator,
1897separator,1945separator,
1898separator:hover {1946separator:hover {
1899 color: shade (@bg_color, 0.92);1947 color: shade (@bg_color, 0.92);
@@ -1951,7 +1999,8 @@
19511999
1952filechooser box.search-bar,2000filechooser box.search-bar,
1953#pathbarbox,2001#pathbarbox,
1954placessidebar.sidebar {2002placessidebar.sidebar,
2003placessidebar.sidebar list {
1955 background-color: shade (@bg_color, 0.95);2004 background-color: shade (@bg_color, 0.95);
19562005
1957 color: @fg_color;2006 color: @fg_color;
@@ -1960,21 +2009,32 @@
19602009
1961filechooser:backdrop box.search-bar,2010filechooser:backdrop box.search-bar,
1962#pathbarbox:backdrop,2011#pathbarbox:backdrop,
1963placessidebar.sidebar:backdrop {2012.sidebar list:backdrop,
2013placessidebar.sidebar:backdrop,
2014placessidebar.sidebar list:backdrop {
1964 color: mix (@fg_color, shade (@bg_color, 0.95), 0.2);2015 color: mix (@fg_color, shade (@bg_color, 0.95), 0.2);
1965 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 1.02);2016 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 1.02);
1966}2017}
19672018
1968placessidebar.sidebar row {2019placessidebar.sidebar row,
2020placessidebar.sidebar list row,
2021.sidebar list {
1969 min-height: 30px;2022 min-height: 30px;
1970}2023}
19712024
1972placessidebar.sidebar row:selected {2025placessidebar.sidebar list row.activatable:hover:not(:selected),
2026placessidebar.sidebar list row.has-open-popup {
2027 background-color: shade (shade (@bg_color, 0.95), 0.965);
2028}
2029
2030placessidebar.sidebar row:selected,
2031placessidebar.sidebar list row:selected {
1973 color: @selected_fg_color;2032 color: @selected_fg_color;
1974 text-shadow: 0 1px shade (@selected_bg_color, 0.7);2033 text-shadow: 0 1px shade (@selected_bg_color, 0.7);
1975}2034}
19762035
1977placessidebar.sidebar row:selected:backdrop {2036placessidebar.sidebar row:selected:backdrop,
2037placessidebar.sidebar list row:selected:backdrop {
1978 background-image: -gtk-gradient (linear, left top, left bottom,2038 background-image: -gtk-gradient (linear, left top, left bottom,
1979 from (shade (shade (@bg_color, 0.95), 0.94)),2039 from (shade (shade (@bg_color, 0.95), 0.94)),
1980 to (shade (shade (@bg_color, 0.95), 0.86)));2040 to (shade (shade (@bg_color, 0.95), 0.86)));
@@ -1984,11 +2044,39 @@
1984 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 0.96);2044 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 0.96);
1985}2045}
19862046
1987placessidebar.sidebar .sidebar-icon {2047placessidebar.sidebar .sidebar-icon,
2048placessidebar.sidebar list .sidebar-icon {
1988 padding-left: 10px;2049 padding-left: 10px;
1989 padding-right: 10px;2050 padding-right: 10px;
1990}2051}
19912052
2053.sidebar,
2054paned .sidebar.left,
2055paned .sidebar.right,
2056paned .sidebar.left:dir(rtl),
2057paned .sidebar:dir(rtl),
2058paned .sidebar:dir(ltr),
2059paned .sidebar {
2060 border-style: none;
2061 background-color: transparent;
2062}
2063
2064stacksidebar.sidebar:dir(ltr) list,
2065stacksidebar.sidebar.left list,
2066stacksidebar.sidebar.left:dir(rtl) list,
2067.sidebar:dir(ltr),
2068.sidebar.left,
2069.sidebar.left:dir(rtl) {
2070 border-right: 1px solid shade (@bg_color, 0.82);
2071 border-left-style: none;
2072}
2073
2074stacksidebar.sidebar:dir(rtl) list .sidebar:dir(rtl),
2075stacksidebar.sidebar.right list .sidebar:dir(rtl),
2076.sidebar.right {
2077 border-left: 1px solid shade (@bg_color, 0.82);
2078 border-right-style: none;
2079}
19922080
1993/**************2081/**************
1994 * spinbutton *2082 * spinbutton *
@@ -2885,7 +2973,7 @@
2885}2973}
28862974
2887/* inline-toolbar */2975/* inline-toolbar */
2888.inline-toolbar.toolbar {2976.inline-toolbar {
2889 -GtkToolbar-button-relief: normal;2977 -GtkToolbar-button-relief: normal;
28902978
2891 border-right-color: shade (@bg_color, 0.86);2979 border-right-color: shade (@bg_color, 0.86);
@@ -2904,6 +2992,11 @@
2904 padding: 3px 4px 4px 4px;2992 padding: 3px 4px 4px 4px;
2905}2993}
29062994
2995stack .inline-toolbar {
2996 background-color: shade (#f2f1ef, 0.97);
2997 background-image: none;
2998}
2999
2907.inline-toolbar.toolbar button {3000.inline-toolbar.toolbar button {
2908 padding: 4px;3001 padding: 4px;
29093002
@@ -3037,11 +3130,20 @@
3037 background-image: none;3130 background-image: none;
3038}3131}
30393132
3040.view row:nth-child(odd) {3133.view row:nth-child(odd):not(:selected) {
3041 /* zebra stripping, see LP#945430 */3134 /* zebra stripping, see LP#945430 */
3042 background-color: shade (@base_color, 0.965);3135 background-color: shade (@base_color, 0.965);
3043}3136}
30443137
3138.view row.activatable:hover,
3139.view row.has-open-popup {
3140 background-color: shade (@base_color, 0.92);
3141}
3142
3143.view row ~ separator {
3144 background-color: shade (@bg_color, 0.83);
3145}
3146
3045treeview.view {3147treeview.view {
3046 border-width: 1px;3148 border-width: 1px;
3047 border-color: @selected_bg_color;3149 border-color: @selected_bg_color;
@@ -3308,6 +3410,13 @@
3308/*****************************************************************************3410/*****************************************************************************
3309 * states [please keep this section at the end of the file (CSS precedence)] *3411 * states [please keep this section at the end of the file (CSS precedence)] *
3310 *****************************************************************************/3412 *****************************************************************************/
3413*:selected *:disabled:not(:backdrop),
3414*:selected .dim-label:not(:backdrop) {
3415 color: inherit;
3416 opacity: 0.65;
3417 text-shadow: none;
3418}
3419
3311.dim-label,3420.dim-label,
3312*:disabled {3421*:disabled {
3313 color: shade (@bg_color, 0.6);3422 color: shade (@bg_color, 0.6);
@@ -3320,6 +3429,7 @@
3320label selection:hover,3429label selection:hover,
3321entry selection,3430entry selection,
3322.view text selection,3431.view text selection,
3432list row:selected,
3323*:selected,3433*:selected,
3324*:selected:focus {3434*:selected:focus {
3325 background-color: alpha (@selected_bg_color, 0.9);3435 background-color: alpha (@selected_bg_color, 0.9);
@@ -3329,6 +3439,7 @@
33293439
3330entry selection:backdrop,3440entry selection:backdrop,
3331.view text selection:backdrop,3441.view text selection:backdrop,
3442list row:selected:backdrop,
3332*:selected:backdrop,3443*:selected:backdrop,
3333*:selected:focus:backdrop {3444*:selected:focus:backdrop {
3334 background-color: alpha (@backdrop_selected_bg_color, 0.9);3445 background-color: alpha (@backdrop_selected_bg_color, 0.9);
33353446
=== modified file 'Radiance/gtk-3.20/gtk-widgets.css'
--- Radiance/gtk-3.20/gtk-widgets.css 2018-01-22 12:01:07 +0000
+++ Radiance/gtk-3.20/gtk-widgets.css 2018-03-22 02:10:57 +0000
@@ -553,6 +553,44 @@
553 color: @backdrop_selected_fg_color;553 color: @backdrop_selected_fg_color;
554}554}
555555
556stacksidebar row {
557 padding: 10px 4px;
558}
559
560stacksidebar row > label {
561 padding-left: 6px;
562 padding-right: 6px;
563}
564
565stacksidebar row.needs-attention > label {
566 background-size: 6px 6px, 0 0;
567}
568
569list row {
570 border-image: none;
571}
572
573list row:selected,
574list row:selected:backdrop {
575 background-image: none;
576 border: none;
577}
578
579list row.activatable:hover,
580list row.has-open-popup {
581 background-color: shade (@base_color, 0.965);
582}
583
584list row.activatable:hover:selected,
585list row.has-open-popup:selected {
586 background-color: shade (alpha (@selected_bg_color, 0.9), 0.965);
587}
588
589list row.activatable:selected:backdrop:hover,
590list row.has-open-popup:selected:backdrop {
591 background-color: shade (alpha (@backdrop_selected_bg_color, 0.9), 0.965);
592}
593
556/*******************594/*******************
557 * check and radio *595 * check and radio *
558 *******************/596 *******************/
@@ -590,6 +628,7 @@
590 background: none;628 background: none;
591}629}
592630
631list separator,
593menu radio * {632menu radio * {
594 box-shadow: none;633 box-shadow: none;
595}634}
@@ -807,7 +846,8 @@
807/*********846/*********
808 * frame *847 * frame *
809 *********/848 *********/
810.frame {849.frame,
850frame > border {
811 border-radius: 3px;851 border-radius: 3px;
812 border-width: 1px;852 border-width: 1px;
813 border-style: solid;853 border-style: solid;
@@ -831,7 +871,8 @@
831 background: none;871 background: none;
832}872}
833873
834.frame.flat, frame border.flat {874frame > border.flat,
875.frame.flat {
835 border: none;876 border: none;
836}877}
837878
@@ -848,7 +889,8 @@
848 * iconview *889 * iconview *
849 ************/890 ************/
850891
851.view {892.view,
893list {
852 background-color: @base_color;894 background-color: @base_color;
853 color: @text_color;895 color: @text_color;
854}896}
@@ -1041,7 +1083,7 @@
1041.menubar {1083.menubar {
1042 -GtkWidget-window-dragging: true;1084 -GtkWidget-window-dragging: true;
10431085
1044 background-color: @dark_bg_color;1086 background-color: shade (@dark_bg_color, 1.10);
1045 background-image: none;1087 background-image: none;
1046 border-width: 0;1088 border-width: 0;
10471089
@@ -1893,8 +1935,14 @@
1893 border-right-color: alpha (shade (@bg_color, 1.26), 0.6);1935 border-right-color: alpha (shade (@bg_color, 1.26), 0.6);
1894}1936}
18951937
1938list separator {
1939 border: 0;
1940 background: shade (@bg_color, 0.92);
1941}
1942
1896treeview.view separator,1943treeview.view separator,
1897treeview separator,1944treeview separator,
1945list separator,
1898separator,1946separator,
1899separator:hover {1947separator:hover {
1900 color: shade (@bg_color, 0.92);1948 color: shade (@bg_color, 0.92);
@@ -1952,7 +2000,8 @@
19522000
1953filechooser box.search-bar,2001filechooser box.search-bar,
1954#pathbarbox,2002#pathbarbox,
1955placessidebar.sidebar {2003placessidebar.sidebar,
2004placessidebar.sidebar list {
1956 background-color: shade (@bg_color, 0.95);2005 background-color: shade (@bg_color, 0.95);
19572006
1958 color: @fg_color;2007 color: @fg_color;
@@ -1961,21 +2010,32 @@
19612010
1962filechooser:backdrop box.search-bar,2011filechooser:backdrop box.search-bar,
1963#pathbarbox:backdrop,2012#pathbarbox:backdrop,
1964placessidebar.sidebar:backdrop {2013.sidebar list:backdrop,
2014placessidebar.sidebar:backdrop,
2015placessidebar.sidebar list:backdrop {
1965 color: mix (@fg_color, shade (@bg_color, 0.95), 0.2);2016 color: mix (@fg_color, shade (@bg_color, 0.95), 0.2);
1966 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 1.02);2017 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 1.02);
1967}2018}
19682019
1969placessidebar.sidebar row {2020placessidebar.sidebar row,
2021placessidebar.sidebar list row,
2022.sidebar list {
1970 min-height: 30px;2023 min-height: 30px;
1971}2024}
19722025
1973placessidebar.sidebar row:selected {2026placessidebar.sidebar list row.activatable:hover:not(:selected),
2027placessidebar.sidebar list row.has-open-popup {
2028 background-color: shade (shade (@bg_color, 0.95), 0.965);
2029}
2030
2031placessidebar.sidebar row:selected,
2032placessidebar.sidebar list row:selected {
1974 color: @selected_fg_color;2033 color: @selected_fg_color;
1975 text-shadow: 0 1px shade (@selected_bg_color, 0.7);2034 text-shadow: 0 1px shade (@selected_bg_color, 0.7);
1976}2035}
19772036
1978placessidebar.sidebar row:selected:backdrop {2037placessidebar.sidebar row:selected:backdrop,
2038placessidebar.sidebar list row:selected:backdrop {
1979 background-image: -gtk-gradient (linear, left top, left bottom,2039 background-image: -gtk-gradient (linear, left top, left bottom,
1980 from (shade (shade (@bg_color, 0.95), 0.94)),2040 from (shade (shade (@bg_color, 0.95), 0.94)),
1981 to (shade (shade (@bg_color, 0.95), 0.86)));2041 to (shade (shade (@bg_color, 0.95), 0.86)));
@@ -1985,11 +2045,39 @@
1985 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 0.96);2045 text-shadow: 0 1px shade (shade (@bg_color, 0.95), 0.96);
1986}2046}
19872047
1988placessidebar.sidebar .sidebar-icon {2048placessidebar.sidebar .sidebar-icon,
2049placessidebar.sidebar list .sidebar-icon {
1989 padding-left: 10px;2050 padding-left: 10px;
1990 padding-right: 10px;2051 padding-right: 10px;
1991}2052}
19922053
2054.sidebar,
2055paned .sidebar.left,
2056paned .sidebar.right,
2057paned .sidebar.left:dir(rtl),
2058paned .sidebar:dir(rtl),
2059paned .sidebar:dir(ltr),
2060paned .sidebar {
2061 border-style: none;
2062 background-color: transparent;
2063}
2064
2065stacksidebar.sidebar:dir(ltr) list,
2066stacksidebar.sidebar.left list,
2067stacksidebar.sidebar.left:dir(rtl) list,
2068.sidebar:dir(ltr),
2069.sidebar.left,
2070.sidebar.left:dir(rtl) {
2071 border-right: 1px solid shade (@bg_color, 0.82);
2072 border-left-style: none;
2073}
2074
2075stacksidebar.sidebar:dir(rtl) list .sidebar:dir(rtl),
2076stacksidebar.sidebar.right list .sidebar:dir(rtl),
2077.sidebar.right {
2078 border-left: 1px solid shade (@bg_color, 0.82);
2079 border-right-style: none;
2080}
19932081
1994/**************2082/**************
1995 * spinbutton *2083 * spinbutton *
@@ -2889,7 +2977,7 @@
2889}2977}
28902978
2891/* inline-toolbar */2979/* inline-toolbar */
2892.inline-toolbar.toolbar {2980.inline-toolbar {
2893 -GtkToolbar-button-relief: normal;2981 -GtkToolbar-button-relief: normal;
28942982
2895 border-right-color: shade (@bg_color, 0.86);2983 border-right-color: shade (@bg_color, 0.86);
@@ -2908,6 +2996,11 @@
2908 padding: 3px 4px 4px 4px;2996 padding: 3px 4px 4px 4px;
2909}2997}
29102998
2999stack .inline-toolbar {
3000 background-color: shade (#f2f1ef, 0.97);
3001 background-image: none;
3002}
3003
2911.inline-toolbar.toolbar button {3004.inline-toolbar.toolbar button {
2912 padding: 4px;3005 padding: 4px;
29133006
@@ -3041,6 +3134,19 @@
3041 background-image: none;3134 background-image: none;
3042}3135}
30433136
3137.view row:nth-child(odd):not(:selected) {
3138 background-color: shade (@base_color, 0.965);
3139}
3140
3141.view row.activatable:hover,
3142.view row.has-open-popup {
3143 background-color: shade (@base_color, 0.92);
3144}
3145
3146.view row ~ separator {
3147 background-color: shade (@bg_color, 0.83);
3148}
3149
3044treeview.view {3150treeview.view {
3045 border-width: 1px;3151 border-width: 1px;
3046 border-color: @selected_bg_color;3152 border-color: @selected_bg_color;
@@ -3307,6 +3413,13 @@
3307/*****************************************************************************3413/*****************************************************************************
3308 * states [please keep this section at the end of the file (CSS precedence)] *3414 * states [please keep this section at the end of the file (CSS precedence)] *
3309 *****************************************************************************/3415 *****************************************************************************/
3416 *:selected *:disabled:not(:backdrop),
3417 *:selected .dim-label:not(:backdrop) {
3418 color: inherit;
3419 opacity: 0.65;
3420 text-shadow: none;
3421}
3422
3310*:disabled {3423*:disabled {
3311 color: shade (@bg_color, 0.6);3424 color: shade (@bg_color, 0.6);
3312 text-shadow: 0 1px alpha (shade (@bg_color, 1.25), 0.5);3425 text-shadow: 0 1px alpha (shade (@bg_color, 1.25), 0.5);
@@ -3318,6 +3431,7 @@
3318label selection:hover,3431label selection:hover,
3319entry selection,3432entry selection,
3320.view text selection,3433.view text selection,
3434list row:selected,
3321*:selected,3435*:selected,
3322*:selected:focus {3436*:selected:focus {
3323 background-color: alpha (@selected_bg_color, 0.9);3437 background-color: alpha (@selected_bg_color, 0.9);
@@ -3327,6 +3441,7 @@
33273441
3328entry selection:backdrop,3442entry selection:backdrop,
3329.view text selection:backdrop,3443.view text selection:backdrop,
3444list row:selected:backdrop,
3330*:selected:backdrop,3445*:selected:backdrop,
3331*:selected:focus:backdrop {3446*:selected:focus:backdrop {
3332 background-color: alpha (@backdrop_selected_bg_color, 0.9);3447 background-color: alpha (@backdrop_selected_bg_color, 0.9);

Subscribers

People subscribed via source and target branches