1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix declaration-colon-space-after (CSS)

This commit is contained in:
MrTimscampi 2020-01-19 14:50:51 +01:00
parent f290604615
commit 0c0853a80a
4 changed files with 13 additions and 11 deletions

View file

@ -283,13 +283,13 @@ div[data-role=controlgroup] a.ui-btn-active {
} }
.activitylogUserPhoto { .activitylogUserPhoto {
height:1.71em; height: 1.71em;
width:1.71em; width: 1.71em;
border-radius:100%; border-radius: 100%;
margin-right:.5em; margin-right: .5em;
background-size:cover; background-size: cover;
background-repeat:no-repeat; background-repeat: no-repeat;
background-position:center; background-position: center;
} }
@media all and (min-width:40em) { @media all and (min-width:40em) {

View file

@ -224,12 +224,14 @@
@-moz-keyframes spin { @-moz-keyframes spin {
100% { 100% {
-moz-transform: rotate(360deg); -moz-transform: rotate(360deg);
transform:rotate(360deg);
} }
} }
@-webkit-keyframes spin { @-webkit-keyframes spin {
100% { 100% {
-webkit-transform: rotate(360deg); -webkit-transform: rotate(360deg);
transform:rotate(360deg);
} }
} }

View file

@ -4,8 +4,8 @@
right: 0; right: 0;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
min-width:104px; min-width: 104px;
min-height:24px; min-height: 24px;
padding-top: 1.25em; padding-top: 1.25em;
z-index: 1; z-index: 1;
color: #fff; color: #fff;

View file

@ -372,7 +372,7 @@ a[data-role=button] {
.emby-checkbox:checked+span+.checkboxOutline { .emby-checkbox:checked+span+.checkboxOutline {
background-color: #030322; background-color: #030322;
border:2px solid rgb(72, 195, 200); border: 2px solid rgb(72, 195, 200);
} }
.emby-checkbox:checked + span + .checkboxOutline > .checkboxIcon-checked { .emby-checkbox:checked + span + .checkboxOutline > .checkboxIcon-checked {
@ -384,7 +384,7 @@ a[data-role=button] {
} }
.emby-checkbox:focus:not(:checked)+span+.checkboxOutline { .emby-checkbox:focus:not(:checked)+span+.checkboxOutline {
border:2px solid #ff77f1; border: 2px solid #ff77f1;
} }
.itemProgressBarForeground { .itemProgressBarForeground {