All checks were successful
continuous-integration/drone/push Build is passing
update docs update nix-shell to auto install rework custom pre-commit hooks to integrate better add dockerfile for lefthook and integrate into drone add some more hooks for formatting and linting some files Co-authored-by: Darragh Elliott <me@delliott.net> Reviewed-on: #5248 Co-authored-by: delliott <delliott@fsfe.org> Co-committed-by: delliott <delliott@fsfe.org>
32 lines
658 B
Plaintext
32 lines
658 B
Plaintext
/* fixing fonts icons for no-script tools */
|
||
|
||
.no-js {
|
||
.fa {
|
||
font-family: @font-family-sans-serif;
|
||
}
|
||
.fa.fa-home:before {
|
||
content: "";
|
||
}
|
||
.fa.fa-rss:before {
|
||
content: " ";
|
||
width: 15px;
|
||
height: 15px;
|
||
display: block;
|
||
background: url("/graphics/rss.png") top left no-repeat;
|
||
}
|
||
.fa.fa-comments-o:before {
|
||
content: " ";
|
||
width: 19px;
|
||
height: 15px;
|
||
display: block;
|
||
background: url("/graphics/identica.png") top left no-repeat;
|
||
}
|
||
.fa.fa-calendar-o:before {
|
||
content: " ";
|
||
width: 15px;
|
||
height: 15px;
|
||
display: block;
|
||
background: url("/graphics/ical.png") top left no-repeat;
|
||
}
|
||
}
|