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

fix project

This commit is contained in:
Luke Pulverenti 2015-06-26 12:24:21 -04:00
parent 19f8c11c38
commit a605edece3
3 changed files with 13 additions and 3 deletions

View file

@ -6,10 +6,10 @@
text-align: center;
font-size: 24px;
padding: 14px 0;
margin: 3px 1px;
margin: 2px 1px;
width: 70px;
background: #383838;
border-radius: 5px;
border-radius: 2px;
}
.nowPlayingPageImage img {

View file

@ -8,7 +8,7 @@
<div data-role="content" style="overflow:visible;">
<paper-fab mini icon="arrow-back" class="subdued" onclick="history.back()" style="position:relative;top:5px;left:5px;"></paper-fab>
<paper-fab mini icon="arrow-back" class="white" onclick="history.back()" style="position:relative;top:5px;left:5px;"></paper-fab>
<div style="float:right;position:relative;top:5px;right:5px;">
<span class="nowPlayingSelectedPlayer"></span>
<paper-fab mini icon="cast" class="blue nowPlayingCastIcon" onclick="MediaController.showPlayerSelection();" style="vertical-align:middle;"></paper-fab>

View file

@ -289,6 +289,16 @@ paper-fab.subdued {
background: #222;
}
paper-fab.white {
background: #fff;
color: #000;
}
paper-fab.white paper-material.keyboard-focus {
background: #01579b !important;
color: #fff;
}
paper-fab.blue {
background: #03a9f4;
}