blob: 27289bad05e348187fb6365b3ec284bfcb3da327 (
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
|
// Override bootstrap primary color
$theme-colors: (
"primary": #911f93,
"dark": #4f566f,
);
body {
font-family: "Roboto", "open sans", "Helvetica Neue", "Helvetica", "Arial",
sans-serif !important;
font-weight: 300 !important;
}
// Reduce padding of cells in datatables
.table td,
.table th {
padding: 0.4rem !important;
}
.progress-bar {
cursor: default;
}
.dropdown-toggle-wrap {
position: relative;
&::after {
position: absolute;
right: 0.1rem;
bottom: 50%;
}
span {
display: block;
text-overflow: ellipsis;
overflow: hidden;
max-width: 500px;
}
}
|