Fontawesome 6 support for sciter.js.
- git clone the repository
- install packages
npm install
- install latest sciter sdk
npm run install-sdk
- start the demo
npm run scapp
- A recent version of Node.js
node
(tested with 16 LTS) and its package managernpm
.- On Windows download and run the installer
- On Linux check the installation guide
- install package
npm install sciter-fontawesome
- include
<style src="node_modules/sciter-fontawesome/src/fontawesome.css" />
- add the
src
dir to your project - include
<style src="src/fontawesome.css" />
-
on linux the fontawesome font cannot be installed *
Current Linux implementation does not support this functionality. GTK/Cairo has no means for that. Please wait for Sciter 5.X.X.X where I am switching to Skia as a primary backend on Linux.
-
download
https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.css https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-brands-400.ttf https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-regular-400.ttf https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/webfonts/fa-solid-900.ttf
-
in all
all.css
- remove unrecognized
@-webkit-keyframes
properties - remove all
:root, :host {...}
- replace all
:before
by::before
- remove all
src
from@font-face
except thettf
ones - remove
format("truetype")
from@font-face
- comment
unicode-range:...;
- finally add to the end of file
- remove unrecognized
// reset ux-master.css default vertical flow
button {
flow: horizontal;
}
// reset master-base.css properties on first and last child
button > :first-child {
margin-top: 0;
}
button > :last-child {
margin-bottom: 0;
}
// fix icons vertical alignment in button
button > i {
vertical-align: middle;
}
// improve icon position in button
button > i:first-child {
margin-right: 0.5em;
}
button > i:last-child {
margin-left: 0.5em;
}