mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 07:20:12 +01:00
This allows to use the header as a separator between swimlanes. This will be most useful when we can set the background color of these headers.
51 lines
1.1 KiB
Stylus
51 lines
1.1 KiB
Stylus
@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: column
|
|
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 24px;
|
|
background-color: #ccc;
|
|
|
|
.swimlane-header
|
|
font-size: 14px;
|
|
padding: 5px 5px
|
|
font-weight: bold;
|
|
min-height: 9px;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
text-align: center;
|
|
|
|
.swimlane-header-menu
|
|
position: absolute
|
|
padding: 5px 5px
|
|
|
|
.list-group
|
|
flex-direction: row
|
|
height: 100%
|