SAAS-833: Radio page UI improvements/fixes
Undo some previous css changes
This commit is contained in:
parent
9a42c4bf36
commit
3bf6619696
|
@ -266,7 +266,7 @@
|
|||
if (data.current === null) {
|
||||
if (data.currentShow != null && data.currentShow.length > 0) {
|
||||
//Master/show source have no current track but they do have a current show.
|
||||
$("p.now_playing").html(data.currentShow[0].name);
|
||||
$("p.now_playing").html("On Air:" + "<span>" + data.currentShow[0].name + "</span>");
|
||||
} else {
|
||||
$("p.now_playing").html("Offline");
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
} ?>
|
||||
|
||||
<div id="tab-1" class="schedule tab_content current">
|
||||
<iframe id="schedule_iframe" height="400px" width="770px" scrolling="no" frameborder="0" src=<?php echo $this->stationUrl."embed/weekly-program"?>></iframe>
|
||||
<iframe id="schedule_iframe" height="400px" scrolling="no" frameborder="0" src=<?php echo $this->stationUrl."embed/weekly-program"?>></iframe>
|
||||
</div>
|
||||
|
||||
<div id="tab-2" class="about_us tab_content">
|
||||
|
|
|
@ -29,15 +29,15 @@ body {
|
|||
#schedule_iframe, .tab_content {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
/*width: 760px;*/
|
||||
width: 770px;
|
||||
max-width: 770px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 140px;
|
||||
padding: 10px;
|
||||
padding-left: 0px;
|
||||
position: absolute;
|
||||
/*left: 50%;*/
|
||||
/*margin-left: -380px;*/
|
||||
left: 50%;
|
||||
margin-left: -380px;
|
||||
/* -webkit-transition-delay: 1s;
|
||||
transition-delay: 1s;*/
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue