Skip to content

Commit 544e826

Browse files
authored
fix(scss notation): fix & notation for timepicker (#5001)
1 parent 43026b3 commit 544e826

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

ui/components/timepicker/base/_deprecate.scss

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@
77
.slds-datepicker--time {
88
max-width: $size-x-small;
99
max-height: (($line-height-text + ($spacing-x-small * 2)) * 6) - ($spacing-small * 2);
10-
overflow: hidden {
11-
y: auto;
12-
}
10+
overflow-x: hidden;
11+
overflow-y: auto;
12+
}
13+
}
1314

14-
&__list {
15+
.slds-datepicker_time__list,
16+
.slds-datepicker--time__list {
1517

16-
> li {
17-
white-space: nowrap;
18-
padding: $spacing-x-small {
19-
left: $spacing-x-large;
20-
right: $spacing-x-large;
21-
}
18+
> li {
19+
white-space: nowrap;
20+
padding: $spacing-x-small {
21+
left: $spacing-x-large;
22+
right: $spacing-x-large;
23+
}
2224

23-
&:hover,
24-
&:focus {
25-
background: $color-background-row-hover;
26-
text-decoration: none;
27-
cursor: pointer;
28-
}
29-
}
25+
&:hover,
26+
&:focus {
27+
background: $color-background-row-hover;
28+
text-decoration: none;
29+
cursor: pointer;
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)