Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Font Awesome Icons fa-undo-circle

Im looking for a good font awesome icon I could use as a "Reset" button for my application.

Im currently using fa-undo which looks like this:

enter image description here

The problem is that I need it to have a circle around it as the other buttons in my system do ( these are standard in font awesome icons, nothing has been modified except the color )

An example of what i need (with the undo image):

enter image description here

Ive been reading through the list here for nearly an hour but cant think of a possible alternative. Any thoughts?

like image 310
Master Yoda Avatar asked Dec 18 '25 04:12

Master Yoda


1 Answers

FA has some utility classes, one of which is fa-stack. You can stack fa-circle underneath fa-undo.

.fa-circle {
  color: #008db8;  
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<span class="fa-stack">
  <i class="fa fa-circle fa-stack-2x"></i>
  <i class="fa fa-undo fa-stack-1x fa-inverse"></i>
</span>
like image 149
Ben Fortune Avatar answered Dec 20 '25 21:12

Ben Fortune



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!