summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorFreeyorp <TheFreeYorp@NOSPAM.G.m.a.i.l.replace>2013-03-29 14:35:28 +1300
committerFreeyorp <TheFreeYorp@NOSPAM.G.m.a.i.l.replace>2013-03-29 15:03:38 +1300
commitd5d8446eb5d5dee61fd3348120c1219ce24a44ad (patch)
tree17ae33a5bd17f60aff44367d193ad9dd6ec18b9a /css
parent421ddc1274be0fb44b8dfe923bf2af24e11a0824 (diff)
downloadmanavis-d5d8446eb5d5dee61fd3348120c1219ce24a44ad.tar.gz
manavis-d5d8446eb5d5dee61fd3348120c1219ce24a44ad.tar.bz2
manavis-d5d8446eb5d5dee61fd3348120c1219ce24a44ad.tar.xz
manavis-d5d8446eb5d5dee61fd3348120c1219ce24a44ad.zip
Add initial simple charting for GAINXP records
Diffstat (limited to 'css')
-rw-r--r--css/style.css32
1 files changed, 25 insertions, 7 deletions
diff --git a/css/style.css b/css/style.css
index 4e1bdaa..70482a7 100644
--- a/css/style.css
+++ b/css/style.css
@@ -17,13 +17,17 @@ body {
min-height: 40px;
}
+#body {
+ min-width: 1350px;
+}
+
#status {
width: 100%;
font-size: smaller;
}
#side {
- width: 300px;
+ width: 650px;
font-size: smaller;
}
@@ -31,11 +35,18 @@ body {
#loadinfo {
width: 647px;
- height: 400px;
- border: 3px grey solid;
+/* height: 400px; */
+ border: 1px grey solid;
margin: auto;
}
+/* Hide charts while loadinfo is shown */
+
+.chart-root {
+ display: none;
+ opacity: 0;
+}
+
/* Loading bars */
.progressbar {
margin: 10px 0;
@@ -44,10 +55,6 @@ body {
font-size: 14px;
clear: both;
opacity: 0;
- /* TODO: Use d3 for transitions instead */
- -moz-transition: opacity 1s linear;
- -o-transition: opacity 1s linear;
- -webkit-transition: opacity 1s linear;
}
.progressbar.loading {
@@ -60,3 +67,14 @@ body {
width: 0;
white-space: nowrap;
}
+
+/* Utility */
+.fader {
+ -moz-transition: opacity 1s linear;
+ -o-transition: opacity 1s linear;
+ -webkit-transition: opacity 1s linear;
+}
+
+.help {
+ cursor: help;
+}