Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions web/skins/classic/css/base/skin.css
Original file line number Diff line number Diff line change
Expand Up @@ -1563,6 +1563,9 @@ noUi-target {
[id^="volumeControls"].disabled {
opacity: 0.4;
}
div.volume {
display: inline-block;
}
/* --- Volume control --- */

.rightInFlexContainer {
Expand Down
10 changes: 6 additions & 4 deletions web/skins/classic/includes/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function xhtmlHeadersStart($file, $title) {
<?php #Chosen can't be cache-busted because it loads sprites by relative path ?>
<link rel="stylesheet" href="skins/classic/js/chosen/chosen.min.css" type="text/css"/>
<?php
echo output_link_if_exists(array('js/noUiSlider-15.8.1/dist/nouislider.min.css?'), false, $param = ['global', 'stylesheet', ' type="text/css"/']);
echo output_link_if_exists(array('js/noUiSlider-15.8.1/dist/nouislider.min.css?'), false, $param = ['global', 'stylesheet', ' type="text/css"']);
echo output_link_if_exists(array(
'js/dateTimePicker/jquery-ui-timepicker-addon.css',
'js/jquery-ui-1.13.2/jquery-ui.structure.min.css',
Expand Down Expand Up @@ -396,7 +396,7 @@ function getSidebarTopHTML() {
$blockExtruder = '
<div id="extruderLeft">
<div id="contextExtruderLeft" class="text">
<! -- Pull-out panel FILLED VIA JS -->
<!-- Pull-out panel FILLED VIA JS -->
</div>
</div>
';
Expand Down Expand Up @@ -427,14 +427,16 @@ function getSidebarTopHTML() {
<div class="sidebar-footer hidden-for-collapsed">
<div class="footer-box">
<div>
<ul>
' . getAccountCircleHTML($skin, $user, $forLeftBar = true) . '
</ul>
</div>
<div style="padding: 0 10px">
<span style="display: block; margin-bottom: 10px">
<div style="margin-bottom: 10px">
<ul id="versionSidebar">
' . getZMVersionHTML() . '
</ul>
</span>
</div>
<ul id="statusSidebar">
' . getStatusBtnHTML(runtimeStatus($running)) . '
</ul>
Expand Down
4 changes: 2 additions & 2 deletions web/skins/classic/views/watch.php
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,10 @@
((isset($_COOKIE['zmWatchMuted']) and $_COOKIE['zmWatchMuted'] == 'true') ? true : false);
ZM\Debug("Muted $muted");
?>
<span id="volumeControls<?php echo $mid; ?>" class="volume disabled">
<div id="volumeControls<?php echo $mid; ?>" class="volume disabled">
<div id="volumeSlider<?php echo $mid; ?>" data-volume="<?php echo $volume; ?>" data-muted="<?php echo $muted ? 'true' : 'false'; ?>" class="volumeSlider noUi-horizontal noUi-base noUi-round"></div>
<i id="controlMute<?php echo $mid; ?>" class="audio-control-mute material-icons md-22"></i>
</span>
</div>
</div><!-- id="extButton" --></div><!-- id="bottomBlock" -->
</div><!-- id="wrapperMonitor" -->

Expand Down
Loading