-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbord.css
More file actions
31 lines (31 loc) · 805 Bytes
/
Copy pathbord.css
File metadata and controls
31 lines (31 loc) · 805 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
td {
height: 20px;
font-family: monospace;
width: 20px;
text-align: center;
}
/*.vertical {
background-color: green;
}
.horizontal {
background-color: green;
}*/
.stip {
background-color: orange;
}
table {
border: black;
}
.noselect, td {
/*
Bedankt, browser compatibility :(
Bron: https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting-using-css
*/
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}