/* Custom admonition: github-actions
   References the Octicons "workflow-24" icon directly from the primer/octicons
   repository via its raw GitHub URL.                                         */

:root {
  --md-admonition-icon--github-actions: url('https://raw.githubusercontent.com/primer/octicons/main/icons/workflow-24.svg');
}

.md-typeset .admonition.github-actions,
.md-typeset details.github-actions {
  border-color: rgb(45, 86, 78);
}

.md-typeset .github-actions > .admonition-title,
.md-typeset .github-actions > summary {
  background-color: rgba(45, 86, 78, .1);
}

.md-typeset .github-actions > .admonition-title::before,
.md-typeset .github-actions > summary::before {
  background-color: rgb(45, 86, 78);
  -webkit-mask-image: var(--md-admonition-icon--github-actions);
          mask-image: var(--md-admonition-icon--github-actions);
}
