diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-14 17:47:52 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-14 17:47:52 -0500 |
commit | 7270214374ee526e493a5c28c2f35f0d16c47533 (patch) | |
tree | f2cf1b9ccb8cb8d000bfaeaabf6b17ee32d39370 | |
parent | 6946ef4b3cb205c476cf1e53bdb9a00d69dc40d1 (diff) |
CSS fix for popover on small screen (pull-request #473)
-rw-r--r-- | assets/css/app.css | 6 | ||||
-rw-r--r-- | assets/css/popover.css | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/assets/css/app.css b/assets/css/app.css index 2ce277c7..c79e5f48 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -1261,17 +1261,19 @@ tr td.task-orange, width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); + overflow: auto; } #popover-content { - position: fixed; + position: absolute; width: 70%; margin: 0 0 0 -35%; left: 50%; top: 5%; padding: 15px; background: #fff; -}/* confirmation box */ +} +/* confirmation box */ .confirm { max-width: 700px; font-size: 1.1em; diff --git a/assets/css/popover.css b/assets/css/popover.css index 74d472ae..dda8aaac 100644 --- a/assets/css/popover.css +++ b/assets/css/popover.css @@ -6,14 +6,15 @@ width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); + overflow: auto; } #popover-content { - position: fixed; + position: absolute; width: 70%; margin: 0 0 0 -35%; left: 50%; top: 5%; padding: 15px; background: #fff; -}
\ No newline at end of file +} |