better_styles 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b492cc68067a47ef5b4862af8c5f47d6393ce7da
4
- data.tar.gz: 574b5a7a14b857a734682994526fb6c2ad02ac32
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NGRlNWNhNmRjMTQ1MzU4NTI1NjNhYWQyYmMyNWYzMzgwYWUzYmM1YQ==
5
+ data.tar.gz: !binary |-
6
+ ZGE1YjhkMTY2YmIxNmRjMjVjMDFmMTFkMTJiY2FlYTg5ODVmNGRiNA==
5
7
  SHA512:
6
- metadata.gz: 126ed0d58524e7f92e72fcc3c9d831aefe89e10331b2f048f70cf77bcfd38ddd09ca19f48f58d6824b078f5be97f727dbf8b2f0de2806e8ada8564fd9ca0be41
7
- data.tar.gz: ea4482a2aa154b4e4923018510738b0d61478199f7bb7777d96577c33929e39e1323ddc2603bdfe325eb46bb502ae15e79b1c44b08b5d60cfbf079c1ad01ecd3
8
+ metadata.gz: !binary |-
9
+ MGQ5MDljZTQ0ZThkN2ZjMmE3MDU4NmE2OTlkMjY3OWY1MDQxY2M3OTMyMDQ4
10
+ NGFhM2MxOTRlN2Y1MDkxYzg3Y2I3NmI3YjIwZDY1ZTg3NDBhY2E4NTc4ZGUx
11
+ ODJmYmUyZWIyZjkyMmQxYjE5NWRhYzQxMjhhZmM2M2QzMDU1Mzc=
12
+ data.tar.gz: !binary |-
13
+ MzI3M2FiZTJjODMwNDdkMjk1ZWQ4OTFlZWY2YTZhYTVlN2NkNGRjOTQxYmRj
14
+ Y2M3ZjI4NmI2ZDBiOGU3Y2RmODNjMWYzOWRiOTliN2QxOWRhNDQ3MzlkODEx
15
+ NDQzZTRlNWNmNmE1ZTk3MTA2YWFmOGRmMjY5NWMyZDU1ZDU5ZGY=
@@ -21,6 +21,7 @@
21
21
 
22
22
  .press { margin-bottom: $vertical-spacing !important; }
23
23
  .half-press, .press-half { margin-bottom: $vertical-spacing-half !important; }
24
+ .no-press, .no_press { margin-bottom: 0 !important; }
24
25
 
25
26
 
26
27
  .left_text { text-align: left !important; }
@@ -57,13 +58,16 @@
57
58
  }
58
59
 
59
60
 
60
-
61
+ .1third { width: 33.33333%; max-width: 33.33333%; }
62
+ .2third { width: 66.66666%; max-width: 66.66666%; }
63
+ .thirty { width: 50%; max-width: 50%; }
64
+ .fourty { width: 50%; max-width: 50%; }
61
65
  .fivty { width: 50%; max-width: 50%; }
62
66
  .sixty { width: 60%; max-width: 60%; }
63
67
  .seventy { width: 70%; max-width: 70%; }
64
68
  .eighty { width: 80%; max-width: 80%; }
65
69
  .ninty { width: 90%; max-width: 90%; }
