I know this is not the right place but just to let the Dolibarr users know:
Give a chance to Dolibarr logo to be in Font Awesome!
We can add the Dolibarr logo in Font Awesome lib.
Up vote and add comments to give a chance to our logo.
Here is the link to Font Awesome Github page :
https://github.com/FortAwesome/Font-Awesome/issues/15397
<!--
It could be something like that to display a Dolibarr logo (as it done for Worpress...).
-->
<i class="fab fa-dolibarr"></i>
Wonderful isn't it?
Because Dolibarr use Font Awesome.
I think it could be usefull for our ERP and other website menu...
Tks for reading
Hi
Today 17 thumbs up.
Please continue to support our ERP !!!
Tks to :
@ptibogxiv
@philazerty
@defrance
@aspangaro
@atm-maxime
@delthair
@altatof
@arre8
@SylvainLegrand
@jtraulle
@papoteur-mga
@futurehousestore
@ariffidaali
@ksar-ksar
@inoveaconseil
@hregis
@fappels
@pcworxstech
@matDOTviguier
@atm-john
@cfoellmann
@tryphon28
@DGCarramona
@frederic34
@wdammak
easy with 100% css
<i class="fa fa-dolibarr fa-5x"></i>
.fa-dolibarr{
color: #235481;
background: currentColor;
height: 150px;
width: 150px;
position: relative;
}
.fa-dolibarr:before{
content: '';
position: absolute;
left: 19%;
top: 17%;
width: 25%;
height: 25%;
border: solid 30px white;
border-radius: 0% 200% 200% 0% / 0% 180% 180% 0%;
}
.fa-dolibarr:after{
content: '';
position: absolute;
left: 19%;
top: 17%;
width: 5px;
height: 25%;
border-bottom: solid 60px currentColor;
margin-left: 30px;
}
rendering: http://jsfiddle.net/zv4t6ha1/
@wdammak +1
Really tricky. I will add the definition into a theme to see if it can be used/useful
Most helpful comment
easy with 100% css
<i class="fa fa-dolibarr fa-5x"></i>rendering: http://jsfiddle.net/zv4t6ha1/