Vmeda.Online/src/app/fontawesome.scss

47 lines
1.4 KiB
SCSS
Raw Normal View History

2018-04-09 13:14:55 +02:00
/** This file is intended to translate fontawesome to ionicons while the font is not supported */
.fa.icon {
@extend ion-icon;
}
/*.fa {
font-size: $button-icon-size;
width: $button-icon-size;
height: $button-icon-size;
}*/
/** Fixed width */
.fa-fw {
width: (18em / 14);
text-align: center;
}
/** Uncomment for dev purposes, it will show an asterisk in red where a missing icon is */
/*.fa:before {
color: red !important;
content: $ionicon-var-asterisk;
}*/
/** Icons translation */
.md {
.fa-search-plus:before { content: "\f375"; } // search
.fa-cog:before { content: "\f2cf"; } // cog
.fa-trash:before { content: "\f398"; } // trash
.fa-thumbs-up:before { content: "\f392"; } // thumbs-up
.fa-thumbs-down:before { content: "\f391"; } // thumbs-down
.fa-ban:before { content: "\f367"; } // remove-circle
.fa-remove:before { content: "\f2c0"; } // close
.fa-check:before { content: "\f2bc"; } // checkmark
}
.ios, .wp {
.fa-search-plus:before { content: "\f4a5"; } // search
.fa-cog:before { content: "\f412"; } // cog
.fa-trash:before { content: "\f4c5"; } // trash
.fa-thumbs-up:before { content: "\f256"; } // thumbs-up
.fa-thumbs-down:before { content: "\f254"; } // thumbs-down
.fa-ban:before { content: "\f1fb"; } // remove-circle
.fa-remove:before { content: "\f406"; } // close
.fa-check:before { content: "\f3ff"; } // checkmark
}