diff options
| author | mehekj <mehek.jethani@gmail.com> | 2021-11-29 15:02:02 -0500 |
|---|---|---|
| committer | mehekj <mehek.jethani@gmail.com> | 2021-11-29 15:02:02 -0500 |
| commit | 44a607d7bf6c30d05698dfa9d4be47c5b8356c21 (patch) | |
| tree | 35b216522a85e0b9407e349758b7de2e1bac3d8c /src/client/views/collections/collectionLinear/CollectionLinearView.scss | |
| parent | 2a237ca29c11585ddf51be59be4a48c46c6d4b29 (diff) | |
fixed playback loop to beginning and added click to go to currently playing
Diffstat (limited to 'src/client/views/collections/collectionLinear/CollectionLinearView.scss')
| -rw-r--r-- | src/client/views/collections/collectionLinear/CollectionLinearView.scss | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/client/views/collections/collectionLinear/CollectionLinearView.scss b/src/client/views/collections/collectionLinear/CollectionLinearView.scss index 8fe804466..d86e2d81f 100644 --- a/src/client/views/collections/collectionLinear/CollectionLinearView.scss +++ b/src/client/views/collections/collectionLinear/CollectionLinearView.scss @@ -13,7 +13,7 @@ background-color: $medium-blue-alt; } - >input:not(:checked)~&.true { + > input:not(:checked) ~ &.true { background-color: transparent; } @@ -27,7 +27,7 @@ overflow: visible !important; } - >span { + > span { background: $dark-gray; color: $white; border-radius: 18px; @@ -54,6 +54,7 @@ padding-right: 20px; vertical-align: middle; font-size: 12.5px; + pointer-events: all; } .bottomPopup-descriptions { @@ -82,7 +83,7 @@ color: black; } - >label { + > label { pointer-events: all; cursor: pointer; background-color: $medium-blue; @@ -100,20 +101,20 @@ justify-content: center; transition: 0.2s; - &:hover{ + &:hover { filter: brightness(0.85); } } - >input { + > input { display: none; } - >input:not(:checked)~.collectionLinearView-content { + > input:not(:checked) ~ .collectionLinearView-content { display: none; } - >input:checked~label { + > input:checked ~ label { transform: rotate(45deg); transition: transform 0.5s; cursor: pointer; @@ -147,4 +148,4 @@ } } } -}
\ No newline at end of file +} |
