1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-15 18:14:17 +02:00

Merge pull request #15620 from twbs/iso-4217

Add .glyphicon-* aliases for other ISO 4217-ish currency codes
This commit is contained in:
Chris Rebert
2015-01-21 13:16:57 -08:00
3 changed files with 20 additions and 0 deletions

View File

@@ -958,12 +958,24 @@ th {
.glyphicon-bitcoin:before { .glyphicon-bitcoin:before {
content: "\e227"; content: "\e227";
} }
.glyphicon-btc:before {
content: "\e227";
}
.glyphicon-xbt:before {
content: "\e227";
}
.glyphicon-yen:before { .glyphicon-yen:before {
content: "\00a5"; content: "\00a5";
} }
.glyphicon-jpy:before {
content: "\00a5";
}
.glyphicon-ruble:before { .glyphicon-ruble:before {
content: "\20bd"; content: "\20bd";
} }
.glyphicon-rub:before {
content: "\20bd";
}
.glyphicon-scale:before { .glyphicon-scale:before {
content: "\e230"; content: "\e230";
} }

View File

@@ -227,8 +227,12 @@
- glyphicon-piggy-bank - glyphicon-piggy-bank
- glyphicon-scissors - glyphicon-scissors
- glyphicon-bitcoin - glyphicon-bitcoin
- glyphicon-btc
- glyphicon-xbt
- glyphicon-yen - glyphicon-yen
- glyphicon-jpy
- glyphicon-ruble - glyphicon-ruble
- glyphicon-rub
- glyphicon-scale - glyphicon-scale
- glyphicon-ice-lolly - glyphicon-ice-lolly
- glyphicon-ice-lolly-tasted - glyphicon-ice-lolly-tasted

View File

@@ -266,8 +266,12 @@
.glyphicon-piggy-bank { &:before { content: "\e225"; } } .glyphicon-piggy-bank { &:before { content: "\e225"; } }
.glyphicon-scissors { &:before { content: "\e226"; } } .glyphicon-scissors { &:before { content: "\e226"; } }
.glyphicon-bitcoin { &:before { content: "\e227"; } } .glyphicon-bitcoin { &:before { content: "\e227"; } }
.glyphicon-btc { &:before { content: "\e227"; } }
.glyphicon-xbt { &:before { content: "\e227"; } }
.glyphicon-yen { &:before { content: "\00a5"; } } .glyphicon-yen { &:before { content: "\00a5"; } }
.glyphicon-jpy { &:before { content: "\00a5"; } }
.glyphicon-ruble { &:before { content: "\20bd"; } } .glyphicon-ruble { &:before { content: "\20bd"; } }
.glyphicon-rub { &:before { content: "\20bd"; } }
.glyphicon-scale { &:before { content: "\e230"; } } .glyphicon-scale { &:before { content: "\e230"; } }
.glyphicon-ice-lolly { &:before { content: "\e231"; } } .glyphicon-ice-lolly { &:before { content: "\e231"; } }
.glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } } .glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }