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

start using user policy

This commit is contained in:
Luke Pulverenti 2014-12-20 01:06:27 -05:00
parent d84df77553
commit db0f911a4d
34 changed files with 117 additions and 184 deletions

View file

@ -3,7 +3,7 @@
background-size: 100%;
background-repeat: no-repeat;
background-position: center center;
width: 23px;
width: 22px;
height: 100%;
display: inline-block;
}
@ -35,10 +35,4 @@
.headerSelectedPlayer {
display: none;
}
}
@media all and (max-width: 400px) {
.btnCastImage {
width: 26px;
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -62,7 +62,7 @@
.listHeader {
margin-top: 1em;
margin-bottom: .15em;
margin-bottom: .25em;
padding-left: 2px;
}

View file

@ -20,6 +20,12 @@
line-height: 50px;
}
.viewMenuBar .fa {
color: #e8e8e8;
font-size: 24px;
vertical-align: middle;
}
.headerButton {
margin: 0;
padding: 0;
@ -74,57 +80,13 @@
}
.barMenuInner {
padding: 7px 10px;
border: 1px solid #000;
border-radius: 4px;
box-shadow: rgba(255, 255, 255, 0.0980392) 0px 1px 0px 0px inset, rgba(255, 255, 255, 0.0745098) 0px 1px 0px 0px;
background-color: rgb(14, 14, 14);
background-image: linear-gradient(rgb(21, 21, 21), rgb(4, 4, 4));
background-repeat: repeat-x;
border-bottom-color: rgba(0, 0, 0, 0.247059);
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-image-outset: 0px;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
border-left-color: rgba(0, 0, 0, 0.0980392);
border-left-style: solid;
border-left-width: 1px;
border-right-color: rgba(0, 0, 0, 0.0980392);
border-right-style: solid;
border-right-width: 1px;
border-top-color: rgba(0, 0, 0, 0.0980392);
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-top-style: solid;
border-top-width: 1px;
padding: 6px 10px;
}
.barsMenuButton:hover {
opacity: .5 !important;
}
.icon-bar {
display: block;
width: 18px;
height: 2px;
background-color: #f5f5f5;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.icon-bar + .icon-bar {
margin-top: 3px;
}
.libraryMenuButtonText {
color: #fff !important;
text-decoration: none;
@ -180,10 +142,10 @@
background-color: #111;
}
.libraryViewNav::-webkit-scrollbar {
height: 0 !important;
display: none;
}
.libraryViewNav::-webkit-scrollbar {
height: 0 !important;
display: none;
}
.viewMenuLink {
text-decoration: none;
@ -218,7 +180,7 @@
.viewMenuTextLink {
display: block;
padding: .65em .5em .55em 38px !important;
padding: .7em .5em .6em 38px !important;
font-size: 14px;
font-weight: 300 !important;
font-family: Roboto;
@ -278,10 +240,6 @@
background-image: url(images/items/folders/edit.png);
}
.dashboardViewMenu {
background-image: url(images/items/folders/settings.png);
}
.reportsViewMenu {
background-image: url(images/items/folders/report.png);
}

View file

@ -5,23 +5,15 @@
.btnNotificationsInner {
text-decoration: none !important;
vertical-align: middle;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 4px 12px 4px;
border-radius: 1000px;
padding: 4px 10px 4px;
text-align: center;
text-decoration: none !important;
-moz-user-select: none;
-webkit-user-select: none;
background-color: #444;
background-image: -webkit-gradient(linear,left top,left bottom,from(#444),to(#313131));
background-image: -webkit-linear-gradient(top,#444,#313131);
background-image: -moz-linear-gradient(top,#444,#313131);
background-image: -ms-linear-gradient(top,#444,#313131);
background-image: -o-linear-gradient(top,#444,#313131);
background-image: linear-gradient(top,#444,#313131);
color: #fff;
font-size: 12px;
font-size: 13px;
font-weight: normal;
}
@ -33,14 +25,12 @@
background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
background-image: linear-gradient(top,#4d90fe,#4787ed);
border-color: #3079ed;
color: #fff !important;
}
.levelWarning {
background-color: #FF7537;
background-image: none;
border-color: #FF7537;
color: #fff !important;
}
@ -52,7 +42,6 @@
background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
background-image: -o-linear-gradient(top,#dd4b39,#d14836);
background-image: linear-gradient(top,#dd4b39,#d14836);
border-color: #c6322a;
color: #fff !important;
}

View file

@ -1081,7 +1081,7 @@ progress {
display: inline-block;
background: rgba(51, 136, 204, .7);
border-radius: 1000px;
padding: 5px 12px;
padding: 4px 12px;
color: #fff !important;
font-weight: normal !important;
text-decoration: none;