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