UX: Remove 2px border from some select-kit buttons (#12016)
This commit is contained in:
parent
45403e57b6
commit
fcdf7ef019
|
@ -13,6 +13,7 @@ export default SelectedNameComponent.extend({
|
||||||
el = document.querySelector(`[data-value="${color}"]`);
|
el = document.querySelector(`[data-value="${color}"]`);
|
||||||
|
|
||||||
if (el) {
|
if (el) {
|
||||||
|
el.style.borderBottom = "2px solid transparent";
|
||||||
el.style.borderBottomColor = `#${color}`;
|
el.style.borderBottomColor = `#${color}`;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -71,7 +71,6 @@
|
||||||
color: inherit;
|
color: inherit;
|
||||||
display: flex;
|
display: flex;
|
||||||
outline: none;
|
outline: none;
|
||||||
border-bottom: 2px solid transparent;
|
|
||||||
|
|
||||||
.d-icon + .name {
|
.d-icon + .name {
|
||||||
margin-left: 0.5em;
|
margin-left: 0.5em;
|
||||||
|
|
Loading…
Reference in New Issue