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

View file

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