blob: 73539824e82129b2bc8236c668ec3cf4ebf55800 (
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
|
.o_kanban_view.o_kanban_dashboard.o_project_kanban {
.o_project_kanban_boxes {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
.o_project_kanban_box {
position: relative;
text-align: center;
padding: 0 0 0 0;
margin: 0 5px;
.o_value {
font-weight: 800;
}
> div {
font-weight: 500;
button.o_needaction {
font-size: small;
font-weight: 400;
margin-left: 4px;
@include o-hover-opacity(0.5, 1);
&:before {
content: "/ ";
}
&:after {
content: "\f086";
font: normal normal normal 14px/1 FontAwesome;
}
}
}
}
}
}
.o_dow_widget {
th {
padding: 10px 10px 0 10px;
}
.o_dow_days {
td {
text-align: center;
vertical-align: middle;
}
}
}
|