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
|
.box_hover {
color: @theme_selected_fg_color;
background: @theme_selected_bg_color;
}
.no_frame {
border-style: none;
}
.unavailable_box {
background-color: @red_4;
border-radius: 25px;
padding: 3px;
padding-right: 10px;
color: white;
}
.book_card {
padding: 1rem;
}
.selected {
color: @theme_selected_fg_color;
background-color: @theme_selected_bg_color;
}
.book_detail_art {
border-radius: 12px;
}
.chapter_element {
border-radius: 0.5rem;
}
.book_play_button {
background: rgba(50, 50, 50, 1.0);
border: none;
color: white;
box-shadow: none;
transition: none;
-gtk-icon-shadow: none;
}
.book_play_button:hover, .book_play_button:active, .play_button:hover, .play_button:active {
border: none;
box-shadow: none;
-gtk-icon-shadow: none;
}
.filter-list-box-row {
border-radius: 0.5rem;
}
.play_button {
background-color: @theme_fg_color;
color: @theme_bg_color;
}
.player_bar {
background: shade(@theme_bg_color, 0.95) 0%;
}
.bold {
font-weight: 900;
}
.semi-bold {
font-weight: 600;
}
.transparent_bg {
background: transparent;
}
.failed-import-card {
/*
6px vertical padding is not ideal, because the text scrolls into
an invisible barrier, but it's nicer when no scrolling is happening
*/
padding: 6px 12px;
}
.drag-overlay-status-page {
background-color: alpha(@accent_bg_color, 0.65);
color: @accent_fg_color;
}
.blurred {
filter: blur(6px);
}
.round-6 {
border-radius: 6px;
}
|