hackathon-bootstrap 0.0.1.5 → 0.0.1.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 079b3588bf37b2d8df4aaa6f37d29cbbdb93cd09
4
- data.tar.gz: 8cc63854a8b75b0198bb9d8cc239ca5a8331d56f
3
+ metadata.gz: 303879c387406ce2a2964efead09fdcdf1fc1977
4
+ data.tar.gz: f0b0dfc2844a984d0546b89dfa623cb9203a746b
5
5
  SHA512:
6
- metadata.gz: 1b5d49d58e59d16c8daffeb34edd8bd6079fc1d78c222ddad3b930ca3d81ce17ddad3c3da7f6941cedd95bcfd42b74daec84406a9bc7828bc2e740c4b44a1da5
7
- data.tar.gz: 434efccbe431186f152c08193624a2fe1cc88a55d1bd52902b6d9c40970200af7e8b8c3e636399a01bc4282708d81d327d6f9451b545667cf9613ad48e67df77
6
+ metadata.gz: 62c7970aae5f89172f2ba0725e6b93f7a51ddf1ca9cde997e5c2a3505d50fea358f4534464b9ab3f9f40a02f46ded712886ba0e849ce326c0e96f8a340348807
7
+ data.tar.gz: 58d58c69662dbb9f273984024f494840325b1f7dcda5d8644c7aa04021c2bdfc918e08a156f699a171cf2bf403370fdf26658f56ae0211b9481bfd53a11acfb8
@@ -1,8 +1,4 @@
1
- @import "hackathon-bootstrap/themes/<%= Hackathon::Bootstrap.theme %>";
2
- @import "bootstrap-sprockets";
3
- @import "bootstrap";
4
- @import "hackathon-bootstrap/bootstrap-social";
5
- @import "ionicons";
1
+ @import "hackathon-bootstrap/<%= Hackathon::Bootstrap.theme %>";
6
2
 
7
3
  // Scaffolding
8
4
  // -------------------------
@@ -1,6 +1,6 @@
1
1
  module Hackathon
2
2
  module Bootstrap
3
3
  VERSION = "0.0.1"
4
- PATCHLEVEL = 5
4
+ PATCHLEVEL = 6
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hackathon-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.5
4
+ version: 0.0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - steigr
@@ -160,12 +160,10 @@ files:
160
160
  - LICENSE.txt
161
161
  - README.md
162
162
  - Rakefile
163
- - app/assets/javascripts/hackathon-bootstrap.js.coffee
164
163
  - app/assets/stylesheets/hackathon-bootstrap.scss.erb
165
- - app/assets/stylesheets/hackathon-bootstrap/bootstrap-social.scss
166
- - app/assets/stylesheets/hackathon-bootstrap/themes/default.scss
167
- - app/assets/stylesheets/hackathon-bootstrap/themes/ios7.scss
168
- - app/assets/stylesheets/hackathon-bootstrap/themes/modern.scss
164
+ - app/assets/stylesheets/hackathon-bootstrap/default.scss
165
+ - app/assets/stylesheets/hackathon-bootstrap/ios7.scss
166
+ - app/assets/stylesheets/hackathon-bootstrap/modern.scss
169
167
  - lib/hackathon-bootstrap.rb
170
168
  - lib/hackathon/bootstrap.rb
171
169
  - lib/hackathon/bootstrap/engine.rb
