Fix responsiveness bugs
This commit is contained in:
parent
c2d1b788c5
commit
17c2ec2fd4
|
@ -43,8 +43,8 @@ if (isset($this->obj)) {
|
|||
<div class='btn-group'>
|
||||
<button class="btn" title='<?php echo _("Shuffle playlist") ?>' type="button" id="playlist_shuffle_button"><?php echo _("Shuffle") ?></button>
|
||||
</div>
|
||||
<div class='btn-group'>
|
||||
<a href="#" id="spl_crossfade" class="btn crossfade-main-button" style="display:<?php echo $count > 0 ?"inherit;":"none;"?>">
|
||||
<div class='btn-group' style="display:<?php echo $count > 0 ?"inherit;":"none;"?>">
|
||||
<a href="#" id="spl_crossfade" class="btn crossfade-main-button">
|
||||
<i class='crossfade-main-icon'></i><span class="ui-button-text"><?php echo _("Playlist crossfade") ?></span>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -51,8 +51,8 @@ if (isset($this->obj)) {
|
|||
<div class='btn-group'>
|
||||
<?php echo $this->form->getElement('shuffle_button');?>
|
||||
</div>
|
||||
<div class='btn-group'>
|
||||
<a href="#" id="spl_crossfade" class="btn crossfade-main-button" style="display:<?php echo ($this->obj->isStatic() && $count > 0) ?"inherit;":"none;"?>">
|
||||
<div class='btn-group' style="display:<?php echo ($this->obj->isStatic() && $count > 0) ?"inherit;":"none;"?>">
|
||||
<a href="#" id="spl_crossfade" class="btn crossfade-main-button">
|
||||
<i class='crossfade-main-icon'></i><span class="ui-button-text"><?php echo _("Playlist crossfade") ?></span>
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -23,13 +23,13 @@
|
|||
|
||||
@media screen and (max-width: 1600px) {
|
||||
#library_display_wrapper button:not(.dropdown-toggle):not(.btn-new) > span,
|
||||
#show_builder button:not(.dropdown-toggle):not(.btn-new) > span,
|
||||
#show_builder #sb_submit > span {
|
||||
#show_builder_table_wrapper button:not(.dropdown-toggle):not(.btn-new) > span,
|
||||
#show_builder_table_wrapper #sb_submit > span {
|
||||
display: none;
|
||||
}
|
||||
#library_display_wrapper button:not(.dropdown-toggle):not(.btn-new) > i,
|
||||
#show_builder button:not(.dropdown-toggle):not(.btn-new) > i,
|
||||
#show_builder #sb_submit > i {
|
||||
#show_builder_table_wrapper button:not(.dropdown-toggle):not(.btn-new) > i,
|
||||
#show_builder_table_wrapper #sb_submit > i {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue