Fixed some issues with embedded schedule widget style

This commit is contained in:
Albert Santoni 2015-06-11 15:04:59 -04:00
parent 1efc47beb9
commit 505d6fbc57
3 changed files with 8 additions and 2 deletions

View File

@ -78,7 +78,6 @@ body {
} }
.schedule.current .schedule_content { .schedule.current .schedule_content {
max-height: 290px;
} }
.tab_content.current ul { .tab_content.current ul {
@ -117,6 +116,7 @@ background: rgba(53, 53, 53, 1.0);
text-transform: none; text-transform: none;
text-align: center; text-align: center;
color: #aaaaaa; color: #aaaaaa;
line-height: 240px;
} }
.schedule_item div.time_grid { .schedule_item div.time_grid {

View File

@ -57,7 +57,7 @@ body {
.schedule_content { .schedule_content {
background: rgba(0, 0, 0, 0.3); background: rgba(0, 0, 0, 0.3);
max-height: 0px; max-height: 290px;
transition: max-height 2s ease; transition: max-height 2s ease;
overflow-y: auto; overflow-y: auto;

View File

@ -3264,11 +3264,13 @@ dd .stream-status {
#weekly-schedule-widget { #weekly-schedule-widget {
margin: 0 auto; margin: 0 auto;
margin-bottom: 20px;
width: 50%; width: 50%;
} }
#widget-menu { #widget-menu {
margin: 0 auto; margin: 0 auto;
margin-bottom: 20px;
width: 40%; width: 40%;
} }
@ -3278,6 +3280,10 @@ dd .stream-status {
font-size: 14px; font-size: 14px;
} }
#player-widget {
margin-bottom: 20px;
}
#weekly-schedule-widget label { #weekly-schedule-widget label {
font-weight: bold; font-weight: bold;
} }