File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 92
92
}
93
93
94
94
/* Firefox */
95
- input [type = number ] {
95
+ input [type = ' number' ] {
96
96
-moz-appearance : textfield;
97
97
}
98
98
99
-
100
99
.tracksTable {
101
100
border-collapse : collapse;
102
101
width : 100% ;
@@ -177,6 +176,10 @@ input[type=number] {
177
176
box-shadow : 4px 1px 8px # 11111166, -4px 1px 8px # 11111166, 1px -4px 8px # 11111166 ;
178
177
}
179
178
179
+ .box-shadow-progressbar {
180
+ box-shadow : 0px -1px 4px rgb (62 , 50 , 2 , 0.5 );
181
+ }
182
+
180
183
.shadow-height {
181
184
height : calc (100% - 4px );
182
185
}
@@ -204,7 +207,6 @@ Bookshelf Label
204
207
color : # fce3a6 ;
205
208
}
206
209
207
-
208
210
.cover-bg {
209
211
width : calc (100% + 40px );
210
212
height : calc (100% + 40px );
Original file line number Diff line number Diff line change 39
39
</div >
40
40
41
41
<!-- No progress shown for podcasts (unless showing podcast episode) -->
42
- <div cy-id =" progressBar" v-if =" !isPodcast || episodeProgress" class =" absolute bottom-0 left-0 h-1e shadow-sm max-w-full z-10 rounded-b" :class =" itemIsFinished ? 'bg-success' : 'bg-yellow-400'" :style =" { width: coverWidth * userProgressPercent + 'px' }" ></div >
42
+ <div cy-id =" progressBar" v-if =" !isPodcast || episodeProgress" class =" absolute bottom-0 left-0 h-1e max-w-full z-20 rounded-b box-shadow-progressbar " :class =" itemIsFinished ? 'bg-success' : 'bg-yellow-400'" :style =" { width: coverWidth * userProgressPercent + 'px' }" ></div >
43
43
44
44
<!-- Overlay is not shown if collapsing series in library -->
45
45
<div cy-id =" overlay" v-show =" !booksInSeries && libraryItem && (isHovering || isSelectionMode || isMoreMenuOpen) && !processing" class =" w-full h-full absolute top-0 left-0 z-10 bg-black rounded md:block" :class =" overlayWrapperClasslist" >
Original file line number Diff line number Diff line change 10
10
<p :style =" { fontSize: 0.8 + 'em' }" role =" status" :aria-label =" $strings.LabelNumberOfBooks" >{{ books.length }}</p >
11
11
</div >
12
12
13
- <div cy-id =" seriesProgressBar" v-if =" seriesPercentInProgress > 0" class =" absolute bottom-0 left-0 h-1e shadow-sm max-w-full z-10 rounded-b w-full" :class =" isSeriesFinished ? 'bg-success' : 'bg-yellow-400'" :style =" { width: seriesPercentInProgress * 100 + '%' }" />
13
+ <div cy-id =" seriesProgressBar" v-if =" seriesPercentInProgress > 0" class =" absolute bottom-0 left-0 h-1e shadow-sm max-w-full z-10 rounded-b w-full box-shadow-progressbar " :class =" isSeriesFinished ? 'bg-success' : 'bg-yellow-400'" :style =" { width: seriesPercentInProgress * 100 + '%' }" />
14
14
15
15
<div cy-id =" hoveringDisplayTitle" v-if =" hasValidCovers" aria-hidden =" true" class =" bg-black bg-opacity-60 absolute top-0 left-0 w-full h-full flex items-center justify-center text-center transition-opacity" :class =" isHovering ? '' : 'opacity-0'" :style =" { padding: '1em' }" >
16
16
<p :style =" { fontSize: 1.2 + 'em' }" >{{ displayTitle }}</p >
You can’t perform that action at this time.
0 commit comments