summaryrefslogtreecommitdiff
path: root/assets/css
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-22 13:37:06 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-22 13:37:06 -0500
commita1923d3d7f9276e859d6fd6bee339f0ea00f6544 (patch)
tree84caca943de5d0e016455ea2f6896d0b697fdf05 /assets/css
parentfd28d50597d4f255ba9514e0fc03c8cb67c86f22 (diff)
Add a page to display completed tasks and add the completion date column for tasks
Diffstat (limited to 'assets/css')
-rw-r--r--assets/css/app.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/assets/css/app.css b/assets/css/app.css
index 2e3e6987..fb0bba98 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -402,6 +402,30 @@ nav .active a {
}
/* boards */
+.page-header.board {
+ margin-bottom: 0;
+}
+
+.project-menu li {
+ display: inline;
+ padding-left: 10px;
+ padding-right: 10px;
+ border-right: 1px dotted #ccc;
+}
+
+.project-menu li:last-child {
+ border: none;
+ padding-right: 0;
+}
+
+.project-menu ul {
+ padding-bottom: 5px;
+}
+
+.project-menu {
+ text-align: right;
+}
+
#board th a {
text-decoration: none;
font-size: 150%;
@@ -451,12 +475,15 @@ td div.over {
box-shadow: 0 0 3px #333;
}
+tr td.task a,
div.task a {
color: #000;
text-decoration: none;
font-weight: bold;
}
+tr td.task a:focus,
+tr td.task a:hover,
div.task a:focus,
div.task a:hover {
text-decoration: underline;
@@ -467,36 +494,43 @@ article.task li {
list-style-type: square;
}
+tr td.task-blue,
.task-blue {
background-color: rgb(219, 235, 255);
border-color: rgb(168, 207, 255);
}
+tr td.task-purple,
.task-purple {
background-color: rgb(223, 176, 255);
border-color: rgb(205, 133, 254);
}
+tr td.task-grey,
.task-grey {
background-color: rgb(238, 238, 238);
border-color: rgb(204, 204, 204);
}
+tr td.task-red,
.task-red {
background-color: rgb(255, 187, 187);
border-color: rgb(255, 151, 151);
}
+tr td.task-green,
.task-green {
background-color: rgb(189, 244, 203);
border-color: rgb(74, 227, 113);
}
+tr td.task-yellow,
.task-yellow {
background-color: rgb(245, 247, 196);
border-color: rgb(223, 227, 45);
}
+tr td.task-orange,
.task-orange {
background-color: rgb(255, 215, 179);
border-color: rgb(255, 172, 98);