It would be nice to have an icon that shows read only mode. as fa-pencil icon be used to show some editable feature, crossed pencil like this one
could be useful for read only mode
+1
+1
Take a look at this project: https://github.com/nyon/fontawesome-actions
https://github.com/FortAwesome/Font-Awesome/issues/1181#issuecomment-87315812
+1
But you could use this snippet to generate a read only icon:
<span class="fa-stack fa-lg">
<i class="fa fa-pencil fa-stack-1x"></i>
<i class="fa fa-ban fa-stack-2x fa-rotate-90 text-danger"></i>
</span>
Gives you something like this:
Most helpful comment
+1
But you could use this snippet to generate a read only icon:
Gives you something like this:
