Commit 67028e57 authored by Sascha Eggenberger's avatar Sascha Eggenberger Committed by Natalia Tepluhina

Labels selection improvement

Fix labels selection darkmode implementation to make
selected items readable. Also update the check icon to match the
one from the GitLab SVG Library.
parent 7680b4b9
......@@ -520,8 +520,22 @@
}
&.is-active {
/* stylelint-disable-next-line function-url-quotes */
background: url(asset_path('checkmark.png')) no-repeat 14px center;
position: relative;
&::before {
content: '';
display: block;
position: absolute;
top: 0.5rem;
left: 1rem;
width: 1rem;
height: 1rem;
mask-image: asset_url('icons-stacked.svg#check');
mask-repeat: no-repeat;
mask-size: cover;
mask-position: center center;
background: $black-normal;
}
}
}
}
......@@ -692,7 +706,7 @@
.dropdown-label-box {
position: relative;
top: 3px;
top: 0;
margin-right: 5px;
display: inline-block;
width: 15px;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment