removed hardcoded colors

This commit is contained in:
kKaskak 2023-10-11 10:02:55 +03:00
parent 0cf5fae62d
commit ac4a3d303a
6 changed files with 10 additions and 41 deletions

View file

@ -24,7 +24,6 @@
--color-twitter: #1DA1F2;
--color-imdb: #f5c518;
--color-placeholder: #60606080;
--color-released: #707070;
--color-placeholder-text: @color-surface-50;
--color-placeholder-background: @color-surface-dark5-20;
--primary-background-color: rgba(12, 11, 17, 1);

View file

@ -31,10 +31,10 @@
}
}
.uninstall-button {
background-color: rgba(72, 69, 114, 1);
background-color: var(--overlay-color);
&:hover {
outline: var(--focus-outline-size) solid rgba(72, 69, 114, 1);
outline: var(--focus-outline-size) solid var(--overlay-color);
background-color: transparent;
}
&:focus {

View file

@ -167,7 +167,6 @@
flex-direction: column;
justify-content: flex-start;
align-items: center;
position: relative;
gap: 1rem 0;
.label {
@ -181,11 +180,12 @@
&:not(:last-child) {
margin-right: 1rem;
}
&:hover .label {
opacity: 0.7;
.label:has(~ .action-button:hover) {
opacity: 0.7;
}
}
.action-button {
flex: none;

View file

@ -8,13 +8,13 @@
flex-direction: column;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
color: var(--primary-foreground-color);
white-space: pre;
.stream-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: var(--primary-foreground-color);
}
.stream-properties {
display: flex;

View file

@ -53,36 +53,6 @@
}
}
.info-container {
flex: 1;
max-height: 3.6em;
padding: 0 0.5rem 0 1.5rem;
opacity: 0.6;
display: flex;
flex-direction: column;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
color: var(--primary-foreground-color);
white-space: pre;
.stream-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.stream-properties {
display: flex;
flex-direction: row;
.icon {
width: 1em;
height: 1em;
padding: 0;
color: var(--primary-foreground-color);
background-color: transparent;
}
}
}
.icon {
flex: none;
width: 3rem;

View file

@ -84,8 +84,8 @@
font-weight: 500;
white-space: nowrap;
text-overflow: ellipsis;
color: var(--color-released);
opacity: 0.9;
color: var(--primary-foreground-color);
opacity: 0.44;
}
.upcoming-watched-container {