summaryrefslogtreecommitdiff
path: root/assets/sass
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2018-06-01 15:58:17 -0700
committerFrédéric Guillot <fred@kanboard.net>2018-06-01 15:58:17 -0700
commit912cf378d730b3df8d285ba765711d9c456bdea0 (patch)
treecc26710f2e1e4e9eb958b873a2fb537cf3a389cb /assets/sass
parentcd6da138973f6bfe7c71846ff6cc1d6fb97c4813 (diff)
Add checkboxes in list view to move tasks to another column at once
Diffstat (limited to 'assets/sass')
-rw-r--r--assets/sass/_list_items.sass11
-rw-r--r--assets/sass/app.sass3
2 files changed, 13 insertions, 1 deletions
diff --git a/assets/sass/_list_items.sass b/assets/sass/_list_items.sass
new file mode 100644
index 00000000..69b641c8
--- /dev/null
+++ b/assets/sass/_list_items.sass
@@ -0,0 +1,11 @@
+.list-item-links, .list-item-actions
+ display: inline-block
+ float: left
+ margin-left: 10px
+
+.list-item-links
+ a
+ margin: 0
+
+.list-item-action-hidden
+ display: none
diff --git a/assets/sass/app.sass b/assets/sass/app.sass
index b4cd10a8..17956d1e 100644
--- a/assets/sass/app.sass
+++ b/assets/sass/app.sass
@@ -51,4 +51,5 @@
@import panel
@import activity_stream
@import user_mentions
-@import image_slideshow \ No newline at end of file
+@import image_slideshow
+@import list_items