-rw-r--r-- style.css
1 /* Styling for xanada desktop metaphor 2 * 3 * GUI elements can be styled using GTK's CSS. The core widget inside the window 4 * is an icon view, and everything else is a child of that. For options, see: 5 * https://developer-old.gnome.org/gtk3/stable/chap-css-properties.html 6 */ 7 8 /* Make the main window background transparent */ 9 window,iconview { 10 background-color: transparent; 11 } 12 13 /* Style the selected icon */ 14 .view:selected { 15 background-color: #15539e; 16 border-radius: 3px; 17 outline-style: none; 18 } 19 20 /* Style the selection rubberband */ 21 rubberband { 22 border: 1px solid #0f3b71; 23 background-color: rgba(15, 59, 113, 0.3); 24 } 25 26 /* Other styling ideas */ 27 /* 28 iconview { 29 padding: 3px; 30 } 31 32 .view:selected { 33 background-color: unset; 34 border: 1px solid #0f3b71; 35 } 36 */ 37