Merge "Fix Material theme to work with any combination of pyScss and MDI icons"
This commit is contained in:
commit
c78d484321
@ -86,6 +86,9 @@ $icon-swap: (
|
||||
|
||||
@each $fa-icon, $mdi-icon in $icon-swap {
|
||||
.fa-#{$fa-icon} {
|
||||
&:before {
|
||||
content: unquote("\"\\#{map-get($mdi-icons, $mdi-icon)}\"");
|
||||
}
|
||||
@extend .mdi-#{$mdi-icon};
|
||||
}
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
|
||||
&:before {
|
||||
@extend .mdi;
|
||||
content: "\F131";
|
||||
font-size: $font-size-h5;
|
||||
}
|
||||
}
|
||||
@ -21,6 +22,7 @@
|
||||
@extend .mdi-checkbox-marked;
|
||||
|
||||
&:before {
|
||||
content: "\F132";
|
||||
color: $brand-primary;
|
||||
}
|
||||
}
|
||||
|
@ -2,4 +2,8 @@
|
||||
@extend .mdi-stop;
|
||||
color: $gray-light;
|
||||
font-size: $font-size-small;
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: "\F4DB";
|
||||
}
|
||||
}
|
||||
|
@ -3,6 +3,10 @@
|
||||
@extend .mdi-arrow-right;
|
||||
padding-right: $padding-base-horizontal;
|
||||
|
||||
&:before {
|
||||
content: "\F054";
|
||||
}
|
||||
|
||||
&-text {
|
||||
display: none;
|
||||
}
|
||||
|
@ -2,4 +2,8 @@
|
||||
@extend .mdi-stop;
|
||||
color: $gray-light;
|
||||
font-size: $font-size-small;
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: "\F4DB";
|
||||
}
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
font-size: $font-size-h5;
|
||||
line-height: $font-size-h5;
|
||||
vertical-align: middle;
|
||||
content: "\F43D";
|
||||
}
|
||||
}
|
||||
|
||||
@ -24,6 +25,7 @@
|
||||
|
||||
&:before {
|
||||
color: $brand-primary;
|
||||
content: "\F43E";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -20,11 +20,17 @@
|
||||
|
||||
.hz-spinner-icon-up {
|
||||
@extend .mdi-plus;
|
||||
&:before {
|
||||
content: "\F415";
|
||||
}
|
||||
}
|
||||
|
||||
.hz-spinner-icon-down {
|
||||
@extend .mdi-minus;
|
||||
padding-right: $padding-xs-horizontal;
|
||||
&:before {
|
||||
content: "\F374";
|
||||
}
|
||||
}
|
||||
|
||||
&-container {
|
||||
|
Loading…
Reference in New Issue
Block a user