-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path_timepicker.scss
More file actions
43 lines (37 loc) · 1.21 KB
/
_timepicker.scss
File metadata and controls
43 lines (37 loc) · 1.21 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
/* @docs */
$timepicker-select-width: 4em;
/* @docs */
.timepicker {
.dropdown {
.dropdown-menu {
--#{$prefix}dropdown-width: auto;
--#{$prefix}dropdown-min-width: unset;
--#{$prefix}dropdown-padding-y: 0;
--#{$prefix}dropdown-link-active-bg: transparent;
--#{$prefix}dropdown-link-active-color: --#{$prefix}dropdown-link-color;
}
.dropdown-item {
display: inline-flex;
border-radius: inherit;
width: max-content;
.separator {
transform: translateY(15%);
font-weight: bolder;
}
.select {
--#{$prefix}timepicker-select-width: #{$timepicker-select-width};
.form-select {
border: transparent;
background-color: transparent;
cursor: pointer;
padding-right: $input-btn-padding-x;
width: var(--#{$prefix}timepicker-select-width);
text-align: center;
&:focus {
box-shadow: none;
}
}
}
}
}
}