@@ -1 +0,0 @@
1
- #= require bootstrap-sprockets
@@ -1,114 +0,0 @@
1
- /*
2
- * Social Buttons for Bootstrap
3
- *
4
- * Copyright 2013-2014 Panayiotis Lipiridis
5
- * Licensed under the MIT License
6
- *
7
- * https://github.com/lipis/bootstrap-social
8
- */
9
-
10
- $bs-height-base: ($line-height-computed + $padding-base-vertical * 2);
11
- $bs-height-lg: (floor($font-size-large * $line-height-base) + $padding-large-vertical * 2);
12
- $bs-height-sm: (floor($font-size-small * 1.5) + $padding-small-vertical * 2);
13
- $bs-height-xs: (floor($font-size-small * 1.2) + $padding-small-vertical + 1);
14
-
15
- @mixin btn-social-base {
16
- position: relative;
17
- padding-left: ($bs-height-base + $padding-base-horizontal);
18
- text-align: left;
19
- white-space: nowrap;
20
- overflow: hidden;
21
- text-overflow: ellipsis;
22
- > :first-child {
23
- position: absolute;
24
- left: 0;
25
- top: 0;
26
- bottom: 0;
27
- width: $bs-height-base;
28
- line-height: ($bs-height-base + 2);
29
- font-size: 1.6em;
30
- text-align: center;
31
- border-right: 1px solid rgba(0, 0, 0, 0.2);
32
- }
33
- &.btn-lg {
34
- padding-left: ($bs-height-lg + $padding-large-horizontal);
35
- :first-child {
36
- line-height: $bs-height-lg;
37
- width: $bs-height-lg;
38
- font-size: 1.8em;
39
- }
40
- }
41
- &.btn-sm {
42
- padding-left: ($bs-height-sm + $padding-small-horizontal);
43
- :first-child {
44
- line-height: $bs-height-sm;
45
- width: $bs-height-sm;
46
- font-size: 1.4em;
47
- }
48
- }
49
- &.btn-xs {
50
- padding-left: ($bs-height-xs + $padding-small-horizontal);
51
- :first-child {
52
- line-height: $bs-height-xs;
53
- width: $bs-height-xs;
54
- font-size: 1.2em;
55
- }
56
- }
57
- }
58
-
59
- .btn-social-icon {
60
- @include btn-social-base;
61
- height: ($bs-height-base + 2);
62
- width: ($bs-height-base + 2);
63
- padding: 0;
64
- :first-child {
65
- border: none;
66
- text-align: center;
67
- width: 100%!important;
68
- }
69
- &.btn-lg {
70
- height: $bs-height-lg;
71
- width: $bs-height-lg;
72
- padding-left: 0;
73
- padding-right: 0;
74
- }
75
- &.btn-sm {
76
- height: ($bs-height-sm + 2);
77
- width: ($bs-height-sm + 2);
78
- padding-left: 0;
79
- padding-right: 0;
80
- }
81
- &.btn-xs {
82
- height: ($bs-height-xs + 2);
83
- width: ($bs-height-xs + 2);
84
- padding-left: 0;
85
- padding-right: 0;
86
- }
87
- }
88
-
89
- @mixin btn-social($color-bg, $color: #fff) {
90
- background-color: $color-bg;
91
- @include button-variant($color, $color-bg, rgba(0,0,0,.2));
92
- }
93
-
94
-
95
- .btn-adn { @include btn-social(#d87a68); }
96
- .btn-bitbucket { @include btn-social(#205081); }
97
- .btn-dropbox { @include btn-social(#1087dd); }
98
- .btn-facebook { @include btn-social(#3b5998); }
99
- .btn-flickr { @include btn-social(#ff0084); }
100
- .btn-foursquare { @include btn-social(#f94877); }
101
- .btn-github { @include btn-social(#444444); }
102
- .btn-google-plus { @include btn-social(#dd4b39); }
103
- .btn-instagram { @include btn-social(#3f729b); }
104
- .btn-linkedin { @include btn-social(#007bb6); }
105
- .btn-microsoft { @include btn-social(#2672ec); }
106
- .btn-openid { @include btn-social(#f7931e); }
107
- .btn-pinterest { @include btn-social(#cb2027); }
108
- .btn-reddit { @include btn-social(#eff7ff, #000); }
109
- .btn-soundcloud { @include btn-social(#ff5500); }
110
- .btn-tumblr { @include btn-social(#2c4762); }
111
- .btn-twitter { @include btn-social(#55acee); }
112
- .btn-vimeo { @include btn-social(#1ab7ea); }
113
- .btn-vk { @include btn-social(#587ea3); }
114
- .btn-yahoo { @include btn-social(#720e9e); }