17 lines
619 B
CSS
Executable File
17 lines
619 B
CSS
Executable File
/* This just keeps the power manager plugin icon to stay small. This trick
|
||
doesn't work for the pulse audio icon unfortunately.*/
|
||
#xfce4-power-manager-plugin {
|
||
padding: 6px 6px; }
|
||
|
||
/* GNOME Disk utility */
|
||
/* This is a fix for the GNOME disk application which uses its own CSS to
|
||
theme the grid style; overriding user themes. In reality this doesn’t work
|
||
so well, so we'll just override that with out own!*/
|
||
|
||
.gnome-disk-utility-grid {
|
||
background-color: @bg_shade;
|
||
color: @font_bright;
|
||
border-radius: 0px;
|
||
outline-color: white; }
|
||
.gnome-disk-utility-grid:backdrop {
|
||
background-color: @bg_shade; } |