Fixed player css so long artist and track names don't overflow

This commit is contained in:
drigato 2015-04-02 15:00:46 -04:00
parent fdd8cdfaea
commit 4ab4fe5cb9

View file

@ -1,6 +1,6 @@
.airtime_player {
width: 270px;
height: 180px;
height: 185px;
position: relative;
font-family: Arial, Helvetica, sans-serif;
color: #fff;
@ -123,12 +123,19 @@
display: block;
font-size: 14px;
color: #fff;
width: auto;
width: 170px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.now_playing span {
display: block;
color: #aaaaaa;
width: 170px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.airtime_volume {