_nautilus.scss (1874B)
1 /************ 2 ! Nautilus * 3 *************/ 4 5 @include exports("nautilus") { 6 .nautilus-desktop.nautilus-canvas-item { 7 color: $white; 8 text-shadow: 1px 1px $black; 9 10 &:active { color: $fg_color; } 11 12 &:selected { color: $selected_fg_color; } 13 14 &:active, &:prelight, &:selected { text-shadow: none; } 15 } 16 17 NautilusWindow { 18 .toolbar { 19 border-width: 0 0 1px; 20 border-style: solid; 21 border-color: border_normal($toolbar_bg_color); 22 } 23 24 .sidebar .frame { border: 0; } 25 26 .sidebar-icon { 27 padding-left: $spacing; 28 padding-right: $spacing; 29 } 30 31 GtkPaned { 32 border-width: 0 1px 0 0; 33 border-style: solid; 34 35 &, &:hover { 36 border-color: shade($bg_color, ($contrast + .1)); 37 background-color: $bg_color; 38 } 39 } 40 } 41 42 NautilusNotebook { 43 &.notebook { 44 border-right-width: 0; 45 border-left-width: 0; 46 border-bottom-width: 0; 47 } 48 49 .frame { border: 0; } 50 } 51 52 NautilusQueryEditor { 53 .toolbar { 54 padding-top: $spacing - 1px; 55 padding-bottom: $spacing - 2px; 56 border-width: 1px 0 0; 57 border-style: solid; 58 border-color: $toolbar_bg_color; 59 background-color: shade($toolbar_bg_color, .9); 60 61 &:nth-child(2) { border-color: border_normal($toolbar_bg_color); } 62 63 &.search-bar { 64 border-top-width: 0; 65 border-bottom-width: 0; 66 } 67 68 &, &.search-bar { 69 &:last-child, &:only-child { 70 border-bottom-width: 1px; 71 border-bottom-color: border_normal($toolbar_bg_color); 72 } 73 } 74 75 } 76 } 77 }