jellyfin-web/dashboard-ui/css/librarymenu.css

303 lines
5.5 KiB
CSS
Raw Normal View History

2014-05-02 21:20:04 -07:00
.libraryPage {
2014-05-10 22:11:53 -07:00
padding-top: 50px !important;
2014-05-02 21:20:04 -07:00
}
.libraryPage:not(.metadataEditorPage):not(.noSecondaryNavPage) {
2014-05-10 22:11:53 -07:00
padding-top: 100px !important;
2014-05-02 21:20:04 -07:00
}
2014-05-09 12:43:06 -07:00
.libraryMenuDivider {
2014-05-03 16:38:23 -07:00
height: 1px;
background: #333;
margin: .5em 0;
}
2014-05-02 21:20:04 -07:00
2014-05-10 22:11:53 -07:00
.viewMenuBar, .headerButton {
height: 50px;
}
.headerButton {
line-height: 50px;
}
.headerButton {
margin: 0;
padding: 0;
background-color: transparent;
top: 0;
bottom: 0;
vertical-align: middle;
text-align: center;
border: 1px solid #1b1b1b!important;
cursor: pointer;
outline: none;
padding: 0 20px;
}
.headerButton img {
height: 18px;
vertical-align: middle;
}
.headerSearchButton img {
height: 16px;
}
.headerButtonLeft {
border-width: 0 1px 0 0 !important;
float: left;
padding: 0 15px;
}
.headerButtonRight {
border-width: 0 !important;
float: left;
border-width: 0 0 0 1px !important;
}
.headerButtonRight:first-child {
border-width: 0 !important;
}
.desktopHomeLink {
color: #ddd !important;
text-decoration: none;
font-weight: 400!important;
font-size: 15px;
border-right: 0 !important;
}
.desktopHomeLink span {
vertical-align: middle;
}
.libraryMenuButton {
left: 0;
opacity: .8;
}
2014-05-02 21:20:04 -07:00
.viewMenuBar {
font-weight: bold;
position: fixed;
right: 0;
left: 0;
z-index: 1000;
top: 0;
2014-05-06 19:28:19 -07:00
background: #000;
2014-05-03 16:38:23 -07:00
border-bottom: 1px solid #101010;
2014-05-07 11:38:50 -07:00
border-top: 0;
border-left: 0;
border-right: 0;
2014-05-02 21:20:04 -07:00
}
2014-05-10 22:11:53 -07:00
.libraryViewNav {
height: 48px;
overflow: hidden;
border-bottom: 1px solid #222;
position: fixed;
right: 0;
left: 0;
top: 51px;
z-index: 1000;
background-color: #181818;
background-color: rgba(24, 24, 24, .95);
2014-05-10 22:11:53 -07:00
}
@media all and (max-width: 460px) {
.viewMenuBar, .headerButton {
height: 46px;
}
.headerButton {
line-height: 46px;
}
.libraryPage {
padding-top: 46px !important;
}
.libraryPage:not(.metadataEditorPage):not(.noSecondaryNavPage) {
padding-top: 96px !important;
}
.libraryViewNav {
top: 47px;
}
.headerButtonLeft img {
height: 15px;
}
.btnCastImage {
width: 26px !important;
}
}
2014-05-02 21:20:04 -07:00
.viewMenuLink {
text-decoration: none;
color: #ccc!important;
padding: 7px .5em 6px;
display: inline-block;
vertical-align: middle;
}
2014-05-10 22:11:53 -07:00
.viewMenuTextLink:hover, .libraryMenuButton:hover {
background-color: #38c;
color: #fff!important;
opacity: 1;
}
2014-05-03 16:38:23 -07:00
2014-05-10 22:11:53 -07:00
.headerButtonRight:hover {
opacity: .5;
2014-05-02 21:20:04 -07:00
}
.viewMenuLink:hover {
color: #fff;
}
.viewMenuLink:hover img {
opacity: .5;
}
.viewMenuLink img {
height: 24px;
vertical-align: top;
}
2014-05-03 16:38:23 -07:00
.viewMenuTextLink {
display: block;
2014-05-10 22:11:53 -07:00
padding: .6em .5em .6em 43px!important;
2014-05-03 16:38:23 -07:00
font-size: 15px;
font-weight: 300!important;
font-family: Roboto;
2014-05-09 12:43:06 -07:00
background-repeat: no-repeat;
background-size: 18px 18px;
2014-05-10 22:11:53 -07:00
background-position: 16px center;
2014-05-02 21:20:04 -07:00
}
2014-05-03 16:38:23 -07:00
.musicViewMenu {
background-image: url(images/items/folders/music.png);
2014-05-10 22:11:53 -07:00
background-position: 16px 8px;
2014-05-02 21:20:04 -07:00
}
2014-05-03 16:38:23 -07:00
.tvshowsViewMenu {
background-image: url(images/items/folders/tv.png);
2014-05-10 22:11:53 -07:00
background-position: 16px 8px;
2014-05-02 21:20:04 -07:00
}
2014-05-03 16:38:23 -07:00
.moviesViewMenu {
background-image: url(images/items/folders/movies.png);
2014-05-02 21:20:04 -07:00
}
2014-05-03 16:38:23 -07:00
.gamesViewMenu {
background-image: url(images/items/folders/games.png);
2014-05-10 22:11:53 -07:00
background-position: 16px 8px;
2014-05-02 21:20:04 -07:00
}
2014-05-03 16:38:23 -07:00
.channelsViewMenu {
background-image: url(images/items/folders/channels.png);
2014-05-10 22:11:53 -07:00
background-position: 16px 9px;
2014-05-03 16:38:23 -07:00
}
.booksViewMenu {
background-image: url(images/items/folders/books.png);
}
2014-05-04 07:19:46 -07:00
.musicvideosViewMenu {
background-image: url(images/items/folders/musicvideos.png);
2014-05-10 22:11:53 -07:00
background-position: 16px 8px;
2014-05-04 07:19:46 -07:00
}
.photosViewMenu {
background-image: url(images/items/folders/photos.png);
2014-05-10 22:11:53 -07:00
background-position: 16px 8px;
2014-05-04 07:19:46 -07:00
}
2014-05-06 19:28:19 -07:00
.homeVideosViewMenu {
2014-05-03 16:38:23 -07:00
background-image: url(images/items/folders/homevideos.png);
2014-05-06 19:28:19 -07:00
}
.generalViewMenu, .boxsetsViewMenu {
background-image: url(images/items/folders/folder.png);
2014-05-02 21:20:04 -07:00
}
2014-05-10 22:11:53 -07:00
.editorViewMenu {
background-image: url(images/items/folders/edit.png);
background-position: 16px 8px;
}
.dashboardViewMenu {
background-image: url(images/items/folders/settings.png);
background-position: 16px 8px;
}
2014-05-16 10:11:07 -07:00
2014-05-12 11:04:25 -07:00
.reportsViewMenu {
background-image: url(images/items/folders/report.png);
}
2014-05-10 22:11:53 -07:00
2014-05-03 16:38:23 -07:00
.viewMenuSecondary {
2014-05-10 22:11:53 -07:00
position: absolute;
top: 0;
bottom: 0;
right: 0;
2014-05-03 16:38:23 -07:00
}
.selectedMediaFolder {
2014-05-10 22:11:53 -07:00
background-color: #52B54B!important;
2014-05-02 21:20:04 -07:00
color: #fff!important;
}
2014-05-03 16:38:23 -07:00
.itemDetailPage .selectedMediaFolder {
background-color: rgba(51,136,204,.8)!important;
}
2014-05-02 21:20:04 -07:00
2014-05-10 10:28:03 -07:00
.ui-panel.ui-body-b {
background-color: #181818;
}
2014-05-02 21:20:04 -07:00
.libraryViewNavInner {
2014-05-06 19:28:19 -07:00
text-align: center;
2014-05-02 21:20:04 -07:00
font-size: 14px;
white-space: nowrap;
padding: 0 0 0;
overflow-x: auto;
2014-05-07 11:38:50 -07:00
height: 61px;
2014-05-02 21:20:04 -07:00
}
.libraryViewNav .ui-btn-active .libraryViewNavLinkContent {
border-bottom-color: #38c;
color: #fff;
}
.libraryViewNav a {
display: inline-block;
padding: 12px 0 0;
color: #eee!important;
text-decoration: none;
margin: 0 0;
position: relative;
font-weight: normal;
}
.libraryViewNav a:hover {
color: #bbb!important;
}
.libraryViewNavLinkContent {
border-bottom: 5px solid transparent;
display: inline-block;
2014-05-07 11:38:50 -07:00
padding: 2px 1em 11px;
2014-05-02 21:20:04 -07:00
color: #ddd;
}
2014-05-10 22:11:53 -07:00
@media all and (max-width: 600px) {
2014-05-03 16:38:23 -07:00
.desktopHomeLink {
2014-05-02 21:20:04 -07:00
display: none;
}
2014-05-10 22:11:53 -07:00
.headerSettingsButton {
display: none;
2014-05-02 21:20:04 -07:00
}
}