compass-bootstrap 0.1.2 → 0.1.3
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.
- data/.gitignore +4 -0
- data/README.mkdn +112 -21
- data/lib/compass-bootstrap.rb +6 -1
- data/lib/compass-bootstrap/rails.rb +7 -0
- data/lib/compass-bootstrap/rails/engine.rb +7 -0
- data/lib/compass-bootstrap/version.rb +1 -1
- data/stylesheets/compass-bootstrap/_compass_bootstrap.scss +5 -2
- data/stylesheets/compass-bootstrap/_forms.scss +139 -67
- data/stylesheets/compass-bootstrap/_mixins.scss +210 -0
- data/stylesheets/compass-bootstrap/_patterns.scss +331 -146
- data/stylesheets/compass-bootstrap/_reset.scss +6 -2
- data/stylesheets/compass-bootstrap/_scaffolding.scss +89 -62
- data/stylesheets/compass-bootstrap/_tables.scss +35 -12
- data/stylesheets/compass-bootstrap/_type.scss +7 -8
- data/stylesheets/compass-bootstrap/_variables.scss +60 -0
- data/vendor/assets/javascripts/bootstrap-alerts.js +104 -0
- data/vendor/assets/javascripts/bootstrap-dropdown.js +50 -0
- data/vendor/assets/javascripts/bootstrap-modal.js +227 -0
- data/vendor/assets/javascripts/bootstrap-popover.js +77 -0
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +105 -0
- data/vendor/assets/javascripts/bootstrap-tabs.js +62 -0
- data/vendor/assets/javascripts/bootstrap-twipsy.js +307 -0
- data/vendor/assets/stylesheets/compass-bootstrap/_compass_bootstrap.scss +29 -0
- data/{templates → vendor/assets/stylesheets}/compass-bootstrap/_forms.scss +139 -67
- data/vendor/assets/stylesheets/compass-bootstrap/_mixins.scss +210 -0
- data/{templates → vendor/assets/stylesheets}/compass-bootstrap/_patterns.scss +331 -146
- data/{templates → vendor/assets/stylesheets}/compass-bootstrap/_reset.scss +6 -2
- data/vendor/assets/stylesheets/compass-bootstrap/_scaffolding.scss +137 -0
- data/{templates → vendor/assets/stylesheets}/compass-bootstrap/_tables.scss +35 -12
- data/{templates → vendor/assets/stylesheets}/compass-bootstrap/_type.scss +7 -8
- data/vendor/assets/stylesheets/compass-bootstrap/_variables.scss +60 -0
- data/{templates → vendor/assets/stylesheets}/compass-bootstrap/compass_bootstrap.scss +5 -2
- data/vendor/assets/stylesheets/compass-bootstrap/manifest.rb +20 -0
- metadata +50 -61
- data/stylesheets/compass-bootstrap/_preboot.scss +0 -276
- data/templates/compass-bootstrap/_preboot.scss +0 -292
- data/templates/compass-bootstrap/_scaffolding.scss +0 -110
- data/templates/compass-bootstrap/manifest.rb +0 -12
@@ -1,5 +1,4 @@
|
|
1
|
-
/* Reset.
|
2
|
-
|
1
|
+
/* Reset.less
|
3
2
|
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
|
4
3
|
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
|
5
4
|
|
@@ -31,6 +30,11 @@ html {
|
|
31
30
|
a:focus {
|
32
31
|
outline: thin dotted;
|
33
32
|
}
|
33
|
+
// Hover & Active
|
34
|
+
a:hover,
|
35
|
+
a:active {
|
36
|
+
outline: 0;
|
37
|
+
}
|
34
38
|
|
35
39
|
// Display in IE6-9 and FF3
|
36
40
|
// -------------------------
|
@@ -0,0 +1,137 @@
|
|
1
|
+
/*
|
2
|
+
* Scaffolding
|
3
|
+
* Basic and global styles for generating a grid system, structural layout, and page templates
|
4
|
+
* ------------------------------------------------------------------------------------------- */
|
5
|
+
|
6
|
+
|
7
|
+
// STRUCTURAL LAYOUT
|
8
|
+
// -----------------
|
9
|
+
|
10
|
+
html, body {
|
11
|
+
background-color: $white;
|
12
|
+
}
|
13
|
+
body {
|
14
|
+
margin: 0;
|
15
|
+
@include font-sans-serif(normal,$basefont,$baseline);
|
16
|
+
color: $grayDark;
|
17
|
+
}
|
18
|
+
|
19
|
+
// Container (centered, fixed-width layouts)
|
20
|
+
.container {
|
21
|
+
@include fixed-container();
|
22
|
+
}
|
23
|
+
|
24
|
+
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
25
|
+
.container-fluid {
|
26
|
+
position: relative;
|
27
|
+
padding-left: 20px;
|
28
|
+
padding-right: 20px;
|
29
|
+
@include clearfix();
|
30
|
+
> .sidebar {
|
31
|
+
float: left;
|
32
|
+
width: 220px;
|
33
|
+
}
|
34
|
+
// TODO in v2: rename this and .popover .content to be more specific
|
35
|
+
> .content {
|
36
|
+
float: left;
|
37
|
+
min-width: 700px;
|
38
|
+
max-width: 1180px;
|
39
|
+
margin-left: 20px;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
// Toggling content
|
44
|
+
.hide {
|
45
|
+
display: none;
|
46
|
+
}
|
47
|
+
.show {
|
48
|
+
display: block;
|
49
|
+
}
|
50
|
+
|
51
|
+
|
52
|
+
// BASE STYLES
|
53
|
+
// -----------
|
54
|
+
|
55
|
+
// Links
|
56
|
+
a {
|
57
|
+
color: $linkColor;
|
58
|
+
text-decoration: none;
|
59
|
+
line-height: inherit;
|
60
|
+
font-weight: inherit;
|
61
|
+
&:hover {
|
62
|
+
color: $linkColorHover;
|
63
|
+
text-decoration: underline;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
// Quick floats
|
68
|
+
.pull-right {
|
69
|
+
float: right;
|
70
|
+
}
|
71
|
+
.pull-left {
|
72
|
+
float: left;
|
73
|
+
}
|
74
|
+
|
75
|
+
|
76
|
+
// GRID SYSTEM
|
77
|
+
// -----------
|
78
|
+
// To customize the grid system, bring up the variables.less file and change the column count, size, and gutter there
|
79
|
+
|
80
|
+
.row {
|
81
|
+
@include clearfix();
|
82
|
+
margin-left: -1 * $gridGutterWidth;
|
83
|
+
}
|
84
|
+
|
85
|
+
// Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)
|
86
|
+
// Credit to $dhg for the idea
|
87
|
+
[class*="span"] {
|
88
|
+
@include gridColumn();
|
89
|
+
}
|
90
|
+
|
91
|
+
// Default columns
|
92
|
+
.span1 { @include columns(1); }
|
93
|
+
.span2 { @include columns(2); }
|
94
|
+
.span3 { @include columns(3); }
|
95
|
+
.span4 { @include columns(4); }
|
96
|
+
.span5 { @include columns(5); }
|
97
|
+
.span6 { @include columns(6); }
|
98
|
+
.span7 { @include columns(7); }
|
99
|
+
.span8 { @include columns(8); }
|
100
|
+
.span9 { @include columns(9); }
|
101
|
+
.span10 { @include columns(10); }
|
102
|
+
.span11 { @include columns(11); }
|
103
|
+
.span12 { @include columns(12); }
|
104
|
+
.span13 { @include columns(13); }
|
105
|
+
.span14 { @include columns(14); }
|
106
|
+
.span15 { @include columns(15); }
|
107
|
+
.span16 { @include columns(16); }
|
108
|
+
|
109
|
+
// For optional 24-column grid
|
110
|
+
.span17 { @include columns(17); }
|
111
|
+
.span18 { @include columns(18); }
|
112
|
+
.span19 { @include columns(19); }
|
113
|
+
.span20 { @include columns(20); }
|
114
|
+
.span21 { @include columns(21); }
|
115
|
+
.span22 { @include columns(22); }
|
116
|
+
.span23 { @include columns(23); }
|
117
|
+
.span24 { @include columns(24); }
|
118
|
+
|
119
|
+
// Offset column options
|
120
|
+
.offset1 { @include offset(1); }
|
121
|
+
.offset2 { @include offset(2); }
|
122
|
+
.offset3 { @include offset(3); }
|
123
|
+
.offset4 { @include offset(4); }
|
124
|
+
.offset5 { @include offset(5); }
|
125
|
+
.offset6 { @include offset(6); }
|
126
|
+
.offset7 { @include offset(7); }
|
127
|
+
.offset8 { @include offset(8); }
|
128
|
+
.offset9 { @include offset(9); }
|
129
|
+
.offset10 { @include offset(10); }
|
130
|
+
.offset11 { @include offset(11); }
|
131
|
+
.offset12 { @include offset(12); }
|
132
|
+
|
133
|
+
// Unique column sizes for 16-column grid
|
134
|
+
.span-one-third { width: 300px; }
|
135
|
+
.span-two-thirds { width: 620px; }
|
136
|
+
.offset-one-third { margin-left: 340px; }
|
137
|
+
.offset-two-thirds { margin-left: 660px; }
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Tables.
|
2
|
+
* Tables.less
|
3
3
|
* Tables for, you guessed it, tabular data
|
4
4
|
* ---------------------------------------- */
|
5
5
|
|
@@ -11,19 +11,43 @@ table {
|
|
11
11
|
width: 100%;
|
12
12
|
margin-bottom: $baseline;
|
13
13
|
padding: 0;
|
14
|
-
border-collapse: separate;
|
15
|
-
|
14
|
+
border-collapse: separate; // Done so we can round those corners!
|
15
|
+
*border-collapse: collapse; /* IE7, collapse table to remove spacing */
|
16
|
+
font-size: $basefont;
|
17
|
+
border: 1px solid #ddd;
|
18
|
+
@include border-radius(4px);
|
16
19
|
th, td {
|
17
20
|
padding: 10px 10px 9px;
|
18
|
-
line-height: $baseline
|
21
|
+
line-height: $baseline;
|
19
22
|
text-align: left;
|
20
|
-
vertical-align: middle;
|
21
|
-
border-bottom: 1px solid #ddd;
|
22
23
|
}
|
23
24
|
th {
|
24
25
|
padding-top: 9px;
|
25
26
|
font-weight: bold;
|
26
|
-
|
27
|
+
vertical-align: middle;
|
28
|
+
border-bottom: 1px solid #ddd;
|
29
|
+
}
|
30
|
+
td {
|
31
|
+
vertical-align: top;
|
32
|
+
}
|
33
|
+
th + th,
|
34
|
+
td + td {
|
35
|
+
border-left: 1px solid #ddd;
|
36
|
+
}
|
37
|
+
tr + tr td {
|
38
|
+
border-top: 1px solid #ddd;
|
39
|
+
}
|
40
|
+
tbody tr:first-child td:first-child {
|
41
|
+
@include border-radius(4px 0 0 0);
|
42
|
+
}
|
43
|
+
tbody tr:first-child td:last-child {
|
44
|
+
@include border-radius(0 4px 0 0);
|
45
|
+
}
|
46
|
+
tbody tr:last-child td:first-child {
|
47
|
+
@include border-radius(0 0 0 4px);
|
48
|
+
}
|
49
|
+
tbody tr:last-child td:last-child {
|
50
|
+
@include border-radius(0 0 4px 0);
|
27
51
|
}
|
28
52
|
}
|
29
53
|
|
@@ -60,7 +84,6 @@ table {
|
|
60
84
|
.headerSortDown {
|
61
85
|
background-color: rgba(141,192,219,.25);
|
62
86
|
text-shadow: 0 1px 1px rgba(255,255,255,.75);
|
63
|
-
@include border-radius(3px 3px 0 0);
|
64
87
|
}
|
65
88
|
// Style the ascending (reverse alphabetical) column header
|
66
89
|
.header:hover {
|
@@ -73,7 +96,7 @@ table {
|
|
73
96
|
.headerSortDown:hover {
|
74
97
|
&:after {
|
75
98
|
visibility:visible;
|
76
|
-
@include
|
99
|
+
@include opacity(60);
|
77
100
|
}
|
78
101
|
}
|
79
102
|
// Style the ascending (reverse alphabetical) column header
|
@@ -84,8 +107,8 @@ table {
|
|
84
107
|
border-right: 4px solid transparent;
|
85
108
|
border-top: 4px solid #000;
|
86
109
|
visibility:visible;
|
87
|
-
@include
|
88
|
-
@include
|
110
|
+
@include box-shadow(none); //can't add boxshadow to downward facing arrow :(
|
111
|
+
@include opacity(60);
|
89
112
|
}
|
90
113
|
}
|
91
114
|
}
|
@@ -145,4 +168,4 @@ table {
|
|
145
168
|
.headerSortDown.purple {
|
146
169
|
background-color: lighten($purple, 40%);
|
147
170
|
}
|
148
|
-
}
|
171
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/* Typography.
|
1
|
+
/* Typography.less
|
2
2
|
* Headings, body text, lists, code, and more for a versatile and durable typography system
|
3
3
|
* ---------------------------------------------------------------------------------------- */
|
4
4
|
|
@@ -7,7 +7,7 @@
|
|
7
7
|
// ---------
|
8
8
|
|
9
9
|
p {
|
10
|
-
@include shorthand(normal,$basefont,$baseline);
|
10
|
+
@include font-shorthand(normal,$basefont,$baseline);
|
11
11
|
margin-bottom: $baseline / 2;
|
12
12
|
small {
|
13
13
|
font-size: $basefont - 2;
|
@@ -113,7 +113,7 @@ dl {
|
|
113
113
|
|
114
114
|
// Horizontal rules
|
115
115
|
hr {
|
116
|
-
margin:
|
116
|
+
margin: 20px 0 19px;
|
117
117
|
border: 0;
|
118
118
|
border-bottom: 1px solid #eee;
|
119
119
|
}
|
@@ -122,7 +122,6 @@ hr {
|
|
122
122
|
strong {
|
123
123
|
font-style: inherit;
|
124
124
|
font-weight: bold;
|
125
|
-
line-height: inherit;
|
126
125
|
}
|
127
126
|
em {
|
128
127
|
font-style: italic;
|
@@ -139,12 +138,12 @@ blockquote {
|
|
139
138
|
border-left: 5px solid #eee;
|
140
139
|
padding-left: 15px;
|
141
140
|
p {
|
142
|
-
@include shorthand(300,14px,$baseline);
|
141
|
+
@include font-shorthand(300,14px,$baseline);
|
143
142
|
margin-bottom: 0;
|
144
143
|
}
|
145
144
|
small {
|
146
145
|
display: block;
|
147
|
-
@include shorthand(300,12px,$baseline);
|
146
|
+
@include font-shorthand(300,12px,$baseline);
|
148
147
|
color: $grayLight;
|
149
148
|
&:before {
|
150
149
|
content: '\2014 \00A0';
|
@@ -174,7 +173,7 @@ code {
|
|
174
173
|
pre {
|
175
174
|
background-color: #f5f5f5;
|
176
175
|
display: block;
|
177
|
-
padding: $baseline - 1;
|
176
|
+
padding: ($baseline - 1) / 2;
|
178
177
|
margin: 0 0 $baseline;
|
179
178
|
line-height: $baseline;
|
180
179
|
font-size: 12px;
|
@@ -185,4 +184,4 @@ pre {
|
|
185
184
|
white-space: pre-wrap;
|
186
185
|
word-wrap: break-word;
|
187
186
|
|
188
|
-
}
|
187
|
+
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
/* Variables.less
|
2
|
+
* Variables to customize the look and feel of Bootstrap
|
3
|
+
* ----------------------------------------------------- */
|
4
|
+
|
5
|
+
|
6
|
+
// Links
|
7
|
+
$linkColor: #0069d6 !default;
|
8
|
+
$linkColorHover: darken($linkColor, 15) !default;
|
9
|
+
|
10
|
+
// Grays
|
11
|
+
$black: #000 !default;
|
12
|
+
$grayDark: lighten($black, 25%) !default;
|
13
|
+
$gray: lighten($black, 50%) !default;
|
14
|
+
$grayLight: lighten($black, 75%) !default;
|
15
|
+
$grayLighter: lighten($black, 90%) !default;
|
16
|
+
$white: #fff !default;
|
17
|
+
|
18
|
+
// Accent Colors
|
19
|
+
$blue: #049CDB !default;
|
20
|
+
$blueDark: #0064CD !default;
|
21
|
+
$green: #46a546 !default;
|
22
|
+
$red: #9d261d !default;
|
23
|
+
$yellow: #ffc40d !default;
|
24
|
+
$orange: #f89406 !default;
|
25
|
+
$pink: #c3325f !default;
|
26
|
+
$purple: #7a43b6 !default;
|
27
|
+
|
28
|
+
// Baseline grid
|
29
|
+
$basefont: 13px !default;
|
30
|
+
$baseline: 18px !default;
|
31
|
+
|
32
|
+
// Griditude
|
33
|
+
// Modify the grid styles in mixins.less
|
34
|
+
$gridColumns: 16 !default;
|
35
|
+
$gridColumnWidth: 40px !default;
|
36
|
+
$gridGutterWidth: 20px !default;
|
37
|
+
$extraSpace: ($gridGutterWidth * 2) !default; // For our grid calculations
|
38
|
+
$siteWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;
|
39
|
+
|
40
|
+
// Color Scheme
|
41
|
+
// Use this to roll your own color schemes if you like (unused by Bootstrap by default)
|
42
|
+
$baseColor: $blue !default; // Set a base color
|
43
|
+
$complement: spin($baseColor, 180) !default; // Determine a complementary color
|
44
|
+
$split1: spin($baseColor, 158) !default; // Split complements
|
45
|
+
$split2: spin($baseColor, -158) !default;
|
46
|
+
$triad1: spin($baseColor, 135) !default; // Triads colors
|
47
|
+
$triad2: spin($baseColor, -135) !default;
|
48
|
+
$tetra1: spin($baseColor, 90) !default; // Tetra colors
|
49
|
+
$tetra2: spin($baseColor, -90) !default;
|
50
|
+
$analog1: spin($baseColor, 22) !default; // Analogs colors
|
51
|
+
$analog2: spin($baseColor, -22) !default;
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
// More variables coming soon:
|
56
|
+
// - $basefont to $baseFontSize
|
57
|
+
// - $baseline to $baseLineHeight
|
58
|
+
// - $baseFontFamily
|
59
|
+
// - $primaryButtonColor
|
60
|
+
// - anything else? File an issue on GitHub
|
@@ -16,11 +16,14 @@
|
|
16
16
|
@import "reset.scss";
|
17
17
|
|
18
18
|
// Core
|
19
|
-
@import "
|
19
|
+
@import "variables.scss"; // Modify this for custom colors, font-sizes, etc
|
20
|
+
@import "mixins.scss";
|
21
|
+
|
22
|
+
// Grid system and page structure
|
20
23
|
@import "scaffolding.scss";
|
21
24
|
|
22
25
|
// Styled patterns and elements
|
23
26
|
@import "type.scss";
|
24
27
|
@import "forms.scss";
|
25
28
|
@import "tables.scss";
|
26
|
-
@import "patterns.scss";
|
29
|
+
@import "patterns.scss";
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Make sure you list all the project template files here in the manifest.
|
2
|
+
stylesheet 'compass_bootstrap.scss', :media => 'screen, projection'
|
3
|
+
stylesheet '_reset.scss', :media => 'screen, projection'
|
4
|
+
stylesheet '_variables.scss', :media => 'screen, projection'
|
5
|
+
stylesheet '_mixins.scss', :media => 'screen, projection'
|
6
|
+
stylesheet '_scaffolding.scss', :media => 'screen, projection'
|
7
|
+
stylesheet '_type.scss', :media => 'screen, projection'
|
8
|
+
stylesheet '_tables.scss', :media => 'screen, projection'
|
9
|
+
stylesheet '_forms.scss', :media => 'screen, projection'
|
10
|
+
stylesheet '_patterns.scss', :media => 'screen, projection'
|
11
|
+
|
12
|
+
javascript '../../javascripts/bootstrap-alerts.js', :to => 'bootstrap-alerts.js'
|
13
|
+
javascript '../../javascripts/bootstrap-dropdown.js', :to => 'bootstrap-dropdown.js'
|
14
|
+
javascript '../../javascripts/bootstrap-modal.js', :to => 'bootstrap-modal.js'
|
15
|
+
javascript '../../javascripts/bootstrap-popover.js', :to => 'bootstrap-popover.js'
|
16
|
+
javascript '../../javascripts/bootstrap-scrollspy.js', :to => 'bootstrap-scrollspy.js'
|
17
|
+
javascript '../../javascripts/bootstrap-tabs.js', :to => 'bootstrap-tabs.js'
|
18
|
+
javascript '../../javascripts/bootstrap-twipsy.js', :to => 'bootstrap-twipsy.js'
|
19
|
+
|
20
|
+
description "SCSS port of less version of twitter bootstrap"
|
metadata
CHANGED
@@ -1,104 +1,93 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-bootstrap
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.3
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
- 2
|
10
|
-
version: 0.1.2
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Hector Bustillos
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2011-09-12 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: compass
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &70331193489660 !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
26
|
-
- -
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
hash: 55
|
29
|
-
segments:
|
30
|
-
- 0
|
31
|
-
- 10
|
32
|
-
- 0
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
33
21
|
version: 0.10.0
|
34
22
|
type: :runtime
|
35
|
-
|
36
|
-
|
37
|
-
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70331193489660
|
25
|
+
description: Bootstrap is a toolkit from Twitter designed to kickstart development
|
26
|
+
of webapps and sites.
|
27
|
+
email:
|
38
28
|
- hector.bustillos@crowdint.com
|
39
29
|
executables: []
|
40
|
-
|
41
30
|
extensions: []
|
42
|
-
|
43
31
|
extra_rdoc_files: []
|
44
|
-
|
45
|
-
files:
|
32
|
+
files:
|
46
33
|
- .gitignore
|
47
34
|
- Gemfile
|
48
35
|
- README.mkdn
|
49
36
|
- Rakefile
|
50
37
|
- compass-bootstrap.gemspec
|
51
38
|
- lib/compass-bootstrap.rb
|
39
|
+
- lib/compass-bootstrap/rails.rb
|
40
|
+
- lib/compass-bootstrap/rails/engine.rb
|
52
41
|
- lib/compass-bootstrap/version.rb
|
53
42
|
- stylesheets/compass-bootstrap/_compass_bootstrap.scss
|
54
43
|
- stylesheets/compass-bootstrap/_forms.scss
|
44
|
+
- stylesheets/compass-bootstrap/_mixins.scss
|
55
45
|
- stylesheets/compass-bootstrap/_patterns.scss
|
56
|
-
- stylesheets/compass-bootstrap/_preboot.scss
|
57
46
|
- stylesheets/compass-bootstrap/_reset.scss
|
58
47
|
- stylesheets/compass-bootstrap/_scaffolding.scss
|
59
48
|
- stylesheets/compass-bootstrap/_tables.scss
|
60
49
|
- stylesheets/compass-bootstrap/_type.scss
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
50
|
+
- stylesheets/compass-bootstrap/_variables.scss
|
51
|
+
- vendor/assets/javascripts/bootstrap-alerts.js
|
52
|
+
- vendor/assets/javascripts/bootstrap-dropdown.js
|
53
|
+
- vendor/assets/javascripts/bootstrap-modal.js
|
54
|
+
- vendor/assets/javascripts/bootstrap-popover.js
|
55
|
+
- vendor/assets/javascripts/bootstrap-scrollspy.js
|
56
|
+
- vendor/assets/javascripts/bootstrap-tabs.js
|
57
|
+
- vendor/assets/javascripts/bootstrap-twipsy.js
|
58
|
+
- vendor/assets/stylesheets/compass-bootstrap/_compass_bootstrap.scss
|
59
|
+
- vendor/assets/stylesheets/compass-bootstrap/_forms.scss
|
60
|
+
- vendor/assets/stylesheets/compass-bootstrap/_mixins.scss
|
61
|
+
- vendor/assets/stylesheets/compass-bootstrap/_patterns.scss
|
62
|
+
- vendor/assets/stylesheets/compass-bootstrap/_reset.scss
|
63
|
+
- vendor/assets/stylesheets/compass-bootstrap/_scaffolding.scss
|
64
|
+
- vendor/assets/stylesheets/compass-bootstrap/_tables.scss
|
65
|
+
- vendor/assets/stylesheets/compass-bootstrap/_type.scss
|
66
|
+
- vendor/assets/stylesheets/compass-bootstrap/_variables.scss
|
67
|
+
- vendor/assets/stylesheets/compass-bootstrap/compass_bootstrap.scss
|
68
|
+
- vendor/assets/stylesheets/compass-bootstrap/manifest.rb
|
70
69
|
homepage: https://github.com/hecbuma/compass-bootstrap
|
71
70
|
licenses: []
|
72
|
-
|
73
71
|
post_install_message:
|
74
72
|
rdoc_options: []
|
75
|
-
|
76
|
-
require_paths:
|
73
|
+
require_paths:
|
77
74
|
- lib
|
78
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
76
|
none: false
|
80
|
-
requirements:
|
81
|
-
- -
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
|
84
|
-
|
85
|
-
- 0
|
86
|
-
version: "0"
|
87
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ! '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
82
|
none: false
|
89
|
-
requirements:
|
90
|
-
- -
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
|
93
|
-
segments:
|
94
|
-
- 0
|
95
|
-
version: "0"
|
83
|
+
requirements:
|
84
|
+
- - ! '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
96
87
|
requirements: []
|
97
|
-
|
98
88
|
rubyforge_project: compass-bootstrap
|
99
89
|
rubygems_version: 1.8.6
|
100
90
|
signing_key:
|
101
91
|
specification_version: 3
|
102
92
|
summary: Compass compatible Sass port of twitter bootstrap.
|
103
93
|
test_files: []
|
104
|
-
|