Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/font
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2022-07-17 01:31:55 +0300
committerGitHub <noreply@github.com>2022-07-17 01:31:55 +0300
commit2e38adacd3e8b4520afac582bb5e822f436ba44e (patch)
tree53ce45ce7242d01a5ec92c25990dea65fc048408 /font
parent27860fdc9ae8288ebb47db5206d9e24243fb09a6 (diff)
Fixes for v1.9.1 (#1373)
* Properly add font-display to CSS and SCSS templates for icon fonts Fixes #1368 * Add missing icons and fix broken ones from v1.9.0 release - Fixes #1372: Rename cassette and cassette-fill - Fixes #1370: Adds fuel pump and EV station icons - Fixes #1367: Fixes duplicate path in Apple icon * Bump versions, update homepage new banner * Update social card
Diffstat (limited to 'font')
-rw-r--r--font/bootstrap-icons.css12
-rw-r--r--font/bootstrap-icons.json8
-rw-r--r--font/bootstrap-icons.scss15
-rw-r--r--font/fonts/bootstrap-icons.woffbin149808 -> 150592 bytes
-rw-r--r--font/fonts/bootstrap-icons.woff2bin111640 -> 112440 bytes
-rw-r--r--font/index.html24
6 files changed, 54 insertions, 5 deletions
diff --git a/font/bootstrap-icons.css b/font/bootstrap-icons.css
index 17c16ac25..7f0bd54b1 100644
--- a/font/bootstrap-icons.css
+++ b/font/bootstrap-icons.css
@@ -1,14 +1,14 @@
@font-face {
+ font-display: block;
font-family: "bootstrap-icons";
- src: url("./fonts/bootstrap-icons.woff2?48804dbfe98a9c8a08858a0de0b0e3db") format("woff2"),
-url("./fonts/bootstrap-icons.woff?48804dbfe98a9c8a08858a0de0b0e3db") format("woff");
+ src: url("./fonts/bootstrap-icons.woff2?8d200481aa7f02a2d63a331fc782cfaf") format("woff2"),
+url("./fonts/bootstrap-icons.woff?8d200481aa7f02a2d63a331fc782cfaf") format("woff");
}
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
display: inline-block;
- font-display: block;
font-family: bootstrap-icons !important;
font-style: normal;
font-weight: normal !important;
@@ -1868,3 +1868,9 @@ url("./fonts/bootstrap-icons.woff?48804dbfe98a9c8a08858a0de0b0e3db") format("wof
.bi-sign-turn-slight-right::before { content: "\f836"; }
.bi-sign-yield-fill::before { content: "\f837"; }
.bi-sign-yield::before { content: "\f838"; }
+.bi-ev-station-fill::before { content: "\f839"; }
+.bi-ev-station::before { content: "\f83a"; }
+.bi-fuel-pump-diesel-fill::before { content: "\f83b"; }
+.bi-fuel-pump-diesel::before { content: "\f83c"; }
+.bi-fuel-pump-fill::before { content: "\f83d"; }
+.bi-fuel-pump::before { content: "\f83e"; }
diff --git a/font/bootstrap-icons.json b/font/bootstrap-icons.json
index d8c3a6b6c..faa3b2ce7 100644
--- a/font/bootstrap-icons.json
+++ b/font/bootstrap-icons.json
@@ -1846,5 +1846,11 @@
"sign-turn-slight-right-fill": 63541,
"sign-turn-slight-right": 63542,
"sign-yield-fill": 63543,
- "sign-yield": 63544
+ "sign-yield": 63544,
+ "ev-station-fill": 63545,
+ "ev-station": 63546,
+ "fuel-pump-diesel-fill": 63547,
+ "fuel-pump-diesel": 63548,
+ "fuel-pump-fill": 63549,
+ "fuel-pump": 63550
} \ No newline at end of file
diff --git a/font/bootstrap-icons.scss b/font/bootstrap-icons.scss
index 79db859b3..eddca9b85 100644
--- a/font/bootstrap-icons.scss
+++ b/font/bootstrap-icons.scss
@@ -1,10 +1,11 @@
$bootstrap-icons-font: "bootstrap-icons" !default;
$bootstrap-icons-fonts-dir: "./fonts" !default;
$bootstrap-icons-font-file: #{$bootstrap-icons-fonts-dir}/#{$bootstrap-icons-font} !default;
-$bootstrap-icons-font-hash: "48804dbfe98a9c8a08858a0de0b0e3db" !default;
+$bootstrap-icons-font-hash: "8d200481aa7f02a2d63a331fc782cfaf" !default;
$bootstrap-icons-font-src: url("#{$bootstrap-icons-font-file}.woff2?#{$bootstrap-icons-font-hash}") format("woff2"), url("#{$bootstrap-icons-font-file}.woff?#{$bootstrap-icons-font-hash}") format("woff") !default;
@font-face {
+ font-display: block;
font-family: $bootstrap-icons-font;
src: $bootstrap-icons-font-src;
}
@@ -1873,6 +1874,12 @@ $bootstrap-icons-map: (
"sign-turn-slight-right": "\f836",
"sign-yield-fill": "\f837",
"sign-yield": "\f838",
+ "ev-station-fill": "\f839",
+ "ev-station": "\f83a",
+ "fuel-pump-diesel-fill": "\f83b",
+ "fuel-pump-diesel": "\f83c",
+ "fuel-pump-fill": "\f83d",
+ "fuel-pump": "\f83e",
);
.bi-123::before { content: map-get($bootstrap-icons-map, "123"); }
@@ -3723,3 +3730,9 @@ $bootstrap-icons-map: (
.bi-sign-turn-slight-right::before { content: map-get($bootstrap-icons-map, "sign-turn-slight-right"); }
.bi-sign-yield-fill::before { content: map-get($bootstrap-icons-map, "sign-yield-fill"); }
.bi-sign-yield::before { content: map-get($bootstrap-icons-map, "sign-yield"); }
+.bi-ev-station-fill::before { content: map-get($bootstrap-icons-map, "ev-station-fill"); }
+.bi-ev-station::before { content: map-get($bootstrap-icons-map, "ev-station"); }
+.bi-fuel-pump-diesel-fill::before { content: map-get($bootstrap-icons-map, "fuel-pump-diesel-fill"); }
+.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"); }
diff --git a/font/fonts/bootstrap-icons.woff b/font/fonts/bootstrap-icons.woff
index eafcd443d..cf0a6d0fb 100644
--- a/font/fonts/bootstrap-icons.woff
+++ b/font/fonts/bootstrap-icons.woff
Binary files differ
diff --git a/font/fonts/bootstrap-icons.woff2 b/font/fonts/bootstrap-icons.woff2
index b8fe4ab6d..ecc8f4c5d 100644
--- a/font/fonts/bootstrap-icons.woff2
+++ b/font/fonts/bootstrap-icons.woff2
Binary files differ
diff --git a/font/index.html b/font/index.html
index 894a6545d..1dd4cb1ae 100644
--- a/font/index.html
+++ b/font/index.html
@@ -3022,6 +3022,14 @@
<div class="label">ethernet</div>
</div>
<div class="icon">
+ <i class="bi bi-ev-station-fill"></i>
+ <div class="label">ev-station-fill</div>
+ </div>
+ <div class="icon">
+ <i class="bi bi-ev-station"></i>
+ <div class="label">ev-station</div>
+ </div>
+ <div class="icon">
<i class="bi bi-exclamation-circle-fill"></i>
<div class="label">exclamation-circle-fill</div>
</div>
@@ -3970,6 +3978,22 @@
<div class="label">front</div>
</div>
<div class="icon">
+ <i class="bi bi-fuel-pump-diesel-fill"></i>
+ <div class="label">fuel-pump-diesel-fill</div>
+ </div>
+ <div class="icon">
+ <i class="bi bi-fuel-pump-diesel"></i>
+ <div class="label">fuel-pump-diesel</div>
+ </div>
+ <div class="icon">
+ <i class="bi bi-fuel-pump-fill"></i>
+ <div class="label">fuel-pump-fill</div>
+ </div>
+ <div class="icon">
+ <i class="bi bi-fuel-pump"></i>
+ <div class="label">fuel-pump</div>
+ </div>
+ <div class="icon">
<i class="bi bi-fullscreen-exit"></i>
<div class="label">fullscreen-exit</div>
</div>