Update non-container toolbar items to be set to inline-block when shown
This commit is contained in:
parent
da75e17ff5
commit
dcc206b2b4
|
@ -22,7 +22,7 @@
|
||||||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
||||||
<script src="interface_config.js?v=5"></script>
|
<script src="interface_config.js?v=5"></script>
|
||||||
<script src="libs/app.bundle.js?v=122"></script>
|
<script src="libs/app.bundle.js?v=123"></script>
|
||||||
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
||||||
<link rel="stylesheet" href="css/font.css?v=7"/>
|
<link rel="stylesheet" href="css/font.css?v=7"/>
|
||||||
<link rel="stylesheet" href="css/toastr.css?v=1">
|
<link rel="stylesheet" href="css/toastr.css?v=1">
|
||||||
|
|
|
@ -7490,7 +7490,7 @@ var Toolbar = (function (my) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (show) {
|
if (show) {
|
||||||
$('#toolbar_button_record').css({display: "inline"});
|
$('#toolbar_button_record').css({display: "inline-block"});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('#toolbar_button_record').css({display: "none"});
|
$('#toolbar_button_record').css({display: "none"});
|
||||||
|
@ -7629,7 +7629,7 @@ var toolbarTimeoutObject,
|
||||||
|
|
||||||
function showDesktopSharingButton() {
|
function showDesktopSharingButton() {
|
||||||
if (APP.desktopsharing.isDesktopSharingEnabled()) {
|
if (APP.desktopsharing.isDesktopSharingEnabled()) {
|
||||||
$('#toolbar_button_desktopsharing').css({display: "inline"});
|
$('#toolbar_button_desktopsharing').css({display: "inline-block"});
|
||||||
} else {
|
} else {
|
||||||
$('#toolbar_button_desktopsharing').css({display: "none"});
|
$('#toolbar_button_desktopsharing').css({display: "none"});
|
||||||
}
|
}
|
||||||
|
|
|
@ -546,7 +546,7 @@ var Toolbar = (function (my) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (show) {
|
if (show) {
|
||||||
$('#toolbar_button_record').css({display: "inline"});
|
$('#toolbar_button_record').css({display: "inline-block"});
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('#toolbar_button_record').css({display: "none"});
|
$('#toolbar_button_record').css({display: "none"});
|
||||||
|
|
|
@ -6,7 +6,7 @@ var toolbarTimeoutObject,
|
||||||
|
|
||||||
function showDesktopSharingButton() {
|
function showDesktopSharingButton() {
|
||||||
if (APP.desktopsharing.isDesktopSharingEnabled()) {
|
if (APP.desktopsharing.isDesktopSharingEnabled()) {
|
||||||
$('#toolbar_button_desktopsharing').css({display: "inline"});
|
$('#toolbar_button_desktopsharing').css({display: "inline-block"});
|
||||||
} else {
|
} else {
|
||||||
$('#toolbar_button_desktopsharing').css({display: "none"});
|
$('#toolbar_button_desktopsharing').css({display: "none"});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue