Skip to content

Commit

Permalink
Fix fill rules and rotation of some icons
Browse files Browse the repository at this point in the history
Fixes #1459, fixes #1409
  • Loading branch information
mdo committed Oct 29, 2022
1 parent 9a2d13a commit 80b0a81
Show file tree
Hide file tree
Showing 12 changed files with 58 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bootstrap-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 14 additions & 2 deletions font/bootstrap-icons.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@font-face {
font-display: block;
font-family: "bootstrap-icons";
src: url("./fonts/bootstrap-icons.woff2?56c0f95873eb8a64dba9b6190f3e25c4") format("woff2"),
url("./fonts/bootstrap-icons.woff?56c0f95873eb8a64dba9b6190f3e25c4") format("woff");
src: url("./fonts/bootstrap-icons.woff2?e15be3d3600e4a11fe4586f0c485d891") format("woff2"),
url("./fonts/bootstrap-icons.woff?e15be3d3600e4a11fe4586f0c485d891") format("woff");
}

.bi::before,
Expand Down Expand Up @@ -1874,3 +1874,15 @@ url("./fonts/bootstrap-icons.woff?56c0f95873eb8a64dba9b6190f3e25c4") format("wof
.bi-fuel-pump-diesel::before { content: "\f83c"; }
.bi-fuel-pump-fill::before { content: "\f83d"; }
.bi-fuel-pump::before { content: "\f83e"; }
.bi-0-circle-fill::before { content: "\f83f"; }
.bi-0-circle::before { content: "\f840"; }
.bi-0-square-fill::before { content: "\f841"; }
.bi-0-square::before { content: "\f842"; }
.bi-rocket-fill::before { content: "\f843"; }
.bi-rocket-takeoff-fill::before { content: "\f844"; }
.bi-rocket-takeoff::before { content: "\f845"; }
.bi-rocket::before { content: "\f846"; }
.bi-stripe::before { content: "\f847"; }
.bi-subscript::before { content: "\f848"; }
.bi-superscript::before { content: "\f849"; }
.bi-trello::before { content: "\f84a"; }
14 changes: 13 additions & 1 deletion font/bootstrap-icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -1852,5 +1852,17 @@
"fuel-pump-diesel-fill": 63547,
"fuel-pump-diesel": 63548,
"fuel-pump-fill": 63549,
"fuel-pump": 63550
"fuel-pump": 63550,
"0-circle-fill": 63551,
"0-circle": 63552,
"0-square-fill": 63553,
"0-square": 63554,
"rocket-fill": 63555,
"rocket-takeoff-fill": 63556,
"rocket-takeoff": 63557,
"rocket": 63558,
"stripe": 63559,
"subscript": 63560,
"superscript": 63561,
"trello": 63562
}
24 changes: 24 additions & 0 deletions font/bootstrap-icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1880,6 +1880,18 @@ $bootstrap-icons-map: (
"fuel-pump-diesel": "\f83c",
"fuel-pump-fill": "\f83d",
"fuel-pump": "\f83e",
"0-circle-fill": "\f83f",
"0-circle": "\f840",
"0-square-fill": "\f841",
"0-square": "\f842",
"rocket-fill": "\f843",
"rocket-takeoff-fill": "\f844",
"rocket-takeoff": "\f845",
"rocket": "\f846",
"stripe": "\f847",
"subscript": "\f848",
"superscript": "\f849",
"trello": "\f84a",
);

.bi-123::before { content: map-get($bootstrap-icons-map, "123"); }
Expand Down Expand Up @@ -3736,3 +3748,15 @@ $bootstrap-icons-map: (
.bi-fuel-pump-diesel::before { content: map-get($bootstrap-icons-map, "fuel-pump-diesel"); }
.bi-fuel-pump-fill::before { content: map-get($bootstrap-icons-map, "fuel-pump-fill"); }
.bi-fuel-pump::before { content: map-get($bootstrap-icons-map, "fuel-pump"); }
.bi-0-circle-fill::before { content: map-get($bootstrap-icons-map, "0-circle-fill"); }
.bi-0-circle::before { content: map-get($bootstrap-icons-map, "0-circle"); }
.bi-0-square-fill::before { content: map-get($bootstrap-icons-map, "0-square-fill"); }
.bi-0-square::before { content: map-get($bootstrap-icons-map, "0-square"); }
.bi-rocket-fill::before { content: map-get($bootstrap-icons-map, "rocket-fill"); }
.bi-rocket-takeoff-fill::before { content: map-get($bootstrap-icons-map, "rocket-takeoff-fill"); }
.bi-rocket-takeoff::before { content: map-get($bootstrap-icons-map, "rocket-takeoff"); }
.bi-rocket::before { content: map-get($bootstrap-icons-map, "rocket"); }
.bi-stripe::before { content: map-get($bootstrap-icons-map, "stripe"); }
.bi-subscript::before { content: map-get($bootstrap-icons-map, "subscript"); }
.bi-superscript::before { content: map-get($bootstrap-icons-map, "superscript"); }
.bi-trello::before { content: map-get($bootstrap-icons-map, "trello"); }
Binary file modified font/fonts/bootstrap-icons.woff
Binary file not shown.
Binary file modified font/fonts/bootstrap-icons.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion icons/arrow-bar-left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/arrow-bar-right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/arrows-collapse.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/arrows-expand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/heartbreak-fill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion icons/heartbreak.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 80b0a81

Please sign in to comment.