Fix missing assignment check mark. Fixes #1271

This commit is contained in:
Jonathan Kingston 2018-10-21 22:22:48 +01:00
parent 220b902144
commit f7f4c320a6
2 changed files with 7 additions and 1 deletions

View file

@ -538,7 +538,7 @@ span ~ .panel-header-text {
} }
#current-tab > label > input:checked { #current-tab > label > input:checked {
background-image: url("chrome://global/skin/in-content/check.svg#check-native"); background-image: url("/img/check.svg");
background-position: -1px -1px; background-position: -1px -1px;
background-size: var(--icon-size); background-size: var(--icon-size);
} }

6
src/img/check.svg Normal file
View file

@ -0,0 +1,6 @@
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#3c3c3c" d="M6 14a1 1 0 0 1-.707-.293l-3-3a1 1 0 0 1 1.414-1.414l2.157 2.157 6.316-9.023a1 1 0 0 1 1.639 1.146l-7 10a1 1 0 0 1-.732.427A.863.863 0 0 1 6 14z"/>
</svg>

After

Width:  |  Height:  |  Size: 477 B