summaryrefslogtreecommitdiff
path: root/assets/css/src
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/src')
-rw-r--r--assets/css/src/filters.css6
-rw-r--r--assets/css/src/gantt.css130
-rw-r--r--assets/css/src/header.css1
-rw-r--r--assets/css/src/tooltip.css2
4 files changed, 138 insertions, 1 deletions
diff --git a/assets/css/src/filters.css b/assets/css/src/filters.css
index 095313d2..7038e135 100644
--- a/assets/css/src/filters.css
+++ b/assets/css/src/filters.css
@@ -1,3 +1,8 @@
+.toolbar {
+ font-size: 0.9em;
+ padding-top: 5px;
+}
+
.views {
display: inline-block;
margin-right: 10px;
@@ -9,6 +14,7 @@
padding-right: 12px;
padding-top: 5px;
padding-bottom: 5px;
+ display: inline;
}
.views li.active a {
diff --git a/assets/css/src/gantt.css b/assets/css/src/gantt.css
new file mode 100644
index 00000000..85f9018f
--- /dev/null
+++ b/assets/css/src/gantt.css
@@ -0,0 +1,130 @@
+/* Based on jQuery.ganttView v.0.8.0 Copyright (c) 2010 JC Grubbs - jc.grubbs@devmynd.com - MIT License */
+div.ganttview-hzheader-month,
+div.ganttview-hzheader-day,
+div.ganttview-vtheader,
+div.ganttview-vtheader-item-name,
+div.ganttview-vtheader-series,
+div.ganttview-grid,
+div.ganttview-grid-row-cell {
+ float: left;
+}
+
+div.ganttview-hzheader-month,
+div.ganttview-hzheader-day {
+ text-align: center;
+}
+
+div.ganttview-grid-row-cell.last,
+div.ganttview-hzheader-day.last,
+div.ganttview-hzheader-month.last {
+ border-right: none;
+}
+
+div.ganttview {
+ border: 1px solid #999;
+}
+
+/* Horizontal Header */
+div.ganttview-hzheader-month {
+ width: 60px;
+ height: 20px;
+ border-right: 1px solid #d0d0d0;
+ line-height: 20px;
+}
+
+div.ganttview-hzheader-day {
+ width: 20px;
+ height: 20px;
+ border-right: 1px solid #f0f0f0;
+ border-top: 1px solid #d0d0d0;
+ line-height: 20px;
+ color: #777;
+}
+
+/* Vertical Header */
+div.ganttview-vtheader {
+ margin-top: 41px;
+ width: 400px;
+ overflow: hidden;
+ background-color: #fff;
+}
+
+div.ganttview-vtheader-item {
+ color: #666;
+}
+
+div.ganttview-vtheader-series-name {
+ width: 400px;
+ height: 31px;
+ line-height: 31px;
+ padding-left: 3px;
+ border-top: 1px solid #d0d0d0;
+ font-size: 0.9em;
+ text-overflow: ellipsis;
+ overflow: auto;
+ white-space: nowrap;
+}
+
+div.ganttview-vtheader-series-name a {
+ color: #666;
+ text-decoration: none;
+}
+
+div.ganttview-vtheader-series-name a:hover {
+ text-decoration: underline;
+}
+
+/* Slider */
+div.ganttview-slide-container {
+ overflow: auto;
+ border-left: 1px solid #999;
+}
+
+/* Grid */
+div.ganttview-grid-row-cell {
+ width: 20px;
+ height: 31px;
+ border-right: 1px solid #f0f0f0;
+ border-top: 1px solid #f0f0f0;
+}
+
+div.ganttview-grid-row-cell.ganttview-weekend {
+ background-color: #fafafa;
+}
+
+/* Blocks */
+div.ganttview-blocks {
+ margin-top: 40px;
+}
+
+div.ganttview-block-container {
+ height: 28px;
+ padding-top: 4px;
+}
+
+div.ganttview-block {
+ position: relative;
+ height: 25px;
+ background-color: #E5ECF9;
+ border: 1px solid #c0c0c0;
+ border-radius: 3px;
+ cursor: move;
+}
+
+div.ganttview-block-not-defined {
+ border-color: #000;
+ background-color: #000;
+}
+
+div.ganttview-block-text {
+ position: absolute;
+ height: 12px;
+ font-size: 0.7em;
+ color: #999;
+ padding: 2px 3px;
+}
+
+/* Adjustments for jQuery UI Styling */
+div.ganttview-block div.ui-resizable-handle.ui-resizable-s {
+ bottom: -0;
+}
diff --git a/assets/css/src/header.css b/assets/css/src/header.css
index 742c2cc9..e3eb5568 100644
--- a/assets/css/src/header.css
+++ b/assets/css/src/header.css
@@ -89,6 +89,7 @@ nav .active a {
.page-header ul {
text-align: left;
margin-top: 5px;
+ display: inline-block;
}
.page-header li {
diff --git a/assets/css/src/tooltip.css b/assets/css/src/tooltip.css
index dca31813..f74ac09a 100644
--- a/assets/css/src/tooltip.css
+++ b/assets/css/src/tooltip.css
@@ -8,7 +8,7 @@
div.ui-tooltip {
min-width: 200px;
max-width: 600px;
- font-size: 0.95em;
+ font-size: 0.85em;
}
.tooltip-arrow {