connors / photon

The fastest way to build beautiful Electron apps using simple HTML and CSS
photonkit.com
MIT License
10.01k stars 579 forks source link

.btn-dropdown showing ASCII characters instead of entypo icon-font #100

Closed Brunux closed 8 years ago

Brunux commented 8 years ago

The .btn-dropdown is showing ASCII characters instead of entypo icon-font char at the /css/photon.css file lines 448:

.btn-dropdown:after { font-family: "photon-entypo"; margin-left: 5px; content: "";

Quick fix:

.btn-dropdown:after { font-family: "photon-entypo"; margin-left: 5px; content: '\e873'; /* ""; */ }

Brunux commented 8 years ago

Looks like it has been fixed in the last commit, so i guess photon-0.1.2-dist.zip need to be updated.