magic_stylez 0.0.0.9 → 0.0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77ad623370b30dfb9edc0a5ab80f035233640746
4
- data.tar.gz: 8266b523955aa495ababd756e099f38368234ae9
3
+ metadata.gz: 9f586ddb3e3e80153f7266f9f70e15d4f63b9831
4
+ data.tar.gz: bb8dd10a80fbdbb910eead2c32ba98e3633e18ac
5
5
  SHA512:
6
- metadata.gz: 13f4341930648341861a95dcdf07af137d72fc384858fde41e7d980dff936286c603052c3c7341bac7bcb62897fbfb7181bc2a5c012b5edefc053c7edae729ca
7
- data.tar.gz: a0f2f86f8d859220467c1c89bb3f9564dd4e0ef6e5c061d604e849bf7e966706acdf9b9eae25bacc2d667c31f688904dfb781613d4d6ddeede6a8701c0f5a77e
6
+ metadata.gz: 0f3dd9985aa345e06c322be961ec493110e4c49b439162bf89aeb744cfe4c5cfe82e38453689293ee1fb53fc319770c9cc4173bc352d378309e33bc05b89d4df
7
+ data.tar.gz: ee27a1cf20e6207aafd9416b4c0fe5e2fc8b2fc6342b20c4966a0c88a9b2d35f7f6be29d92d30006427f281ed6feea7b3c1a012ce1bb7358139f575d772ad488
@@ -1,3 +1,3 @@
1
1
  module MagicStylez
2
- VERSION = "0.0.0.9"
2
+ VERSION = "0.0.0.10"
3
3
  end
@@ -141,3 +141,67 @@ form.corset, .form {
141
141
  }
142
142
 
143
143
 
144
+ .btn-group-block.input-group {
145
+ .btn {
146
+ text-align: left;
147
+ padding: 10px;
148
+ &.icn {
149
+ text-align: center;
150
+ }
151
+ }
152
+ }
153
+
154
+ .btn-group-block {
155
+ @include box-sizing(border-box);
156
+ display: table;
157
+ width: 100%;
158
+ margin: 0 0 10px;
159
+ text-decoration: none;
160
+ .btn {
161
+ display: table-cell;
162
+ width: auto;
163
+ width: 99%;
164
+ &.icn { width: 1%; }
165
+ border-collapse: separate;
166
+ border-spacing: 0;
167
+ @include border-radius(0);
168
+ &:first-child { @include border-left-radius(5px); }
169
+ &:last-child { @include border-right-radius(5px); }
170
+ }
171
+ .btn + .btn {
172
+ border-left: none;
173
+ }
174
+ &.half { width: 50%; margin-left: auto; margin-right: auto; }
175
+ &:hover { text-decoration: none !important; }
176
+ }
177
+
178
+ .fullpage-table > .table-row > * {
179
+ .btn-group-block { margin: 0; }
180
+ .btn-group-block.dropdown-toggle, .btn-group-block.new_order_link {
181
+ @include border-radius( 2px );
182
+ .btn { background: transparent; color: #fff; @include box-shadow(none); border: none; }
183
+ }
184
+ .btn-group-block.dropdown-toggle {
185
+ $this_clr: #369;
186
+ background: $this_clr;
187
+ border: solid 1px darken($this_clr, 10%);
188
+ &:hover {
189
+ background: lighten($this_clr, 10%);
190
+ border: solid 1px darken($this_clr, 20%);
191
+ }
192
+ }
193
+ .btn-group-block.new_order_link {
194
+ $this_clr: #5cb85c;
195
+ background: $this_clr;
196
+ border: solid 1px darken($this_clr, 10%);
197
+ &:hover {
198
+ background: lighten($this_clr, 10%);
199
+ border: solid 1px darken($this_clr, 20%);
200
+ }
201
+ }
202
+ }
203
+
204
+
205
+ .btn-paypal {
206
+ background: #1ea0df;
207
+ }
@@ -19,8 +19,9 @@ body {
19
19
  // background: #727270;
20
20
  color: #fff;
21
21
  .navbar-brand {
22
- padding: 0;
22
+ padding: 0 10px 0 0;
23
23
  height: 40px;
24
+ line-height: 40px;
24
25
  &.logo {
25
26
  width: 150px;
26
27
  overflow: hidden;
@@ -46,6 +47,10 @@ body {
46
47
  color: #fff !important;
47
48
  }
48
49
  }
50
+ & > span {
51
+ padding: 10px;
52
+ line-height: 20px;
53
+ }
49
54
  form {
50
55
  padding: 4px 0;
51
56
  }
@@ -116,14 +116,14 @@ html, body, #body {
116
116
  &.feature-pic {
117
117
  width: 140px;
118
118
  }
119
+ @for $i from 1 through 12 {
120
+ &.col-#{$i} { width: #{100 / 12 * $i}px; }
121
+ }
119
122
  }
120
123
  &.grid > * {
121
124
  padding: 10px;
122
125
  &:first-child { padding-left: 0; }
123
126
  &:last-child { padding-right: 0; }
124
- @for $i from 1 through 12 {
125
- &.col-#{$i} { width: #{100 / 12 * $i}px; }
126
- }
127
127
  }
128
128
  }
129
129
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magic_stylez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.9
4
+ version: 0.0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Torsten Wetzel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-21 00:00:00.000000000 Z
11
+ date: 2014-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails