-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
71 lines (57 loc) · 1.14 KB
/
main.css
File metadata and controls
71 lines (57 loc) · 1.14 KB
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
.handsontable .htDimmed {
/* color: yellow; */
/* background: blue; */
/* font-weight: bold; */
color: #363636
}
.ht_master tr td {
font-size: 9pt;
}
.handsontable .nowrap {
white-space: nowrap;
}
.handsontable .headerRow {
font-weight: bold;
font-size: 8pt;
vertical-align: middle;
}
.handsontable .totalRow {
font-weight: bold;
font-size: 9pt;
vertical-align: middle;
}
.handsontable .greyHighlight {
background: #EEEEEE
}
.handsontable .remarks {
text-overflow: ellipsis;
overflow: hidden;
}
.handsontable .select {
background: #e0eaf9 !important;
}
.handsontable .edited {
background: #f8e681 !important;
}
.handsontable .derived {
background: #e8ffd4 !important;
}
/** Bootstrap Tooltip Style **/
/* Change the final opacity to 1 */
.tooltip.in {
opacity: 1!important;
}
/* Set up the tooltip's inner style */
.tooltip-inner {
display: inline-block;
position: relative;
text-align: left;
color: #333;
background-color: white;
border-width: 1px;
border-style: solid;
border-color: black;
border-radius: 2px;
padding: 5px 10px 5px 10px;
filter: drop-shadow(rgba(0, 0, 0, 0.2) 0 2px 3px);
}