-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhandsontable.removeRow.css
More file actions
45 lines (40 loc) · 902 Bytes
/
handsontable.removeRow.css
File metadata and controls
45 lines (40 loc) · 902 Bytes
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
/**
* Handsontable RemoveRow extension. See `demo/buttons.html` for example usage
*/
.handsontable.htRemoveRow th.htRemoveRow,
.handsontable.htRemoveRow th.htAddRow {
text-align: center;
border-right: 0;
}
.handsontable.htRemoveRow th.htRemoveRow .removebtn {
border-radius: 20px;
padding: 2px 0 0;
color: #222;
cursor: pointer;
font-size: 14px;
font-weight: bold;
line-height: 1;
margin: 1px 0 0 0;
width: 20px;
height: 18px;
}
.handsontable.htRemoveRow th.htAddRow .addbtn {
border-radius: 20px;
padding: 2px 0 0;
color: #222;
cursor: pointer;
font-size: 15px;
font-weight: bold;
line-height: 1;
margin: 2px 0 0 4px;
width: 20px;
height: 18px;
}
.handsontable.htRemoveRow th.htRemoveRow .removebtn:hover,
.handsontable.htRemoveRow th.htAddRow .addbtn:hover {
background-color: #777;
color: #FFF;
}
.handsontable col.rowHeader {
width: 30px;
}