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
path: root/skins
diff options
context:
space:
mode:
authorjohndoh <roundcube@tehinterweb.co.uk>2019-09-11 10:07:03 +0300
committerAleksander Machniak <alec@alec.pl>2019-09-11 10:07:03 +0300
commit4d6654703413b9997360e04356fff40a0edbaff2 (patch)
tree08f287d99a8b3f49929b1605983b0ee61e439fac /skins
parentb10a0dbb7eaa3c8cf8352dd3125b25818cd811d8 (diff)
Elastic: Fix border radius in popovers on small screens (#6911)
Diffstat (limited to 'skins')
-rw-r--r--skins/elastic/styles/widgets/dialogs.less14
1 files changed, 8 insertions, 6 deletions
diff --git a/skins/elastic/styles/widgets/dialogs.less b/skins/elastic/styles/widgets/dialogs.less
index a33549dcd..088be827b 100644
--- a/skins/elastic/styles/widgets/dialogs.less
+++ b/skins/elastic/styles/widgets/dialogs.less
@@ -55,13 +55,15 @@
display: none;
}
- .listing {
- li:first-child {
- border-radius: .25rem .25rem 0 0;
- }
+ @media screen and (min-width: (@screen-width-small + 1px)) {
+ .listing {
+ li:first-child {
+ border-radius: .25rem .25rem 0 0;
+ }
- li:last-child {
- border-radius: 0 0 .25rem .25rem;
+ li:last-child {
+ border-radius: 0 0 .25rem .25rem;
+ }
}
}
}