summaryrefslogtreecommitdiff
path: root/assets/css/src/board.css
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-01-25 13:09:54 -0500
committerFrederic Guillot <fred@kanboard.net>2015-01-25 13:09:54 -0500
commit746a3f8d235c073abba401f25ca9a379264d2b16 (patch)
treecb234239027f227e03001ef50963f28aa96e512e /assets/css/src/board.css
parent0812ceedde2f89a8e4b391e58d6463f832ecec8e (diff)
Move assets to seperate subfolders
Diffstat (limited to 'assets/css/src/board.css')
-rw-r--r--assets/css/src/board.css68
1 files changed, 68 insertions, 0 deletions
diff --git a/assets/css/src/board.css b/assets/css/src/board.css
new file mode 100644
index 00000000..37dba974
--- /dev/null
+++ b/assets/css/src/board.css
@@ -0,0 +1,68 @@
+/* board filters */
+a.filter-on {
+ font-weight: bold;
+ color: #333;
+}
+
+/* public board */
+.public-board {
+ margin-top: 5px;
+}
+
+.public-task {
+ max-width: 700px;
+ margin: 0 auto;
+ margin-top: 5px;
+}
+
+/* board table */
+#board {
+ table-layout: fixed;
+}
+
+#board th a {
+ text-decoration: none;
+ color: #3366CC;
+ font-size: 150%;
+}
+
+#board td {
+ vertical-align: top;
+}
+
+#board td.task-limit-warning {
+ background-color: #DF5353;
+}
+
+.board-add-icon {
+ float: left;
+ padding: 0 5px;
+}
+
+.board-add-icon a {
+ line-height: 70%;
+}
+
+.task-count {
+ color: #999;
+ font-weight: normal;
+}
+
+/* drag and drop */
+.draggable-item {
+ cursor: pointer;
+ user-select: none;
+}
+
+.draggable-placeholder {
+ border: 2px dashed #000;
+ background: #fafafa;
+ height: 70px;
+ margin-bottom: 10px;
+}
+
+/* swimlanes */
+th.board-swimlane-title {
+ vertical-align: top;
+ text-align: right;
+} \ No newline at end of file