Fixed: Allow toolbar buttons to be full width on x-small and small breakpoints (#1972)

pull/2101/head
James White 7 years ago committed by Leonardo Galli
parent c4957fffee
commit 1c1723b4f7

@ -80,6 +80,7 @@ module.exports = Marionette.Layout.extend({
var leftSideButtons = {
type : 'default',
storeState : false,
collapse: true,
items : [
{
title : 'Clear Blacklist',

@ -48,6 +48,16 @@
display : inline-block;
}
@media (max-width: @screen-sm-max) {
.x-toolbar-left-1 {
display: block;
}
.btn-group {
display: block;
}
}
.sorting-buttons {
.sorting-title {
display : inline-block;

@ -97,16 +97,17 @@ module.exports = Marionette.Layout.extend({
this.leftSideButtons = {
type : 'default',
storeState : false,
collapse: true,
items : [
{
title : 'Update Library',
title : 'Update library',
icon : 'icon-sonarr-refresh',
command : 'refreshmovie',
successMessage : 'Library was updated!',
errorMessage : 'Library update failed!'
},
{
title : 'Delete Selected',
title : 'Delete selected',
icon : 'icon-radarr-delete-white',
className: 'btn-danger',
callback : this._deleteSelected

@ -41,7 +41,7 @@ module.exports = Marionette.Layout.extend({
leftSideButtons : {
type : 'default',
storeState : false,
collapse : false,
collapse : true,
items : [
{
title : 'Backup',

@ -97,6 +97,7 @@ module.exports = Marionette.Layout.extend({
var leftSideButtons = {
type : 'default',
storeState : false,
collapse: true,
items : [
{
title : 'Search Selected',

Loading…
Cancel
Save