Skip to content

Commit df963c0

Browse files
Fixed margin and values position on Dropdown when in RTL
1 parent 19e2873 commit df963c0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/scripts/Providers/OSUI/Dropdown/VirtualSelect/scss/_virtualselect.scss

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
}
9191
.vscomp-value {
9292
margin-right: var(--space-m);
93+
margin-left: var(--space-none);
9394
}
9495
}
9596

@@ -239,11 +240,21 @@
239240
}
240241
}
241242

243+
&.has-value {
244+
.vscomp-value {
245+
margin-left: var(--space-m);
246+
margin-right: var(--space-none);
247+
}
248+
}
249+
242250
&.show-value-as-tags {
243251
&.has-value {
244252
.vscomp-clear-button {
245253
left: var(--space-l);
246254
}
255+
.vscomp-toggle-button {
256+
padding-right: var(--space-s);
257+
}
247258
}
248259

249260
.vscomp-value-tag {
@@ -254,6 +265,10 @@
254265
left: 10px;
255266
right: auto;
256267
}
268+
269+
.vscomp-toggle-button {
270+
padding: var(--space-xs) var(--space-base) var(--space-none) var(--space-xxl);
271+
}
257272
}
258273

259274
.vscomp-toggle-button {

0 commit comments

Comments
 (0)