Fix dark mode
parent
93bed9c1c2
commit
f08cc6f338
|
@ -610,7 +610,7 @@ export default {
|
||||||
|
|
||||||
.photo-row img {
|
.photo-row img {
|
||||||
background-clip: content-box;
|
background-clip: content-box;
|
||||||
background-color: #eee;
|
background-color: var(--color-loading-light);
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
border-radius: 3%;
|
border-radius: 3%;
|
||||||
|
@ -682,7 +682,6 @@ export default {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
color: black;
|
|
||||||
right: 5px;
|
right: 5px;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
@ -692,7 +691,7 @@ export default {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background-color: #444;
|
background-color: var(--color-main-text);
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
@ -714,7 +713,7 @@ export default {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
.timeline-scroll .cursor.hv {
|
.timeline-scroll .cursor.hv {
|
||||||
background-color: rgba(255, 255, 255, 0.8);
|
background-color: var(--color-placeholder-light);
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
border-top: 2px solid var(--color-primary);
|
border-top: 2px solid var(--color-primary);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
|
Loading…
Reference in New Issue