-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdate-range-picker.bootstrap.scss
More file actions
54 lines (44 loc) · 1.22 KB
/
date-range-picker.bootstrap.scss
File metadata and controls
54 lines (44 loc) · 1.22 KB
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
@use 'styles/utilities' as *;
@use '../light/themes' as *;
$theme: $bootstrap;
:host {
--calendar-border-color: #{$bootstrap-calendar-border-color};
igc-dialog {
igc-calendar {
border: none;
}
}
::part(helper-text) {
@include type-style('body-2');
color: var-get($theme, 'helper-text-color');
grid-auto-rows: minmax(rem(20px), auto);
padding-inline-start: 0;
margin-block-start: rem(4px)
}
}
:host([readonly]) {
igc-input::part(container),
igc-input::part(prefix),
igc-input::part(suffix),
igc-date-time-input::part(container),
igc-date-time-input::part(prefix),
igc-date-time-input::part(suffix) {
background: var-get($theme, 'border-disabled-background');
}
}
:host(:not([disabled], [readonly])[invalid]) {
igc-input::part(input) {
border-color: var-get($theme, 'error-secondary-color');
}
}
:host(:not([disabled], [readonly])[invalid]:focus-within) {
igc-input::part(input) {
box-shadow: 0 0 0 rem(4px) var-get($theme, 'error-shadow-color');
}
}
[part='separator'] {
@include type-style('body-1');
}
[part='actions'] {
min-height: #{sizable(rem(47px), rem(54px), rem(64px))};
}