Skip to content

Commit d98bcb6

Browse files
committedJun 20, 2013
add bootstrap integration example hakimel#20
1 parent 4fd661f commit d98bcb6

7 files changed

+6301
-5
lines changed
 

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ The project is tested in Chrome and Firefox. It Should Work™ in the current st
7878

7979
## History
8080

81+
#### 0.5.1
82+
- Add Bootstrap example
83+
8184
#### 0.5.0
8285
- Split button visual style and functional styles apart for framework compatibility
8386
- Spinner size now determined by measuring button using JavaScript

‎css/ladda.scss

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ $spinnerSize: 32px;
2727
}
2828

2929
@mixin transition( $value ) {
30-
@include prefix( transition, $value );
30+
-webkit-transition: $value !important; // important to override bootstrap
31+
-moz-transition: $value !important;
32+
-ms-transition: $value !important;
33+
-o-transition: $value !important;
34+
transition: $value !important;
3135
}
3236

3337
@mixin transform( $value ) {

‎dist/ladda-themeless.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/ladda.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/ladda.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Ladda",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Buttons with built-in loading indicators",
55
"homepage": "http://lab.hakim.se/ladda",
66
"scripts": {

‎test/bootstrap.html

+6,289
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.