9f77077877
* remove ember-cli-favicon * link to png favicon in public folder * skip some things in the build depending on the env * update to ember-cli 3.5.0 for broccoli 2, and ember-fetch because it was incompatible with broccoli 2 * update some things the new sass module wasn't happy about * turn off more things in dev to make the build faster * bump to the latest ember-cli and move back to node-sass * remove sass since we're using node-sass * include polyfill in test as well
20 lines
897 B
SCSS
20 lines
897 B
SCSS
@import '../sass-svg-uri/svg-uri';
|
|
|
|
.b-checkbox input[type='checkbox']:checked + label::before {
|
|
border-color: $blue;
|
|
}
|
|
|
|
.b-checkbox input[type='checkbox']:checked + label::after,
|
|
.b-checkbox input[type='radio']:checked + label::after {
|
|
font-family: $family-monospace;
|
|
/*checkmark from ionicons*/
|
|
content: svg-uri(
|
|
'<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 512 512" fill="#{$blue}"><path d="M461.6 109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4-2.4 0-4.6 1-6.3 2.5L194.5 323s-78.5-75.5-80.7-77.7c-2.2-2.2-5.1-5.9-9.5-5.9s-6.4 3.1-8.7 5.4c-1.7 1.8-29.7 31.2-43.5 45.8-.8.9-1.3 1.4-2 2.1-1.2 1.7-2 3.6-2 5.7 0 2.2.8 4 2 5.7l2.8 2.6s139.3 133.8 141.6 136.1c2.3 2.3 5.1 5.2 9.2 5.2 4 0 7.3-4.3 9.2-6.2l249.1-320c1.2-1.7 2-3.6 2-5.8 0-2.5-1-4.6-2.4-6.4z"/></svg>'
|
|
);
|
|
}
|
|
|
|
.b-checkbox.no-label input[type='checkbox'] + label {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|