bootstrap-sass 2.1.1.0 → 2.2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bootstrap-sass might be problematic. Click here for more details.
- data/README.md +7 -5
- data/lib/bootstrap-sass/compass_functions.rb +9 -5
- data/vendor/assets/javascripts/bootstrap-affix.js +4 -2
- data/vendor/assets/javascripts/bootstrap-alert.js +2 -4
- data/vendor/assets/javascripts/bootstrap-button.js +5 -7
- data/vendor/assets/javascripts/bootstrap-carousel.js +12 -12
- data/vendor/assets/javascripts/bootstrap-collapse.js +9 -11
- data/vendor/assets/javascripts/bootstrap-dropdown.js +9 -11
- data/vendor/assets/javascripts/bootstrap-modal.js +20 -25
- data/vendor/assets/javascripts/bootstrap-popover.js +1 -1
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +1 -1
- data/vendor/assets/javascripts/bootstrap-tab.js +5 -7
- data/vendor/assets/javascripts/bootstrap-tooltip.js +12 -11
- data/vendor/assets/javascripts/bootstrap-transition.js +5 -5
- data/vendor/assets/javascripts/bootstrap-typeahead.js +19 -9
- data/vendor/assets/stylesheets/bootstrap-responsive.scss +1 -0
- data/vendor/assets/stylesheets/bootstrap.scss +1 -0
- data/vendor/assets/stylesheets/bootstrap/_accordion.scss +2 -2
- data/vendor/assets/stylesheets/bootstrap/_alerts.scss +2 -2
- data/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_button-groups.scss +5 -8
- data/vendor/assets/stylesheets/bootstrap/_buttons.scss +18 -17
- data/vendor/assets/stylesheets/bootstrap/_carousel.scss +4 -4
- data/vendor/assets/stylesheets/bootstrap/_close.scss +3 -3
- data/vendor/assets/stylesheets/bootstrap/_code.scss +3 -3
- data/vendor/assets/stylesheets/bootstrap/_component-animations.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_dropdowns.scss +34 -7
- data/vendor/assets/stylesheets/bootstrap/_forms.scss +50 -18
- data/vendor/assets/stylesheets/bootstrap/_grid.scss +2 -1
- data/vendor/assets/stylesheets/bootstrap/_hero-unit.scss +7 -6
- data/vendor/assets/stylesheets/bootstrap/_labels-badges.scss +15 -14
- data/vendor/assets/stylesheets/bootstrap/_layouts.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_media.scss +55 -0
- data/vendor/assets/stylesheets/bootstrap/_mixins.scss +99 -62
- data/vendor/assets/stylesheets/bootstrap/_modals.scss +12 -15
- data/vendor/assets/stylesheets/bootstrap/_navbar.scss +11 -11
- data/vendor/assets/stylesheets/bootstrap/_navs.scss +5 -4
- data/vendor/assets/stylesheets/bootstrap/_pager.scss +11 -10
- data/vendor/assets/stylesheets/bootstrap/_pagination.scss +70 -13
- data/vendor/assets/stylesheets/bootstrap/_popovers.scss +4 -4
- data/vendor/assets/stylesheets/bootstrap/_progress-bars.scss +5 -5
- data/vendor/assets/stylesheets/bootstrap/_reset.scss +8 -6
- data/vendor/assets/stylesheets/bootstrap/_responsive-1200px-min.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss +20 -1
- data/vendor/assets/stylesheets/bootstrap/_responsive-768px-979px.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss +13 -5
- data/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss +16 -1
- data/vendor/assets/stylesheets/bootstrap/_scaffolding.scss +1 -1
- data/vendor/assets/stylesheets/bootstrap/_sprites.scss +5 -5
- data/vendor/assets/stylesheets/bootstrap/_tables.scss +11 -11
- data/vendor/assets/stylesheets/bootstrap/_thumbnails.scss +4 -4
- data/vendor/assets/stylesheets/bootstrap/_tooltip.scss +3 -3
- data/vendor/assets/stylesheets/bootstrap/_type.scss +32 -26
- data/vendor/assets/stylesheets/bootstrap/_utilities.scss +16 -1
- data/vendor/assets/stylesheets/bootstrap/_variables.scss +28 -6
- data/vendor/assets/stylesheets/bootstrap/_wells.scss +5 -5
- data/vendor/assets/stylesheets/bootstrap/bootstrap.scss +63 -0
- data/vendor/assets/stylesheets/bootstrap/responsive.scss +48 -0
- metadata +25 -6
- data/vendor/assets/stylesheets/_bootstrap-responsive.scss +0 -42
- data/vendor/assets/stylesheets/_bootstrap.scss +0 -62
@@ -10,8 +10,8 @@
|
|
10
10
|
margin-bottom: 20px;
|
11
11
|
background-color: $wellBackground;
|
12
12
|
border: 1px solid darken($wellBackground, 7%);
|
13
|
-
@include border-radius(
|
14
|
-
@include box-shadow(
|
13
|
+
@include border-radius($baseBorderRadius);
|
14
|
+
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
|
15
15
|
blockquote {
|
16
16
|
border-color: #ddd;
|
17
17
|
border-color: rgba(0,0,0,.15);
|
@@ -21,9 +21,9 @@
|
|
21
21
|
// Sizes
|
22
22
|
.well-large {
|
23
23
|
padding: 24px;
|
24
|
-
@include border-radius(
|
24
|
+
@include border-radius($borderRadiusLarge);
|
25
25
|
}
|
26
26
|
.well-small {
|
27
27
|
padding: 9px;
|
28
|
-
@include border-radius(
|
29
|
-
}
|
28
|
+
@include border-radius($borderRadiusSmall);
|
29
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.2.1
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
10
|
+
|
11
|
+
// Core variables and mixins
|
12
|
+
@import "variables"; // Modify this for custom colors, font-sizes, etc
|
13
|
+
@import "mixins";
|
14
|
+
|
15
|
+
// CSS Reset
|
16
|
+
@import "reset";
|
17
|
+
|
18
|
+
// Grid system and page structure
|
19
|
+
@import "scaffolding";
|
20
|
+
@import "grid";
|
21
|
+
@import "layouts";
|
22
|
+
|
23
|
+
// Base CSS
|
24
|
+
@import "type";
|
25
|
+
@import "code";
|
26
|
+
@import "forms";
|
27
|
+
@import "tables";
|
28
|
+
|
29
|
+
// Components: common
|
30
|
+
@import "sprites";
|
31
|
+
@import "dropdowns";
|
32
|
+
@import "wells";
|
33
|
+
@import "component-animations";
|
34
|
+
@import "close";
|
35
|
+
|
36
|
+
// Components: Buttons & Alerts
|
37
|
+
@import "buttons";
|
38
|
+
@import "button-groups";
|
39
|
+
@import "alerts"; // Note: alerts share common CSS with buttons and thus have styles in buttons
|
40
|
+
|
41
|
+
// Components: Nav
|
42
|
+
@import "navs";
|
43
|
+
@import "navbar";
|
44
|
+
@import "breadcrumbs";
|
45
|
+
@import "pagination";
|
46
|
+
@import "pager";
|
47
|
+
|
48
|
+
// Components: Popovers
|
49
|
+
@import "modals";
|
50
|
+
@import "tooltip";
|
51
|
+
@import "popovers";
|
52
|
+
|
53
|
+
// Components: Misc
|
54
|
+
@import "thumbnails";
|
55
|
+
@import "media";
|
56
|
+
@import "labels-badges";
|
57
|
+
@import "progress-bars";
|
58
|
+
@import "accordion";
|
59
|
+
@import "carousel";
|
60
|
+
@import "hero-unit";
|
61
|
+
|
62
|
+
// Utility classes
|
63
|
+
@import "utilities"; // Has to be last to override when necessary
|
@@ -0,0 +1,48 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap Responsive v2.2.1
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
// Responsive
|
13
|
+
// For phone and tablet devices
|
14
|
+
// -------------------------------------------------------------
|
15
|
+
|
16
|
+
|
17
|
+
// REPEAT VARIABLES & MIXINS
|
18
|
+
// -------------------------
|
19
|
+
// Required since we compile the responsive stuff separately
|
20
|
+
|
21
|
+
@import "variables"; // Modify this for custom colors, font-sizes, etc
|
22
|
+
@import "mixins";
|
23
|
+
|
24
|
+
|
25
|
+
// RESPONSIVE CLASSES
|
26
|
+
// ------------------
|
27
|
+
|
28
|
+
@import "responsive-utilities";
|
29
|
+
|
30
|
+
|
31
|
+
// MEDIA QUERIES
|
32
|
+
// ------------------
|
33
|
+
|
34
|
+
// Large desktops
|
35
|
+
@import "responsive-1200px-min";
|
36
|
+
|
37
|
+
// Tablets to regular desktops
|
38
|
+
@import "responsive-768px-979px";
|
39
|
+
|
40
|
+
// Phones to portrait tablets and narrow desktops
|
41
|
+
@import "responsive-767px-max";
|
42
|
+
|
43
|
+
|
44
|
+
// RESPONSIVE NAVBAR
|
45
|
+
// ------------------
|
46
|
+
|
47
|
+
// From 979px and below, show a button to toggle navbar contents
|
48
|
+
@import "responsive-navbar";
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: compass
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ~>
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: '3.
|
37
|
+
version: '3.2'
|
38
38
|
type: :development
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,15 +42,29 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: '3.
|
45
|
+
version: '3.2'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: sass
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '3.2'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.2'
|
46
62
|
description:
|
47
63
|
email: tom@conceptcoding.co.uk
|
48
64
|
executables: []
|
49
65
|
extensions: []
|
50
66
|
extra_rdoc_files: []
|
51
67
|
files:
|
52
|
-
- vendor/assets/stylesheets/_bootstrap-responsive.scss
|
53
|
-
- vendor/assets/stylesheets/_bootstrap.scss
|
54
68
|
- vendor/assets/stylesheets/bootstrap/_accordion.scss
|
55
69
|
- vendor/assets/stylesheets/bootstrap/_alerts.scss
|
56
70
|
- vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss
|
@@ -66,6 +80,7 @@ files:
|
|
66
80
|
- vendor/assets/stylesheets/bootstrap/_hero-unit.scss
|
67
81
|
- vendor/assets/stylesheets/bootstrap/_labels-badges.scss
|
68
82
|
- vendor/assets/stylesheets/bootstrap/_layouts.scss
|
83
|
+
- vendor/assets/stylesheets/bootstrap/_media.scss
|
69
84
|
- vendor/assets/stylesheets/bootstrap/_mixins.scss
|
70
85
|
- vendor/assets/stylesheets/bootstrap/_modals.scss
|
71
86
|
- vendor/assets/stylesheets/bootstrap/_navbar.scss
|
@@ -89,6 +104,10 @@ files:
|
|
89
104
|
- vendor/assets/stylesheets/bootstrap/_utilities.scss
|
90
105
|
- vendor/assets/stylesheets/bootstrap/_variables.scss
|
91
106
|
- vendor/assets/stylesheets/bootstrap/_wells.scss
|
107
|
+
- vendor/assets/stylesheets/bootstrap/bootstrap.scss
|
108
|
+
- vendor/assets/stylesheets/bootstrap/responsive.scss
|
109
|
+
- vendor/assets/stylesheets/bootstrap-responsive.scss
|
110
|
+
- vendor/assets/stylesheets/bootstrap.scss
|
92
111
|
- vendor/assets/javascripts/bootstrap-affix.js
|
93
112
|
- vendor/assets/javascripts/bootstrap-alert.js
|
94
113
|
- vendor/assets/javascripts/bootstrap-button.js
|
@@ -1,42 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Bootstrap Responsive v2.1.1
|
3
|
-
//
|
4
|
-
// Copyright 2012 Twitter, Inc
|
5
|
-
// Licensed under the Apache License v2.0
|
6
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
7
|
-
//
|
8
|
-
// Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
// Converted to Sass by @thomasmcdonald_, and distributed as bootstrap-sass
|
10
|
-
|
11
|
-
// REPEAT VARIABLES & MIXINS
|
12
|
-
// -------------------------
|
13
|
-
// Required since we compile the responsive stuff separately
|
14
|
-
|
15
|
-
@import "bootstrap/variables"; // Modify this for custom colors, font-sizes, etc
|
16
|
-
@import "bootstrap/mixins";
|
17
|
-
|
18
|
-
|
19
|
-
// RESPONSIVE CLASSES
|
20
|
-
// ------------------
|
21
|
-
|
22
|
-
@import "bootstrap/responsive-utilities";
|
23
|
-
|
24
|
-
|
25
|
-
// MEDIA QUERIES
|
26
|
-
// ------------------
|
27
|
-
|
28
|
-
// Large desktops
|
29
|
-
@import "bootstrap/responsive-1200px-min";
|
30
|
-
|
31
|
-
// Tablets to regular desktops
|
32
|
-
@import "bootstrap/responsive-768px-979px";
|
33
|
-
|
34
|
-
// Phones to portrait tablets and narrow desktops
|
35
|
-
@import "bootstrap/responsive-767px-max";
|
36
|
-
|
37
|
-
|
38
|
-
// RESPONSIVE NAVBAR
|
39
|
-
// ------------------
|
40
|
-
|
41
|
-
// From 979px and below, show a button to toggle navbar contents
|
42
|
-
@import "bootstrap/responsive-navbar";
|
@@ -1,62 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Bootstrap v2.1.1
|
3
|
-
//
|
4
|
-
// Copyright 2012 Twitter, Inc
|
5
|
-
// Licensed under the Apache License v2.0
|
6
|
-
// http://www.apache.org/licenses/LICENSE-2.0
|
7
|
-
//
|
8
|
-
// Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
// Converted to Sass by @thomasmcdonald_, and distributed as bootstrap-sass
|
10
|
-
|
11
|
-
// Core variables and mixins
|
12
|
-
@import "bootstrap/variables"; // Modify this for custom colors, font-sizes, etc
|
13
|
-
@import "bootstrap/mixins";
|
14
|
-
|
15
|
-
// CSS Reset
|
16
|
-
@import "bootstrap/reset";
|
17
|
-
|
18
|
-
// Grid system and page structure
|
19
|
-
@import "bootstrap/scaffolding";
|
20
|
-
@import "bootstrap/grid";
|
21
|
-
@import "bootstrap/layouts";
|
22
|
-
|
23
|
-
// Base CSS
|
24
|
-
@import "bootstrap/type";
|
25
|
-
@import "bootstrap/code";
|
26
|
-
@import "bootstrap/forms";
|
27
|
-
@import "bootstrap/tables";
|
28
|
-
|
29
|
-
// Components: common
|
30
|
-
@import "bootstrap/sprites";
|
31
|
-
@import "bootstrap/dropdowns";
|
32
|
-
@import "bootstrap/wells";
|
33
|
-
@import "bootstrap/component-animations";
|
34
|
-
@import "bootstrap/close";
|
35
|
-
|
36
|
-
// Components: Buttons & Alerts
|
37
|
-
@import "bootstrap/buttons";
|
38
|
-
@import "bootstrap/button-groups";
|
39
|
-
@import "bootstrap/alerts"; // Note: alerts share common CSS with buttons and thus have styles in _buttons.scss
|
40
|
-
|
41
|
-
// Components: Nav
|
42
|
-
@import "bootstrap/navs";
|
43
|
-
@import "bootstrap/navbar";
|
44
|
-
@import "bootstrap/breadcrumbs";
|
45
|
-
@import "bootstrap/pagination";
|
46
|
-
@import "bootstrap/pager";
|
47
|
-
|
48
|
-
// Components: Popovers
|
49
|
-
@import "bootstrap/modals";
|
50
|
-
@import "bootstrap/tooltip";
|
51
|
-
@import "bootstrap/popovers";
|
52
|
-
|
53
|
-
// Components: Misc
|
54
|
-
@import "bootstrap/thumbnails";
|
55
|
-
@import "bootstrap/labels-badges";
|
56
|
-
@import "bootstrap/progress-bars";
|
57
|
-
@import "bootstrap/accordion";
|
58
|
-
@import "bootstrap/carousel";
|
59
|
-
@import "bootstrap/hero-unit";
|
60
|
-
|
61
|
-
// Utility classes
|
62
|
-
@import "bootstrap/utilities"; // Has to be last to override when necessary
|