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 | 0f4be242c1041cd2f18f0c793cc15bc6e20881d6 (patch) | |
tree | 2db168459a4025b840c211fcdffd8061fb651810 /scss | |
parent | 279c80f505af8e1e135cb3344117f1f94b1a6a23 (diff) | |
download | Ishtar-0f4be242c1041cd2f18f0c793cc15bc6e20881d6.tar.bz2 Ishtar-0f4be242c1041cd2f18f0c793cc15bc6e20881d6.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"; |