mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update video probing
This commit is contained in:
parent
8a32cc215f
commit
b70aa4926c
25 changed files with 407 additions and 355 deletions
|
@ -98,7 +98,7 @@ Custom property | Description | Default
|
|||
height: 14px;
|
||||
}
|
||||
|
||||
#toggleBar {
|
||||
.toggle-bar {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
|
@ -108,16 +108,16 @@ Custom property | Description | Default
|
|||
transition: background-color linear .08s;
|
||||
}
|
||||
|
||||
:host([checked]) #toggleBar {
|
||||
:host([checked]) .toggle-bar {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
:host([disabled]) #toggleBar {
|
||||
:host([disabled]) .toggle-bar {
|
||||
background-color: #000;
|
||||
opacity: 0.12;
|
||||
}
|
||||
|
||||
#toggleButton {
|
||||
.toggle-button {
|
||||
position: absolute;
|
||||
top: -3px;
|
||||
height: 20px;
|
||||
|
@ -129,22 +129,22 @@ Custom property | Description | Default
|
|||
will-change: transform;
|
||||
}
|
||||
|
||||
#toggleButton.dragging {
|
||||
.toggle-button.dragging {
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
:host([checked]) #toggleButton {
|
||||
:host([checked]) .toggle-button {
|
||||
-webkit-transform: translate(16px, 0);
|
||||
transform: translate(16px, 0);
|
||||
}
|
||||
|
||||
:host([disabled]) #toggleButton {
|
||||
:host([disabled]) .toggle-button {
|
||||
background-color: #bdbdbd;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#ink {
|
||||
.toggle-ink {
|
||||
position: absolute;
|
||||
top: -14px;
|
||||
left: -14px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue