-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtablecellsselection.css
More file actions
28 lines (28 loc) · 947 Bytes
/
tablecellsselection.css
File metadata and controls
28 lines (28 loc) · 947 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
.tcs::selection{
background-color: transparent;
}
.tcs td:not(.tcs-selection-enabled) > *,
.tcs th:not(.tcs-selection-enabled) > *,
.tcs td:not(.tcs-selection-enabled),
.tcs th:not(.tcs-selection-enabled){
-webkit-user-select: none !important;
-khtml-user-select: none !important;
-moz-user-select: none !important;
-ms-user-select: none !important;
user-select: none !important;
}
.tcs tr::selection,
.tcs td:not(.tcs-selection-enabled) > *::selection,
.tcs th:not(.tcs-selection-enabled) > *::selection,
.tcs td:not(.tcs-selection-enabled)::selection,
.tcs th:not(.tcs-selection-enabled)::selection,
.tcs br::selection{
background-color: transparent;
}
.tcs tr::-moz-selection, .tcs td:not(.tcs-selection-enabled)::-moz-selection, .tcs th:not(.tcs-selection-enabled)::-moz-selection{
background-color: transparent;
}
.tcs .tcs-selected:not(.sel-from){
border: 1px double #4887C7;
background-color: rgba(51, 122, 183, 0.2) !important;
}