emmental/emmental/emmental.css
Anna Schumaker 78ea2904a1 tracklist: Add Move Down and Move Up buttons to the OSD
These are used to manually rearrange the Tracks in the Playlist. The
buttons are only marked sensitive if one item is selected.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2023-05-10 17:42:27 -04:00

92 lines
1.7 KiB
CSS

/* Copyright 2022 (c) Anna Schumaker. */
/* Make the Gtk.Paned separator transparent with extra padding */
paned.emmental-pane>separator {
opacity: 0;
padding: 8px;
}
*.emmental-padding {
padding: 8px;
}
box.emmental-splitbutton>button {
border-radius: 0%;
margin-left: -1px;
}
box.emmental-splitbutton>menubutton>button {
border-radius: 0%;
margin-left: -1px;
padding: 6px;
}
listview > row:checked {
font-weight: bold;
background-color: alpha(@accent_color, 0.2);
}
listview > row:checked:hover {
background-color: alpha(@accent_color, 0.27);
}
listview > row:checked:active {
background-color: alpha(@accent_color, 0.36);
}
listview > row:checked:selected {
background-color: alpha(@accent_color, 0.3);
}
listview > row:checked:selected:hover {
background-color: alpha(@accent_color, 0.33);
}
listview > row:checked:selected:active {
background-color: alpha(@accent_color, 0.39);
}
image.emmental-sidebar-arrow {
transition: 250ms;
transform: rotate(0deg);
}
image.emmental-sidebar-arrow:checked {
transition: 250ms;
transform: rotate(-180deg);
color: @accent_color;
}
box.emmental-sidebar-section>button {
border-radius: 0%;
margin-top: -1px;
}
button.emmental-delete>image {
color: @destructive_color;
}
button.emmental-stop>image {
color: @red_3;
}
columnview.emmental-track-list > listview > row > cell {
padding: 0px 2px;
min-height: 40px;
}
columnview.emmental-track-list > listview > row > cell > label {
padding: 0px 4px;
}
columnview.emmental-track-list > listview > row > cell > picture {
padding: 4px 0px;
min-height: 36px;
min-width: 36px;
border-radius: 15%;
}
box.emmental-move-buttons > button > image {
color: @accent_color;
}