1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/* AlbumCover/AlbumTile */
.artist-label {
font-size: smaller;
}
/* AlbumsView */
#albums gridview {
padding: 18px;
}
#albums gridview > child {
margin: 9px;
padding: 6px;
}
#albums gridview > child:hover,child:selected {
background-color: var(--border-color);
}
/* SearchView FlowBox tiles */
.tile:hover {
background-color: var(--border-color);
}
/* Cover images in large tiles in AlbumsView and SearchView */
.tile-image {
margin: 6px;
}
.playlist-icon {
padding: 10px;
border-radius: 50%;
background-color: var(--border-color);
}
.disc-label {
padding: 12px 0;
}
/* PlayerToolbar */
.smooth-scale {
padding-top: 0px;
padding-bottom: 0px;
}
.grey-image {
color: color-mix(in srgb, currentColor 30%, transparent);
}
/* Used in AlbumWidget and ArtistAlbumsWidget */
.playing-song-label {
font-weight: bold;
}
/* TwoLineTip */
.tooltip-title {
font-weight: bold;
}
.playlistdialog-row:selected {
color: var(--window-fg-color);
background-color: var(--border-color);
}
.playlistdialog-row:selected label {
color: var(--view-fg-color);
}
/* SearchView */
.search-header {
font-weight: bold;
}
/* dnd icon for SongWidget */
.drag-handle {
color: color-mix(in srgb, currentColor 40%, transparent);
}
.drag-handle:backdrop {
color: color-mix(in srgb, currentColor 40%, transparent);
}
/* SongWidget rows */
.songwidget {
padding: 12px;
}
/* Starring */
button.star:hover {
opacity: 1;
}
@keyframes rotate_star {
from { -gtk-icon-transform: rotate(-72deg); }
to {}
}
@keyframes rotate_unstar {
from { -gtk-icon-transform: rotate(72deg); }
to {}
}
button.star.interacted.starred image {
animation: rotate_star 0.4s ease;
}
button.star.interacted:not(.starred) image {
animation: rotate_unstar 0.4s ease;
}
|