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

update recording path

This commit is contained in:
Luke Pulverenti 2016-05-10 01:15:06 -04:00
parent 9f38a33388
commit 95cc042317
2 changed files with 11 additions and 31 deletions

View file

@ -59,26 +59,16 @@ body:not(.dashboardDocument) .mainDrawerButton {
padding: 12px 13px 8px; padding: 12px 13px 8px;
} }
.libraryViewNav .tab-content { .libraryViewNav .mdl-tabs__ripple-container {
display: block !important; display: none !important;
} }
.libraryViewNav paper-tabs { .libraryViewNav .mdl-tabs__tab.is-active:after {
flex-grow: 0 !important; display: none !important;
height: 36px;
} }
.libraryViewNav paper-tab { .libraryViewNav .mdl-tabs__tab.is-active {
height: auto !important; color: #52B54B !important;
flex-grow: 0 !important;
}
.libraryViewNav #selectionBar {
background-color: transparent !important;
}
.libraryViewNav #tabsContainer {
flex-grow: 0 !important;
} }
.ui-body-b .paperList:not(.criticReviewPaperList) { .ui-body-b .paperList:not(.criticReviewPaperList) {
@ -102,15 +92,11 @@ body:not(.dashboardDocument) .mainDrawerButton {
} }
} }
.libraryViewNav a { .btnActiveCast {
border-bottom: 0;
}
.libraryViewNav .ui-btn-active, .libraryViewNav .iron-selected, .btnActiveCast {
color: #52B54B !important; color: #52B54B !important;
} }
.libraryViewNav, paper-tabs { .libraryViewNav {
font-size: 12px; font-size: 12px;
} }
@ -143,10 +129,6 @@ h1, h1 a {
margin-top: 0; margin-top: 0;
} }
paper-tab {
text-transform: none !important;
}
.visualCardBox { .visualCardBox {
background: none !important; background: none !important;
-moz-box-shadow: none; -moz-box-shadow: none;
@ -159,11 +141,6 @@ paper-tab {
padding: 0; padding: 0;
} }
/* Need the div specifier to gain preference over the value in card.css */
div.cardBox {
margin: 5px;
}
.cardImage { .cardImage {
border-radius: 10px; border-radius: 10px;
} }

View file

@ -72,6 +72,9 @@
function updateUserInHeader(user) { function updateUserInHeader(user) {
var header = document.querySelector('.viewMenuBar'); var header = document.querySelector('.viewMenuBar');
if (!header) {
return;
}
var headerUserButton = header.querySelector('.headerUserButton'); var headerUserButton = header.querySelector('.headerUserButton');
var hasImage; var hasImage;