diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-17 13:47:32 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:28 +0200 |
commit | 592ae4b1cefd38257b643f124847cf0ec6c27c3f (patch) | |
tree | 2db168459a4025b840c211fcdffd8061fb651810 /scss | |
parent | ee0ccea439e14c72ac1c633c87d36c3ef4aa0bf6 (diff) | |
download | Ishtar-592ae4b1cefd38257b643f124847cf0ec6c27c3f.tar.bz2 Ishtar-592ae4b1cefd38257b643f124847cf0ec6c27c3f.zip |
Statistics: manage resizing of graphs
Diffstat (limited to 'scss')
-rw-r--r-- | scss/custom.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scss/custom.scss b/scss/custom.scss index 50b25f1a7..769ed62ec 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -879,6 +879,29 @@ ul.compact{ top: 5em; } +/* charts */ + +.resize-handler { + position: absolute; + width: 16px; + height: 16px; + padding: 4px; + bottom: 0; + right: 0; + cursor: nwse-resize; + background: url(../media/images/resize-handler.png) no-repeat; +} + +.chart-wrapper{ + display: block; + position:relative; + height:400px; +} + +.chart-content{ + height: 96%; +} + /* // required @import "bootstrap-src/scss/functions"; |