Kyle M Hall
3e153d46ee
Font Awesome is similar to Glyphicons included in Twitter Bootstrap, except better in every way and more Free. Test Plan: 1) Apply this patch 2) Edit the template for a page, and add a Font Awesome tag to it, examples can be found here: http://fortawesome.github.io/Font-Awesome/examples/ 3) Reload the page and verify the icon displays. Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
19 lines
378 B
SCSS
19 lines
378 B
SCSS
// List Icons
|
|
// -------------------------
|
|
|
|
.#{$fa-css-prefix}-ul {
|
|
padding-left: 0;
|
|
margin-left: $fa-li-width;
|
|
list-style-type: none;
|
|
> li { position: relative; }
|
|
}
|
|
.#{$fa-css-prefix}-li {
|
|
position: absolute;
|
|
left: -$fa-li-width;
|
|
width: $fa-li-width;
|
|
top: (2em / 14);
|
|
text-align: center;
|
|
&.#{$fa-css-prefix}-lg {
|
|
left: -$fa-li-width + (4em / 14);
|
|
}
|
|
}
|