From 32207b7d183064496cbe47319f3fe6f7bd2a70ef Mon Sep 17 00:00:00 2001 From: oterral Date: Thu, 6 Mar 2014 13:52:01 +0100 Subject: [PATCH] Fix feedback modal dialog when screen width equals to 768px --- src/style/app.less | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/style/app.less b/src/style/app.less index 176e6370ba..55a9cd3be7 100644 --- a/src/style/app.less +++ b/src/style/app.less @@ -555,23 +555,20 @@ a .ga-icon-separator { } .modal-dialog { - padding: 0px; display: block; top: unit(@header-height, px); + left: 2%; + right: 2%; + margin: auto; + max-width: 600px; max-height: none; - - &.ga-draggable { - margin-left: -300px; - - @media (max-width: @screen-tablet) { - top: 1%; - padding: 0px; - margin: 0px; - } - } + padding: 0px; - + @media (max-width: @screen-tablet) { + top: unit(@small-header-height, px); + } } + .modal-backdrop { z-index: 1240; }