blob: 1c6644c4667b1dbe8225f72cf8a1296764286f8f (
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
|
.o_purchase_dashboard {
flex: 1 0 100%;
padding: 10px 10px 18px 10px;
background-color: $o-view-background-color;
position: relative;
max-width:100%;
.row {
margin-right: 0;
margin-left: 0;
}
.o_dashboard_action {
cursor: pointer;
}
.table {
margin-bottom: 0;
table-layout: fixed;
border-spacing: 10px 0px;
border-collapse: separate;
font-size: 13px;
> thead, tbody {
& > tr > td {
text-align: center;
width: 25%;
height: 33px;
vertical-align: middle;
border-top: 1px solid $o-view-background-color;
background-color: $o-brand-lightsecondary;
&.o_text{
background-color: $o-view-background-color;
}
> a:hover {
text-decoration: none;
}
&.o_main {
background-color: $o-brand-primary;
&:hover {
background-color: darken($o-brand-primary, 10%);
}
> a {
color: white;
}
}
}
}
}
}
|