Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • dirk-norbert.baker/hifis.net
  • hifis/overall/hifis.net
  • jucke/hifis.net
  • stephan.thober/hifis.net
  • nicolas.boltz/hifis.net
  • axel.loewe/hifis.net
  • matthias.ruester/hifis.net
  • Franz.Steinmetz/hifis.net
  • bilke/hifis.net
  • guido.bloecher/hifis.net
  • mauro.cacace/hifis.net
  • sebastian.mueller/hifis.net
  • daniel.scheffler/hifis.net
  • manideep.jayavarapu/hifis.net
  • d.wortmann/hifis.net
  • j.mitchell/hifis.net
  • demme/hifis.net
  • s.dinkelacker/hifis.net
  • marcus/hifis.net
  • j.schmoelder/hifis.net
  • tempest.glodowski/hifis.net
  • norman.mueller/hifis.net
22 results
Show changes
Commits on Source (4)
.flex-cards {
display: flex;
flex-flow: wrap;
justify-content: flex-start;
justify-content: center;
margin-top: 0rem;
margin-bottom: 0rem;
......
......@@ -95,3 +95,25 @@ h2 {
width: 100%;
}
}
// Replace the HTML details triangle with Fontawesome icons
summary {
list-style: none;
&::-webkit-details-marker {
display: none;
}
}
details {
summary::before {
content: "\f138"; // fas fa-chevron-circle-right
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 0.25rem;
}
&[open] summary::before {
content: "\f13a"; // fas fa-chevron-circle-down
}
}