-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom.css
102 lines (86 loc) · 1.85 KB
/
custom.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* teal.modules.hermes custom css */
.my-5 {
margin: 1.25rem 0;
}
.pretty {
margin-right: 0;
}
.list-genes {
padding: 0;
margin: 0 0 0 0.5rem;
background: transparent !important;
outline: none !important;
box-shadow: none !important;
border: 0;
}
.custom-select-input .bootstrap-select .dropdown-menu {
min-width: fit-content;
}
.selectize-input {
max-height: 102px;
overflow-y: auto;
}
div.shiny-radiomatrix input[type="radio"] {
display: none;
}
div.shiny-radiomatrix .radio-parent {
display: block;
position: relative;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
top: -10px;
left: -13px;
}
/* Hide the browser's default radio button */
div.shiny-radiomatrix .radio-parent input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
/* Create a custom radio button */
div.shiny-radiomatrix .checkmark {
position: absolute;
height: 25px;
width: 25px;
background-color: #eee;
z-index: 25;
transition: 0.5s all ease-in-out;
}
div.shiny-radiomatrix .radio-parent:hover input ~ .checkmark {
background-color: #2195f34b;
}
div.shiny-radiomatrix .radio-parent input:checked ~ .checkmark {
background-color: #2196f3;
}
div.shiny-radiomatrix table {
border-spacing: 0;
border-collapse: collapse;
overflow: hidden;
}
div.shiny-radiomatrix td,
div.shiny-radiomatrix th {
padding: 10px;
position: relative;
transition: 0.5s all ease-in-out;
}
div.shiny-radiomatrix tr:hover {
background-color: rgba(151, 151, 151, 0.1);
}
div.shiny-radiomatrix td:hover::before,
div.shiny-radiomatrix th:hover::before {
background-color: rgba(151, 151, 151, 0.1);
content: "\00a0";
height: 1000vh;
left: 0;
position: absolute;
top: -500vh;
width: 100%;
}
.dataTable-container table td{
white-space: unset !important;
}