@trackunit/css-core 1.3.164 → 1.3.166
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/lib/core.css
CHANGED
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
@import "react-image-gallery/styles/css/image-gallery.css";
|
|
10
10
|
|
|
11
11
|
@import "./theme/custom-properties.css";
|
|
12
|
-
|
|
12
|
+
|
|
13
|
+
@import "./react-calendar.css";
|
|
14
|
+
|
|
13
15
|
@import "./fonts.css";
|
|
14
16
|
|
|
15
17
|
/* Override to fix type="button" in safari */
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
.react-calendar {
|
|
2
|
+
width: 350px;
|
|
3
|
+
max-width: 100%;
|
|
4
|
+
background: white;
|
|
5
|
+
line-height: 1.125em;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.react-calendar--doubleView {
|
|
9
|
+
width: 700px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.react-calendar--doubleView .react-calendar__viewContainer {
|
|
13
|
+
display: flex;
|
|
14
|
+
margin: -0.5em;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.react-calendar--doubleView .react-calendar__viewContainer > * {
|
|
18
|
+
width: 50%;
|
|
19
|
+
margin: 0.5em;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.react-calendar,
|
|
23
|
+
.react-calendar *,
|
|
24
|
+
.react-calendar *:before,
|
|
25
|
+
.react-calendar *:after {
|
|
26
|
+
-moz-box-sizing: border-box;
|
|
27
|
+
-webkit-box-sizing: border-box;
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.react-calendar button {
|
|
32
|
+
margin: 0;
|
|
33
|
+
border: 0;
|
|
34
|
+
outline: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.react-calendar button:enabled:hover {
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.react-calendar__navigation {
|
|
42
|
+
display: flex;
|
|
43
|
+
height: 44px;
|
|
44
|
+
margin-bottom: 1em;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.react-calendar__navigation button {
|
|
48
|
+
min-width: 44px;
|
|
49
|
+
background: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.react-calendar__navigation button:disabled {
|
|
53
|
+
background-color: #f0f0f0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.react-calendar__navigation button:enabled:hover,
|
|
57
|
+
.react-calendar__navigation button:enabled:focus {
|
|
58
|
+
background-color: #e6e6e6;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.react-calendar__month-view__weekdays {
|
|
62
|
+
text-align: center;
|
|
63
|
+
font: inherit;
|
|
64
|
+
font-size: 0.75em;
|
|
65
|
+
color: #94a3b8;
|
|
66
|
+
font-weight: bold;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.react-calendar__viewContainer abbr:where([title]) {
|
|
70
|
+
text-decoration: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.react-calendar__month-view__weekdays__weekday {
|
|
74
|
+
padding: 0.5em;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.react-calendar__month-view__weekNumbers .react-calendar__tile {
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
font: inherit;
|
|
82
|
+
font-size: 0.75em;
|
|
83
|
+
font-weight: 600;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.react-calendar__month-view__days {
|
|
87
|
+
row-gap: 8px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.react-calendar__month-view__days__day--weekend {
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.react-calendar__month-view__days__day--neighboringMonth,
|
|
94
|
+
.react-calendar__decade-view__years__year--neighboringDecade,
|
|
95
|
+
.react-calendar__century-view__decades__decade--neighboringCentury {
|
|
96
|
+
color: #757575;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.react-calendar__year-view .react-calendar__tile,
|
|
100
|
+
.react-calendar__decade-view .react-calendar__tile,
|
|
101
|
+
.react-calendar__century-view .react-calendar__tile {
|
|
102
|
+
padding: 2em 0.5em;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.react-calendar__tile {
|
|
106
|
+
max-width: 100%;
|
|
107
|
+
padding: 10px 6.6667px;
|
|
108
|
+
background: none;
|
|
109
|
+
text-align: center;
|
|
110
|
+
font: inherit;
|
|
111
|
+
font-size: 0.833em;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.react-calendar__tile:disabled {
|
|
115
|
+
background-color: #f0f0f0;
|
|
116
|
+
color: #ababab;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.react-calendar__month-view__days__day--neighboringMonth:disabled,
|
|
120
|
+
.react-calendar__decade-view__years__year--neighboringDecade:disabled,
|
|
121
|
+
.react-calendar__century-view__decades__decade--neighboringCentury:disabled {
|
|
122
|
+
color: #cdcdcd;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.react-calendar__tile:enabled:hover,
|
|
126
|
+
.react-calendar__tile:enabled:focus {
|
|
127
|
+
background-color: #e6e6e6;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.react-calendar__tile--now:not(.react-calendar__tile--active) {
|
|
131
|
+
color: #2563eb;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.react-calendar__tile--now:enabled:hover,
|
|
135
|
+
.react-calendar__tile--now:enabled:focus {
|
|
136
|
+
background: #1d50bc;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.react-calendar__tile--hasActive {
|
|
140
|
+
background: #76baff;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.react-calendar__tile--hasActive:enabled:hover,
|
|
144
|
+
.react-calendar__tile--hasActive:enabled:focus {
|
|
145
|
+
background: #a9d4ff;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.react-calendar__tile--active {
|
|
149
|
+
background: #eff6ff;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.react-calendar__tile:not(.react-calendar__tile--active):enabled:hover {
|
|
153
|
+
border-radius: 8px 8px 8px 8px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.react-calendar__tile--active:enabled:hover,
|
|
157
|
+
.react-calendar__tile--active:enabled:focus {
|
|
158
|
+
background: #eff6ff;
|
|
159
|
+
border-radius: none !important;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.react-calendar--selectRange .react-calendar__tile--hover {
|
|
163
|
+
background-color: #eff6ff;
|
|
164
|
+
border-radius: none !important;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.react-calendar__tile--rangeStart {
|
|
168
|
+
background: #006edc !important;
|
|
169
|
+
border-radius: 8px 8px 8px 8px;
|
|
170
|
+
color: white;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.react-calendar__tile--rangeEnd {
|
|
174
|
+
background: #006edc !important;
|
|
175
|
+
border-radius: 8px 8px 8px 8px;
|
|
176
|
+
color: white;
|
|
177
|
+
}
|
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
/* Variables declaration */
|
|
2
|
-
/* prettier-ignore */
|
|
3
|
-
.rdp-root {
|
|
4
|
-
--rdp-accent-color: rgb(var(--color-primary-600) / var(--tw-bg-opacity)); /* The accent color used for selected days and UI elements. */
|
|
5
|
-
--rdp-accent-background-color: rgb(var(--color-primary-200) / var(--tw-bg-opacity)); /* The accent background color used for selected days and UI elements. */
|
|
6
|
-
|
|
7
|
-
--rdp-day-height: 44px; /* The height of the day cells. */
|
|
8
|
-
--rdp-day-width: 44px; /* The width of the day cells. */
|
|
9
|
-
|
|
10
|
-
--rdp-day_button-border-radius: 100%; /* The border radius of the day cells. */
|
|
11
|
-
--rdp-day_button-border: 2px solid transparent; /* The border of the day cells. */
|
|
12
|
-
--rdp-day_button-height: 42px; /* The height of the day cells. */
|
|
13
|
-
--rdp-day_button-width: 42px; /* The width of the day cells. */
|
|
14
|
-
|
|
15
|
-
--rdp-selected-border: 2px solid var(--rdp-accent-color); /* The border of the selected days. */
|
|
16
|
-
--rdp-disabled-opacity: 0.5; /* The opacity of the disabled days. */
|
|
17
|
-
--rdp-outside-opacity: 0.75; /* The opacity of the days outside the current month. */
|
|
18
|
-
--rdp-today-color: var(--rdp-accent-color); /* The color of the today's date. */
|
|
19
|
-
|
|
20
|
-
--rdp-dropdown-gap: 0.5rem;/* The gap between the dropdowns used in the month captons. */
|
|
21
|
-
|
|
22
|
-
--rdp-months-gap: 2rem; /* The gap between the months in the multi-month view. */
|
|
23
|
-
|
|
24
|
-
--rdp-nav_button-disabled-opacity: 0.5; /* The opacity of the disabled navigation buttons. */
|
|
25
|
-
--rdp-nav_button-height: 2.25rem; /* The height of the navigation buttons. */
|
|
26
|
-
--rdp-nav_button-width: 2.25rem; /* The width of the navigation buttons. */
|
|
27
|
-
--rdp-nav-height: 2.75rem; /* The height of the navigation bar. */
|
|
28
|
-
|
|
29
|
-
--rdp-range_middle-background-color: var(--rdp-accent-background-color); /* The color of the background for days in the middle of a range. */
|
|
30
|
-
--rdp-range_middle-color: inherit;/* The color of the range text. */
|
|
31
|
-
|
|
32
|
-
--rdp-range_start-color: white; /* The color of the range text. */
|
|
33
|
-
--rdp-range_start-background: linear-gradient(var(--rdp-gradient-direction), transparent 50%, var(--rdp-range_middle-background-color) 50%); /* Used for the background of the start of the selected range. */
|
|
34
|
-
--rdp-range_start-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the start of the selected range. */
|
|
35
|
-
|
|
36
|
-
--rdp-range_end-background: linear-gradient(var(--rdp-gradient-direction), var(--rdp-range_middle-background-color) 50%, transparent 50%); /* Used for the background of the end of the selected range. */
|
|
37
|
-
--rdp-range_end-color: white;/* The color of the range text. */
|
|
38
|
-
--rdp-range_end-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the end of the selected range. */
|
|
39
|
-
|
|
40
|
-
--rdp-week_number-border-radius: 100%; /* The border radius of the week number. */
|
|
41
|
-
--rdp-week_number-border: 2px solid transparent; /* The border of the week number. */
|
|
42
|
-
|
|
43
|
-
--rdp-week_number-height: var(--rdp-day-height); /* The height of the week number cells. */
|
|
44
|
-
--rdp-week_number-opacity: 0.75; /* The opacity of the week number. */
|
|
45
|
-
--rdp-week_number-width: var(--rdp-day-width); /* The width of the week number cells. */
|
|
46
|
-
--rdp-weeknumber-text-align: center; /* The text alignment of the weekday cells. */
|
|
47
|
-
|
|
48
|
-
--rdp-weekday-opacity: 0.75; /* The opacity of the weekday. */
|
|
49
|
-
--rdp-weekday-padding: 0.5rem 0rem; /* The padding of the weekday. */
|
|
50
|
-
--rdp-weekday-text-align: center; /* The text alignment of the weekday cells. */
|
|
51
|
-
|
|
52
|
-
--rdp-gradient-direction: 90deg;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.rdp-root[dir="rtl"] {
|
|
56
|
-
--rdp-gradient-direction: -90deg;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.rdp-root[data-broadcast-calendar="true"] {
|
|
60
|
-
--rdp-outside-opacity: unset;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/* Root of the component. */
|
|
64
|
-
.rdp-root {
|
|
65
|
-
position: relative; /* Required to position the navigation toolbar. */
|
|
66
|
-
box-sizing: border-box;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.rdp-root * {
|
|
70
|
-
box-sizing: border-box;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.rdp-day {
|
|
74
|
-
width: var(--rdp-day-width);
|
|
75
|
-
height: var(--rdp-day-height);
|
|
76
|
-
text-align: center;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.rdp-day_button {
|
|
80
|
-
background: none;
|
|
81
|
-
padding: 0;
|
|
82
|
-
margin: 0;
|
|
83
|
-
cursor: pointer;
|
|
84
|
-
font: inherit;
|
|
85
|
-
color: inherit;
|
|
86
|
-
justify-content: center;
|
|
87
|
-
align-items: center;
|
|
88
|
-
display: flex;
|
|
89
|
-
|
|
90
|
-
width: var(--rdp-day_button-width);
|
|
91
|
-
height: var(--rdp-day_button-height);
|
|
92
|
-
border: var(--rdp-day_button-border);
|
|
93
|
-
border-radius: var(--rdp-day_button-border-radius);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.rdp-day_button:disabled {
|
|
97
|
-
cursor: revert;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.rdp-caption_label {
|
|
101
|
-
z-index: 1;
|
|
102
|
-
|
|
103
|
-
position: relative;
|
|
104
|
-
display: inline-flex;
|
|
105
|
-
align-items: center;
|
|
106
|
-
|
|
107
|
-
white-space: nowrap;
|
|
108
|
-
border: 0;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.rdp-dropdown:focus-visible ~ .rdp-caption_label {
|
|
112
|
-
outline: 5px auto Highlight;
|
|
113
|
-
outline: 5px auto -webkit-focus-ring-color;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.rdp-button_next,
|
|
117
|
-
.rdp-button_previous {
|
|
118
|
-
border: none;
|
|
119
|
-
background: none;
|
|
120
|
-
padding: 0;
|
|
121
|
-
margin: 0;
|
|
122
|
-
cursor: pointer;
|
|
123
|
-
font: inherit;
|
|
124
|
-
color: inherit;
|
|
125
|
-
-moz-appearance: none;
|
|
126
|
-
-webkit-appearance: none;
|
|
127
|
-
display: inline-flex;
|
|
128
|
-
align-items: center;
|
|
129
|
-
justify-content: center;
|
|
130
|
-
position: relative;
|
|
131
|
-
appearance: none;
|
|
132
|
-
|
|
133
|
-
width: var(--rdp-nav_button-width);
|
|
134
|
-
height: var(--rdp-nav_button-height);
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.rdp-button_next:disabled,
|
|
138
|
-
.rdp-button_previous:disabled {
|
|
139
|
-
cursor: revert;
|
|
140
|
-
|
|
141
|
-
opacity: var(--rdp-nav_button-disabled-opacity);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.rdp-chevron {
|
|
145
|
-
display: inline-block;
|
|
146
|
-
fill: var(--rdp-accent-color);
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
|
|
150
|
-
transform: rotate(180deg);
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
|
|
154
|
-
transform: rotate(180deg);
|
|
155
|
-
transform-origin: 50%;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.rdp-dropdowns {
|
|
159
|
-
position: relative;
|
|
160
|
-
display: inline-flex;
|
|
161
|
-
align-items: center;
|
|
162
|
-
gap: var(--rdp-dropdown-gap);
|
|
163
|
-
}
|
|
164
|
-
.rdp-dropdown {
|
|
165
|
-
z-index: 2;
|
|
166
|
-
|
|
167
|
-
/* Reset */
|
|
168
|
-
opacity: 0;
|
|
169
|
-
appearance: none;
|
|
170
|
-
position: absolute;
|
|
171
|
-
inset-block-start: 0;
|
|
172
|
-
inset-block-end: 0;
|
|
173
|
-
inset-inline-start: 0;
|
|
174
|
-
width: 100%;
|
|
175
|
-
margin: 0;
|
|
176
|
-
padding: 0;
|
|
177
|
-
cursor: inherit;
|
|
178
|
-
border: none;
|
|
179
|
-
line-height: inherit;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.rdp-dropdown_root {
|
|
183
|
-
position: relative;
|
|
184
|
-
display: inline-flex;
|
|
185
|
-
align-items: center;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.rdp-dropdown_root[data-disabled="true"] .rdp-chevron {
|
|
189
|
-
opacity: var(--rdp-disabled-opacity);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.rdp-month_caption {
|
|
193
|
-
display: flex;
|
|
194
|
-
align-content: center;
|
|
195
|
-
height: var(--rdp-nav-height);
|
|
196
|
-
font-weight: bold;
|
|
197
|
-
font-size: large;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.rdp-months {
|
|
201
|
-
position: relative;
|
|
202
|
-
display: flex;
|
|
203
|
-
flex-wrap: wrap;
|
|
204
|
-
gap: var(--rdp-months-gap);
|
|
205
|
-
max-width: fit-content;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.rdp-month_grid {
|
|
209
|
-
border-collapse: collapse;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.rdp-nav {
|
|
213
|
-
position: absolute;
|
|
214
|
-
inset-block-start: 0;
|
|
215
|
-
inset-inline-end: 0;
|
|
216
|
-
|
|
217
|
-
display: flex;
|
|
218
|
-
align-items: center;
|
|
219
|
-
|
|
220
|
-
height: var(--rdp-nav-height);
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.rdp-weekday {
|
|
224
|
-
opacity: var(--rdp-weekday-opacity);
|
|
225
|
-
padding: var(--rdp-weekday-padding);
|
|
226
|
-
font-weight: 500;
|
|
227
|
-
font-size: smaller;
|
|
228
|
-
text-align: var(--rdp-weekday-text-align);
|
|
229
|
-
text-transform: var(--rdp-weekday-text-transform);
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.rdp-week_number {
|
|
233
|
-
opacity: var(--rdp-week_number-opacity);
|
|
234
|
-
font-weight: 400;
|
|
235
|
-
font-size: small;
|
|
236
|
-
height: var(--rdp-week_number-height);
|
|
237
|
-
width: var(--rdp-week_number-width);
|
|
238
|
-
border: var(--rdp-week_number-border);
|
|
239
|
-
border-radius: var(--rdp-week_number-border-radius);
|
|
240
|
-
text-align: var(--rdp-weeknumber-text-align);
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
/* DAY MODIFIERS */
|
|
244
|
-
.rdp-today:not(.rdp-outside) {
|
|
245
|
-
color: var(--rdp-today-color);
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.rdp-selected {
|
|
249
|
-
font-weight: bold;
|
|
250
|
-
font-size: large;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.rdp-selected .rdp-day_button {
|
|
254
|
-
border: var(--rdp-selected-border);
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.rdp-outside {
|
|
258
|
-
opacity: var(--rdp-outside-opacity);
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.rdp-disabled {
|
|
262
|
-
opacity: var(--rdp-disabled-opacity);
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.rdp-hidden {
|
|
266
|
-
visibility: hidden;
|
|
267
|
-
color: var(--rdp-range_start-color);
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.rdp-range_start {
|
|
271
|
-
background: var(--rdp-range_start-background);
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.rdp-range_start .rdp-day_button {
|
|
275
|
-
background-color: var(--rdp-range_start-date-background-color);
|
|
276
|
-
color: var(--rdp-range_start-color);
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.rdp-range_middle {
|
|
280
|
-
background-color: var(--rdp-range_middle-background-color);
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.rdp-range_middle .rdp-day_button {
|
|
284
|
-
border-color: transparent;
|
|
285
|
-
border: unset;
|
|
286
|
-
border-radius: unset;
|
|
287
|
-
color: var(--rdp-range_middle-color);
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.rdp-range_end {
|
|
291
|
-
background: var(--rdp-range_end-background);
|
|
292
|
-
color: var(--rdp-range_end-color);
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.rdp-range_end .rdp-day_button {
|
|
296
|
-
color: var(--rdp-range_start-color);
|
|
297
|
-
background-color: var(--rdp-range_end-date-background-color);
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.rdp-range_start.rdp-range_end {
|
|
301
|
-
background: revert;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
.rdp-focusable {
|
|
305
|
-
cursor: pointer;
|
|
306
|
-
}
|