From 5b8ba0cb4dc68deee9ad5bb2dbbdc2718c14ea67 Mon Sep 17 00:00:00 2001 From: Bastien Date: Fri, 12 Dec 2014 10:58:21 +0100 Subject: 200 to 260 glyphicons in the doc --- docs/_includes/components/glyphicons.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_includes/components/glyphicons.html b/docs/_includes/components/glyphicons.html index c00ef94c9..ed454110b 100644 --- a/docs/_includes/components/glyphicons.html +++ b/docs/_includes/components/glyphicons.html @@ -2,7 +2,7 @@

Glyphicons

Available glyphs

-

Includes 200 glyphs in font format from the Glyphicon Halflings set. Glyphicons Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you include a link back to Glyphicons whenever possible.

+

Includes 260 glyphs in font format from the Glyphicon Halflings set. Glyphicons Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you include a link back to Glyphicons whenever possible.

{% highlight scss %} -@brand-primary: #428bca; +@brand-primary: darken(#428bca, 6.5%); // #337ab7 @brand-success: #5cb85c; @brand-info: #5bc0de; @brand-warning: #f0ad4e; diff --git a/less/variables.less b/less/variables.less index b13be9d44..59747d536 100644 --- a/less/variables.less +++ b/less/variables.less @@ -14,7 +14,7 @@ @gray-light: lighten(@gray-base, 46.7%); // #777 @gray-lighter: lighten(@gray-base, 93.5%); // #eee -@brand-primary: darken(#428bca, 6.5%); +@brand-primary: darken(#428bca, 6.5%); // #337ab7 @brand-success: #5cb85c; @brand-info: #5bc0de; @brand-warning: #f0ad4e; -- cgit v1.2.3 From c8855a7ad120b37fd9a25125f90093478656362f Mon Sep 17 00:00:00 2001 From: Bastien Date: Fri, 12 Dec 2014 14:22:41 +0100 Subject: Add glyphicons fonts in woff2 --- docs/_includes/getting-started/whats-included.html | 3 ++- fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes less/glyphicons.less | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 fonts/glyphicons-halflings-regular.woff2 diff --git a/docs/_includes/getting-started/whats-included.html b/docs/_includes/getting-started/whats-included.html index 42e2ea482..8aa8cf2a9 100644 --- a/docs/_includes/getting-started/whats-included.html +++ b/docs/_includes/getting-started/whats-included.html @@ -28,7 +28,8 @@ bootstrap/ ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf - └── glyphicons-halflings-regular.woff + ├── glyphicons-halflings-regular.woff + └── glyphicons-halflings-regular.woff2 {% endhighlight %} diff --git a/fonts/glyphicons-halflings-regular.woff2 b/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 000000000..64539b54c Binary files /dev/null and b/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/less/glyphicons.less b/less/glyphicons.less index eaf9aa229..cb02f9945 100644 --- a/less/glyphicons.less +++ b/less/glyphicons.less @@ -12,6 +12,7 @@ font-family: 'Glyphicons Halflings'; src: url('@{icon-font-path}@{icon-font-name}.eot'); src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'), + url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'), url('@{icon-font-path}@{icon-font-name}.woff') format('woff'), url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'), url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg'); -- cgit v1.2.3