summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorFrédéric Guillot <contact@fredericguillot.com>2014-02-24 21:22:32 -0500
committerFrédéric Guillot <contact@fredericguillot.com>2014-02-24 21:22:32 -0500
commit44fc9c081fb7561b7b02115f9b2a6eb0349d2201 (patch)
tree314249cc9a8dfc23ecb2d1bcc089362418698a96 /assets
parent565290fbf9e3727655921a969550167aa59a6e24 (diff)
Add story points for tasks
Diffstat (limited to 'assets')
-rw-r--r--assets/css/app.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/assets/css/app.css b/assets/css/app.css
index 36411fe0..123ad305 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -115,6 +115,7 @@ input[type="checkbox"] {
border: 1px solid #ccc;
}
+input[type="number"],
input[type="date"],
input[type="email"],
input[type="tel"],
@@ -130,6 +131,7 @@ input[type="text"] {
appearance: none;
}
+input[type="number"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
@@ -142,6 +144,10 @@ textarea:focus {
box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
}
+input[type="number"] {
+ width: 50px;
+}
+
textarea {
border: 1px solid #ccc;
padding: 3px;
@@ -494,11 +500,35 @@ div.task a:hover {
text-decoration: underline;
}
+#infos,
+div.task {
+ position: relative;
+}
+
+.task-score {
+ font-weight: bold;
+ position: absolute;
+}
+
+div.task .task-score {
+ font-size: 1.5em;
+ right: 5px;
+ top: 0;
+}
+
+/* task view */
article.task li {
margin-left: 20px;
list-style-type: square;
}
+article .task-score {
+ font-size: 1.9em;
+ right: 10px;
+ top: 5px;
+}
+
+/* task colors */
tr td.task-blue,
.task-blue {
background-color: rgb(219, 235, 255);