diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-18 12:17:48 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-18 12:18:11 +0200 |
commit | 6f51091dc74cfeec90356d96769d1d156dc7ed2d (patch) | |
tree | 75582a11361a619f036b6e3a32f7b31f0ece19a1 /scss/custom.scss | |
parent | f0d7ebe6ea8da57d66dbc37abb5901d14518166f (diff) | |
download | Ishtar-6f51091dc74cfeec90356d96769d1d156dc7ed2d.tar.bz2 Ishtar-6f51091dc74cfeec90356d96769d1d156dc7ed2d.zip |
CSS: full width for large screen
Diffstat (limited to 'scss/custom.scss')
-rw-r--r-- | scss/custom.scss | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/scss/custom.scss b/scss/custom.scss index 6417e1e96..ff595219d 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -219,7 +219,7 @@ table.dataTable { } .ishtar-gallery-wrapper .ishtar-gallery-info, -.container .dataTables_wrapper .dataTables_info { +.container-fluid .dataTables_wrapper .dataTables_info { clear: none; font-size: 0.8em; padding: 0.5em 2em; @@ -445,8 +445,7 @@ textarea { margin-top: 1em; } -.container{ - margin-top: 1em; +#main-container{ margin-bottom: 16em; } @@ -639,6 +638,11 @@ ul.compact{ display: none; } +.search-vector{ + width: 100%; + padding-bottom: 1em; +} + .search-vector .form-group{ margin-bottom: 0; } @@ -827,7 +831,15 @@ ul.compact{ .ishtar-table-map{ width: 100%; - height: 50%; + height: 200px; + margin-bottom: 150px; +} + +@media screen and (min-height: 640px){ + .ishtar-table-map{ + height: calc(100vh - 440px); + margin-bottom: 0; + } } .sheet .ishtar-table-map{ @@ -895,7 +907,8 @@ ul.compact{ .chart-wrapper{ display: block; position:relative; - height:400px; + height: 400px; + width: calc(100% - 100px); } .chart-content{ |