bootstrapped-rails 1.1.1.9 → 1.1.2
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.
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrapped-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-02-27 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|
16
|
-
requirement: &
|
16
|
+
requirement: &70309320030540 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70309320030540
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: bundler
|
27
|
-
requirement: &
|
27
|
+
requirement: &70309320024360 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 1.0.0
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70309320024360
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: rails
|
38
|
-
requirement: &
|
38
|
+
requirement: &70309320023700 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3.1'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70309320023700
|
47
47
|
description: ! ' please see summary '
|
48
48
|
email:
|
49
49
|
- han@logicalprep.com
|
@@ -98,7 +98,6 @@ files:
|
|
98
98
|
- vendor/assets/stylesheets/bootstrapped/code.scss
|
99
99
|
- vendor/assets/stylesheets/bootstrapped/component-animations.scss
|
100
100
|
- vendor/assets/stylesheets/bootstrapped/dropdowns.scss
|
101
|
-
- vendor/assets/stylesheets/bootstrapped/flash_notice.css.scss
|
102
101
|
- vendor/assets/stylesheets/bootstrapped/forms.scss
|
103
102
|
- vendor/assets/stylesheets/bootstrapped/grid.scss
|
104
103
|
- vendor/assets/stylesheets/bootstrapped/hero-unit.scss
|
@@ -1,67 +0,0 @@
|
|
1
|
-
@import "variables.scss";
|
2
|
-
@mixin alert-message {
|
3
|
-
position: relative;
|
4
|
-
padding: 7px 15px;
|
5
|
-
margin-bottom: $baseLineHeight;
|
6
|
-
color: $grayDark;
|
7
|
-
text-shadow: 0 1px 0 rgba(255,255,255,.5);
|
8
|
-
@include gradientBar(#fceec1, #eedc94); // warning by default
|
9
|
-
border-width: 1px;
|
10
|
-
border-style: solid;
|
11
|
-
@include border-radius(4px);
|
12
|
-
@include box-shadow(inset 0 1px 0 rgba(255,255,255,.25));
|
13
|
-
}
|
14
|
-
@mixin background-border($color) {
|
15
|
-
background-color: $color;
|
16
|
-
border-color: lighten($color, 5%);
|
17
|
-
}
|
18
|
-
@mixin alert-info {
|
19
|
-
color: $grayDark;
|
20
|
-
text-shadow: 0 1px 0 rgba(255,255,255,.5);
|
21
|
-
}
|
22
|
-
@mixin alert-error {
|
23
|
-
@include background-border(#FDDFDE);
|
24
|
-
|
25
|
-
}
|
26
|
-
@mixin alert-success {
|
27
|
-
@include background-border(#D1EED1);
|
28
|
-
}
|
29
|
-
@mixin alert-block-message {
|
30
|
-
padding: 14px;
|
31
|
-
background-image: none;
|
32
|
-
background-color: lighten(#fceec1, 5%);
|
33
|
-
@include reset-filter; // undo gradient for IE9
|
34
|
-
border-color: #fceec1;
|
35
|
-
@include box-shadow(none);
|
36
|
-
ul, p {
|
37
|
-
margin-right: 30px;
|
38
|
-
}
|
39
|
-
ul {
|
40
|
-
margin-bottom: 0;
|
41
|
-
}
|
42
|
-
li {
|
43
|
-
color: $grayDark;
|
44
|
-
}
|
45
|
-
.alert-actions {
|
46
|
-
margin-top: 5px;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
#flash_notice, #flash_error, #flash_alert {
|
50
|
-
padding: 5px 8px;
|
51
|
-
margin: 10px 0;
|
52
|
-
}
|
53
|
-
|
54
|
-
#flash_notice {
|
55
|
-
@include alert-message;
|
56
|
-
@include alert-success;
|
57
|
-
}
|
58
|
-
|
59
|
-
#flash_error, #flash_alert {
|
60
|
-
@include alert-message;
|
61
|
-
@include alert-error;
|
62
|
-
}
|
63
|
-
|
64
|
-
.error_messages {
|
65
|
-
@include alert-error;
|
66
|
-
@include alert-block-message;
|
67
|
-
}
|