66
- .fivty, .sixty, .seventy, .eighty, .ninty {
70
+ .1third, .2third, .thirty, .fourty, .fivty, .sixty, .seventy, .eighty, .ninty {
67
71
  @include horizontal-margin( auto );
68
72
  }
69
73
 
@@ -0,0 +1,79 @@
1
+ // @import "bootstrap";
2
+
3
+ @import "bootstrap/functions";
4
+ @import "bootstrap/variables";
5
+ @import "bootstrap/mixins";
6
+ @import "bootstrap/print";
7
+ @import "bootstrap/reboot";
8
+ @import "bootstrap/type";
9
+ @import "bootstrap/images";
10
+ @import "bootstrap/code";
11
+ @import "bootstrap/grid";
12
+ @import "bootstrap/tables";
13
+ @import "bootstrap/forms";
14
+ @import "bootstrap/buttons";
15
+ @import "bootstrap/transitions";
16
+ @import "bootstrap/dropdown";
17
+ @import "bootstrap/button-group";
18
+ @import "bootstrap/input-group";
19
+ @import "bootstrap/custom-forms";
20
+ @import "bootstrap/nav";
21
+ @import "bootstrap/navbar";
22
+ @import "bootstrap/card";
23
+ @import "bootstrap/breadcrumb";
24
+ @import "bootstrap/pagination";
25
+ @import "bootstrap/badge";
26
+ @import "bootstrap/jumbotron";
27
+ @import "bootstrap/alert";
28
+ @import "bootstrap/progress";
29
+ @import "bootstrap/media";
30
+ @import "bootstrap/list-group";
31
+ @import "bootstrap/close";
32
+ @import "bootstrap/modal";
33
+ @import "bootstrap/tooltip";
34
+ @import "bootstrap/popover";
35
+ @import "bootstrap/carousel";
36
+ @import "bootstrap/utilities";
37
+
38
+
39
+
40
+
41
+ // import variables:
42
+ @import "better/variables/color";
43
+ @import "better/variables/typography";
44
+ @import "better/variables/vars";
45
+
46
+
47
+ // import helpers:
48
+ @import "better/lib/helpers";
49
+ @import "better/lib/media_querries";
50
+ @import "better/lib/nav";
51
+ // @import "better/lib/shadows";
52
+ @import "better/lib/text";
53
+
54
+
55
+ // import layouts:
56
+ @import "better/layout/section";
57
+ @import "better/layout/corset";
58
+ @import "better/layout/fullpage_table";
59
+
60
+
61
+ // import content:
62
+ @import "better/content/box";
63
+ @import "better/content/divider";
64
+ @import "better/content/helpers";
65
+ @import "better/content/pix";
66
+ @import "better/content/typography";
67
+
68
+
69
+ // import navigations:
70
+ //@import "better/navigations/aside_lnk";
71
+ //@import "better/navigations/nav_list";
72
+
73
+
74
+ // import icons:
75
+ // @import "better/icons/icomoon";
76
+ // @import "better/icons/magicons";
77
+ // @import "better/icons/orderlifticons";
78
+ // @import "better/icons/bettericons";
79
+
@@ -1,3 +1,3 @@
1
1
  module BetterStyles
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: better_styles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Torsten Wetzel
@@ -9,62 +9,62 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-07-23 00:00:00.000000000 Z
12
+ date: 2017-09-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ">="
18
+ - - ! '>='
19
19
  - !ruby/object:Gem::Version
20
20
  version: '4.1'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ">="
25
+ - - ! '>='
26
26
  - !ruby/object:Gem::Version
27
27
  version: '4.1'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: bootstrap
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ">="
32
+ - - ! '>='
33
33
  - !ruby/object:Gem::Version
34
34
  version: 4.0.0.alpha6
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ">="
39
+ - - ! '>='
40
40
  - !ruby/object:Gem::Version
41
41
  version: 4.0.0.alpha6
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rails-assets-tether
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ">="
46
+ - - ! '>='
47
47
  - !ruby/object:Gem::Version
48
48
  version: 1.3.3
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ">="
53
+ - - ! '>='
54
54
  - !ruby/object:Gem::Version
55
55
  version: 1.3.3
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: jquery-rails
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ">="
60
+ - - ! '>='
61
61
  - !ruby/object:Gem::Version
62
62
  version: 3.1.0
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ">="
67
+ - - ! '>='
68
68
  - !ruby/object:Gem::Version
69
69
  version: 3.1.0
70
70
  description: Lots of styles and helpers we used for several projects.
@@ -158,6 +158,7 @@ files:
158
158
  - assets/stylesheets/better/variables/_typography.scss
159
159
  - assets/stylesheets/better/variables/_vars.scss
160
160
  - assets/stylesheets/better_styles.scss
161
+ - assets/stylesheets/better_styles_min.scss
161
162
  - lib/better_styles.rb
162
163
  - lib/better_styles/engine.rb
163
164
  - lib/better_styles/version.rb
@@ -172,17 +173,17 @@ require_paths:
172
173
  - lib
173
174
  required_ruby_version: !ruby/object:Gem::Requirement
174
175
  requirements:
175
- - - ">="
176
+ - - ! '>='
176
177
  - !ruby/object:Gem::Version
177
178
  version: '0'
178
179
  required_rubygems_version: !ruby/object:Gem::Requirement
179
180
  requirements:
180
- - - ">="
181
+ - - ! '>='
181
182
  - !ruby/object:Gem::Version
182
183
  version: '0'
183
184
  requirements: []
184
185
  rubyforge_project:
185
- rubygems_version: 2.6.11
186
+ rubygems_version: 2.4.8
186
187
  signing_key:
187
188
  specification_version: 4
188
189
  summary: BetterStyles is our new css pack depending on BootStrap 4.