Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <machniak@kolabsys.com>2019-03-25 14:55:12 +0300
committerAleksander Machniak <machniak@kolabsys.com>2019-03-25 14:55:12 +0300
commitb86472badf8b945dfce3ef38278740596f24ca08 (patch)
tree131967bf137db266c401b1d3bcf3367b5fd0815c /skins/elastic/styles
parent1a68fe25c0ca7abf62108418d3c56ba835006c3e (diff)
Elastic: Fix scrollbar issue in jQuery-UI dialogs
Bootstrap's box-sizing:border-box on everything does not work nice with jQuery-UI.
Diffstat (limited to 'skins/elastic/styles')
-rw-r--r--skins/elastic/styles/widgets/jqueryui.less9
1 files changed, 6 insertions, 3 deletions
diff --git a/skins/elastic/styles/widgets/jqueryui.less b/skins/elastic/styles/widgets/jqueryui.less
index 51fcd343e..51a275257 100644
--- a/skins/elastic/styles/widgets/jqueryui.less
+++ b/skins/elastic/styles/widgets/jqueryui.less
@@ -96,9 +96,6 @@
}
.ui-dialog-content {
- // fixes resize issue e.g. in qr-code dialog
- box-sizing: initial;
-
& > .popupmenu {
display: block !important;
}
@@ -157,6 +154,12 @@
}
}
+// Fix scrollbar/resize issue e.g. in qr-code dialog
+.ui-dialog,
+.ui-dialog-content {
+ box-sizing: initial;
+}
+
// Overwriting this icon generally prevents from loading bigger images sprite from jQuery-UI
.ui-widget-content .ui-icon.ui-resizable-se {
background: @icon-resize-corner;