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

update datetime

This commit is contained in:
Luke Pulverenti 2016-09-16 02:32:40 -04:00
parent 965f9741ba
commit bbb9e89063
12 changed files with 57 additions and 113 deletions

View file

@ -2,7 +2,7 @@
position: relative;
z-index: 1;
vertical-align: middle;
display: inline-flex;
display: inline-block;
box-sizing: border-box;
width: 100%;
margin: 0;
@ -18,7 +18,18 @@
.checkboxContainer {
margin-bottom: 1.8em;
display: flex;
display: block;
}
@supports (display: flex) {
.mdl-checkbox {
display: inline-flex;
}
.checkboxContainer {
display: flex;
}
}
.checkboxContainer-withDescription {
@ -113,7 +124,7 @@
cursor: auto;
}
.checkboxList .mdl-checkbox {
.checkboxList > .mdl-checkbox {
display: flex;
margin: .5em 0;
}
@ -124,4 +135,4 @@
.checkboxListLabel {
opacity: .7;
}
}