summaryrefslogtreecommitdiff
path: root/assets/css/src/board.css
blob: cbe67c739906a3f8536d87b1bd4c3fb2200d40c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* public board */
.public-board {
    margin-top: 5px;
}

.public-task {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 5px;
}

/* board table */
#board-container {
    overflow-x: auto;
}

#board {
    table-layout: fixed;
    margin-bottom: 0;
}

#board th.board-column-header {
    width: 240px;
}

#board td {
    vertical-align: top;
}

/* compact mode/horizontal scrolling */
.board-container-compact {
    overflow-x: initial;
}

@media all and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .board-container-compact #board {
        table-layout: auto;
    }
}

#board th.board-column-header.board-column-compact {
    width: initial; /* Do not force the width of the columns in compact view mode */
}

/* show/hide column */
.board-column-collapsed {
    display: none;
}

td.board-column-task-collapsed {
    font-weight: bold;
    background-color: #fbfbfb;
}

#board th.board-column-header-collapsed {
    width: 28px;
    min-width: 28px;
    text-align: center;
    overflow: hidden;
}

.board-rotation-wrapper {
    position: relative;
    padding: 8px 4px;
    min-height: 150px;
    overflow: hidden;
}

.board-rotation {
    white-space: nowrap;
    -webkit-backface-visibility: hidden;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

/* column header */
.board-column-title {
    cursor: pointer;
}

.board-add-icon {
    float: left;
    padding: 0 5px;
}

.board-add-icon a {
    text-decoration: none;
    color: #3366CC;
    font-size: 150%;
    line-height: 70%;
}

.board-add-icon a:focus,
.board-add-icon a:hover {
    text-decoration: none;
    color: red;
}

.board-column-header-task-count {
    color: #999;
    font-weight: normal;
}

th.board-column-header-collapsed .board-column-header-task-count {
    font-size: 0.85em;
}

/* swimlanes */
a.board-swimlane-toggle {
    font-size: 0.95em;
    text-decoration: none;
}

a.board-swimlane-toggle:hover,
a.board-swimlane-toggle:focus {
    color: #000;
    text-decoration: none;
    border: none;
}

/* board task list */
.board-task-list {
    overflow: auto;
    min-height: 60px;
}

.board-task-list-limit {
    background-color: #DF5353;
}

/* drag and drop */
.draggable-item {
    cursor: pointer;
    user-select: none;
}

.draggable-placeholder {
    border: 2px dashed #000;
    background: #fafafa;
    height: 70px;
    margin-bottom: 10px;
}

div.draggable-item-selected {
    border: 1px solid #000;
}

.task-board-sort-handle {
    float: left;
    padding-right: 5px;
}