summaryrefslogtreecommitdiffstats
path: root/client/components/swimlanes/swimlanes.styl
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/swimlanes/swimlanes.styl')
-rw-r--r--client/components/swimlanes/swimlanes.styl54
1 files changed, 54 insertions, 0 deletions
diff --git a/client/components/swimlanes/swimlanes.styl b/client/components/swimlanes/swimlanes.styl
new file mode 100644
index 00000000..dce298b0
--- /dev/null
+++ b/client/components/swimlanes/swimlanes.styl
@@ -0,0 +1,54 @@
+@import 'nib'
+
+.swimlane
+ // Even if this background color is the same as the body we can't leave it
+ // transparent, because that won't work during a swimlane drag.
+ background: darken(white, 13%)
+ display: flex
+ flex-direction: row
+ overflow: 0;
+ max-height: 100%
+
+ &.placeholder
+ background-color: rgba(0, 0, 0, .2)
+ border-color: transparent
+ box-shadow: none
+ height: 100px
+
+ &.ui-sortable-helper
+ box-shadow: -2px 2px 8px rgba(0, 0, 0, .3),
+ 0 0 1px rgba(0, 0, 0, .5)
+ transform: rotate(2deg)
+ cursor: grabbing
+
+ .swimlane-header.ui-sortable-handle
+ cursor: grabbing
+
+ .swimlane-header-wrap
+ display: flex;
+ flex-direction: row;
+ flex: 0 0 50px;
+ padding-bottom: 30px;
+ border-bottom: 1px solid #CCC
+
+ .swimlane-header
+ writing-mode: vertical-rl;
+ transform: rotate(180deg);
+ font-size: 14px;
+ line-height: 50px;
+ margin-top: 50px;
+ font-weight: bold;
+ min-height: 9px;
+ width: 50px;
+ overflow: hidden;
+ -o-text-overflow: ellipsis;
+ text-overflow: ellipsis;
+ word-wrap: break-word;
+ text-align: center;
+
+ .swimlane-header-menu
+ position: absolute
+ padding: 20px 20px
+
+.list-group
+ height: 100%