aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-24 12:29:45 -0700
committerMark Otto <[email protected]>2013-08-24 12:29:45 -0700
commit74a778a7e66339f71ba84e4855d54a203f1dd52b (patch)
tree909120e4b3c815514f3bddcc4aefb901f8784a89
parentab3e1762d4b20478c83c2eda7a2ff86e8a662020 (diff)
parenta167a910d9ee79d846b9f8b83ed45a3093cb001c (diff)
downloadbootstrap-74a778a7e66339f71ba84e4855d54a203f1dd52b.tar.xz
bootstrap-74a778a7e66339f71ba84e4855d54a203f1dd52b.zip
Merge branch 'master' of github.com:twbs/bootstrap
-rw-r--r--index.html2
-rw-r--r--less/glyphicons.less4
-rw-r--r--less/mixins.less4
3 files changed, 9 insertions, 1 deletions
diff --git a/index.html b/index.html
index 187f3b643..71c34922e 100644
--- a/index.html
+++ b/index.html
@@ -9,7 +9,7 @@ base_url: "./"
<h1>Bootstrap</h1>
<p class="lead">Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.</p>
<p>
- <a href="{{ site.download }}" class="btn btn-outline-inverse btn-lg" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download 3.0.0']);">Download Bootstrap</a>
+ <a href="{{ site.download }}" class="btn btn-outline-inverse btn-lg" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download {{ site.current_version }}']);">Download Bootstrap</a>
</p>
</div>
</main>
diff --git a/less/glyphicons.less b/less/glyphicons.less
index 0e0ba986c..7b66e6ba1 100644
--- a/less/glyphicons.less
+++ b/less/glyphicons.less
@@ -27,6 +27,10 @@
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
+
+ &:empty{
+ width: 1em;
+ }
}
// Individual icons
diff --git a/less/mixins.less b/less/mixins.less
index 416c6a222..f956361fd 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -128,6 +128,10 @@
-webkit-transition: @transition;
transition: @transition;
}
+.transition-property(@transition-property) {
+ -webkit-transition-property: @transition-property;
+ transition-property: @transition-property;
+}
.transition-delay(@transition-delay) {
-webkit-transition-delay: @transition-delay;
transition-delay: @transition-delay;