diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-03-05 22:27:48 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-03-05 22:27:48 -0500 |
commit | 544f9924241f9b2caaf83ead203161ea41e5f1cf (patch) | |
tree | dcb5ba8a202fee673e395184795f570fd7c905ae /assets | |
parent | 1e994f34486da72662ff39f1c3e130e4480e30ab (diff) |
Add a 'due date' field and display the number of comments on the board
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/app.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/assets/css/app.css b/assets/css/app.css index c99a1eac..93321c2e 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -210,6 +210,10 @@ textarea.form-error { margin-right: 15px; } +input.form-date { + width: 150px; +} + /* alerts */ .alert { padding: 8px 35px 8px 14px; @@ -462,6 +466,21 @@ nav .active a { font-style: italic; } +.task-date { + font-weight: bold; + color: #D90000; +} + +.task-comment-counter { + position: absolute; + bottom: 0; + right: 5px; +} + +.task-footer { + margin-top: 10px; +} + .task { border: 1px solid #000; padding: 5px; |