OpenSource-Tools / LiquidVoting

1 stars 0 forks source link

Use Font-awesome #5

Closed kvdmolen closed 9 years ago

kvdmolen commented 9 years ago

Replace all icons (currently often images) with similar font-awesome icons:

At .nav section (header):

<div class="head">
  <div class="nav">
    ...
    <a class="notifications" title="notifications" href="../index/notifications.html"><img alt="notifications" class="icon" src="../static/icons/48/bell.png"><span class="count">1</span></a>
  </div>
</div>

to:

<a class="notifications" title="notifications" href="../index/notifications.html"><i class="fa fa-bell"></i><span class="count">1</span></a>

--- there'll be more..

nktc commented 9 years ago

Which page does this appear on? I have made the changes in code but I can't find where it is in the UI to test it...

kvdmolen commented 9 years ago

http://dev.liquidfeedback.org/lf3/index/notifications.html but not sure if this page only exists IF there are notifications. Though this Fontawesome thing is for all icons, have not yet listed them all, most are inside another issue (including the breadcrumb home-icon and so).

kvdmolen commented 9 years ago

Super!

image