Skip to content

Instantly share code, notes, and snippets.

@monsier-oui
Created January 27, 2016 01:31
Show Gist options
  • Save monsier-oui/915277b3df763c003f6a to your computer and use it in GitHub Desktop.
Save monsier-oui/915277b3df763c003f6a to your computer and use it in GitHub Desktop.
BootstrapのCollapseトリガー要素に開閉状態によって矢印アイコンをつける
[data-toggle="collapse"] {
&:after {
display: inline-block;
margin-left: .5em;
font-family: fontAwesome;
}
&[aria-expanded="true"]:after {
content: '\f0d8';
}
&[aria-expanded="false"]:after {
content: '\f0d7';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment