1@define-color theme_base_color #333333; 2@define-color photos_collection_bg #000000; 3 4GdMainIconView.content-view { 5 -GdMainIconView-icon-size: 40; 6} 7 8/* Make spinner visible on both dark and bright backgrounds w/o making 9 * it look ugly/weird. 10 */ 11GdMainIconView.content-view.cell:active { 12 color: gray; 13} 14 15.documents-counter { 16 background-image: url("dnd-counter.svg"); 17 background-size: contain; 18 background-color: transparent; 19 color: @theme_base_color; 20 font-weight: bold; 21} 22 23.documents-scrolledwin.frame { 24 border-width: 1px 0 0; 25 border-radius: 0; 26} 27 28.photos-icon-bg { 29 -gtk-icon-shadow: 0 1px #000000; 30} 31 32.photos-fade-in { 33 opacity: 1.0; 34 transition: opacity 0.2s ease-out; 35} 36 37.photos-fade-out { 38 opacity: 0.0; 39 transition: opacity 0.2s ease-out; 40} 41 42.photos-collection-icon { 43 background-color: @photos_collection_bg; 44 border-radius: 8px; 45} 46 47button.photos-filter-preview:checked { 48 background: @theme_selected_bg_color; 49 color: @theme_selected_fg_color; 50 -gtk-icon-shadow: 0 3px 3px shade(@theme_selected_bg_color,0.7); 51} 52