diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-05 18:58:11 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-04-24 19:38:56 +0200 |
commit | 950cb59825ae15830b27b4a1a996eaf77b1d04cc (patch) | |
tree | 3f7de20ad3e28963b6b82a7c48195be4baebca36 /scss | |
parent | c68a0bb8412f261b535d8cebb4b533cdc7b148e7 (diff) | |
download | Ishtar-950cb59825ae15830b27b4a1a996eaf77b1d04cc.tar.bz2 Ishtar-950cb59825ae15830b27b4a1a996eaf77b1d04cc.zip |
Map: manage complete list of items
Diffstat (limited to 'scss')
-rw-r--r-- | scss/custom.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scss/custom.scss b/scss/custom.scss index 0406858cf..c577c7def 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -668,6 +668,28 @@ ul.compact{ width: 100%; } +.simple-window{ + position: absolute; + left: 50%; + display: none; +} + +.simple-window-content{ + position: relative; + left: -50%; + top: -470px; + width: 350px; + background-color: #fff; + border: 1px solid $gray-500; + border-radius: 0.3rem; +} + +.simple-window .modal-body{ + max-height: 300px; + overflow-x: hidden; + overflow-y: auto; +} + .ishtar-table-map{ width: 100%; height: 50%; @@ -681,8 +703,10 @@ ul.compact{ border-style: solid; border-width: 1px; border-color: $gray-500; + display: none; } +.simple-window-content ul, .ishtar-map-popup ul { margin: 0; padding: 0; |