bootswatch_rails 3.2.0.24 → 3.2.0.25

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: c9b6d64a94c444c61214c3a4f0fca343ab569dbe
4
- data.tar.gz: 0db44cda7ac19f2ee5405c6ca2427cbc11959506
3
+ metadata.gz: 10ffa501adcbaef003c569009a679b2adeed0aff
4
+ data.tar.gz: 31000ee09c89d82412047e60b3cbf4b844840eaa
5
5
  SHA512:
6
- metadata.gz: e1e8fdf32d93d9fb54b21c4d0ebcbd09c2b57a27f5adf821c72a987d95a81691e9993ef8874385d2073513d35ae1d296be3eb645320c4695765931762d7a6b9a
7
- data.tar.gz: 4c39a739911cb688ec8dc7df82f8a172c2cd77d3fcb3d9aeb1e64dc486fbe1bfe55c99d4e33b03dd2ec3aa7c03254040171173edd08f5596b5b70af57cae7997
6
+ metadata.gz: 4141e3e04076715e51aab0c1eedd09c14929578c407d3e58ba83d766bb9263522994310e5fe6fb6f03b2898dedf957e1a0b15cd1ce053b797810d89fa40e8b99
7
+ data.tar.gz: f79a1837a8dbee552d0947526e9a9b84393b61ad78ca829b2889ae1e58acb4ac86013b9159ec7ae44ba4db8e14b7a0e2fbfe78e02698b06489a789f47e51507b
@@ -1,6 +1,6 @@
1
1
  module BootswatchRails
2
2
  BOOTSTRAP = "3.2.0"
3
- VERSION = "3.2.0.24"
3
+ VERSION = "3.2.0.25"
4
4
  THEMES = [:amelia, :cerulean, :cosmo, :custom, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
5
5
  DEFAULT = 1
6
6
  end
@@ -10,10 +10,20 @@
10
10
  <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css">
11
11
  <%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
12
12
  <script src="//maxcdn.bootstrapcdn.com/bootstrap/<%= BootswatchRails::BOOTSTRAP %>/js/bootstrap.min.js"></script>
13
+ <%%- if content_for?(:head_production) -%>
14
+ <%%= yield(:head_production) %>
15
+ <%%- end -%>
13
16
  <%%- else -%>
14
17
  <%%= stylesheet_link_tag current_theme, 'data-turbolinks-track' => true %>
15
18
  <%%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
16
19
  <%%= javascript_include_tag 'bootstrap', 'data-turbolinks-track' => true %>
20
+ <%%- if content_for?(:head_development) -%>
21
+ <%%= yield(:head_development) %>
22
+ <%%- end -%>
23
+ <%%- end -%>
24
+
25
+ <%%- if content_for?(:head_common) -%>
26
+ <%%= yield(:head_common) %>
17
27
  <%%- end -%>
18
28
 
19
29
  <!--[if lt IE 9]>
@@ -6202,51 +6202,129 @@ button.close {
6202
6202
  .navbar-nav > li > .dropdown-menu {
6203
6203
  margin-top: 2px;
6204
6204
  }
6205
+ .btn-default {
6206
+ background-image: -webkit-radial-gradient(circle, #ffffff 80%, #f0f0f0 81%);
6207
+ background-image: radial-gradient(circle, #ffffff 80%, #f0f0f0 81%);
6208
+ background-repeat: no-repeat;
6209
+ background-size: 200%;
6210
+ background-position: 50%;
6211
+ transition: background-size 2s;
6212
+ }
6205
6213
  .btn-default:hover {
6206
- background-color: #f7f7f7;
6214
+ background-size: 100%;
6215
+ border-color: #f0f0f0;
6207
6216
  }
6208
6217
  .btn-default:active {
6209
6218
  background-color: #f0f0f0;
6219
+ background-image: -webkit-radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
6220
+ background-image: radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
6221
+ background-repeat: no-repeat;
6222
+ background-size: 1000%;
6210
6223
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6211
6224
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6212
6225
  }
6226
+ .btn-primary {
6227
+ background-image: -webkit-radial-gradient(circle, #2196f3 80%, #0d87e9 81%);
6228
+ background-image: radial-gradient(circle, #2196f3 80%, #0d87e9 81%);
6229
+ background-repeat: no-repeat;
6230
+ background-size: 200%;
6231
+ background-position: 50%;
6232
+ transition: background-size 2s;
6233
+ }
6213
6234
  .btn-primary:hover {
6214
- background-color: #128ff2;
6235
+ background-size: 100%;
6236
+ border-color: #0d87e9;
6215
6237
  }
6216
6238
  .btn-primary:active {
6217
6239
  background-color: #0d87e9;
6240
+ background-image: -webkit-radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
6241
+ background-image: radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
6242
+ background-repeat: no-repeat;
6243
+ background-size: 1000%;
6218
6244
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6219
6245
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6220
6246
  }
6247
+ .btn-success {
6248
+ background-image: -webkit-radial-gradient(circle, #4caf50 80%, #439a46 81%);
6249
+ background-image: radial-gradient(circle, #4caf50 80%, #439a46 81%);
6250
+ background-repeat: no-repeat;
6251
+ background-size: 200%;
6252
+ background-position: 50%;
6253
+ transition: background-size 2s;
6254
+ }
6221
6255
  .btn-success:hover {
6222
- background-color: #47a44b;
6256
+ background-size: 100%;
6257
+ border-color: #439a46;
6223
6258
  }
6224
6259
  .btn-success:active {
6225
6260
  background-color: #439a46;
6261
+ background-image: -webkit-radial-gradient(circle, #439a46 10%, #4caf50 11%);
6262
+ background-image: radial-gradient(circle, #439a46 10%, #4caf50 11%);
6263
+ background-repeat: no-repeat;
6264
+ background-size: 1000%;
6226
6265
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6227
6266
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6228
6267
  }
6268
+ .btn-info {
6269
+ background-image: -webkit-radial-gradient(circle, #9c27b0 80%, #862197 81%);
6270
+ background-image: radial-gradient(circle, #9c27b0 80%, #862197 81%);
6271
+ background-repeat: no-repeat;
6272
+ background-size: 200%;
6273
+ background-position: 50%;
6274
+ transition: background-size 2s;
6275
+ }
6229
6276
  .btn-info:hover {
6230
- background-color: #9124a3;
6277
+ background-size: 100%;
6278
+ border-color: #862197;
6231
6279
  }
6232
6280
  .btn-info:active {
6233
6281
  background-color: #862197;
6282
+ background-image: -webkit-radial-gradient(circle, #862197 10%, #9c27b0 11%);
6283
+ background-image: radial-gradient(circle, #862197 10%, #9c27b0 11%);
6284
+ background-repeat: no-repeat;
6285
+ background-size: 1000%;
6234
6286
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6235
6287
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6236
6288
  }
6289
+ .btn-warning {
6290
+ background-image: -webkit-radial-gradient(circle, #ff9800 80%, #e08600 81%);
6291
+ background-image: radial-gradient(circle, #ff9800 80%, #e08600 81%);
6292
+ background-repeat: no-repeat;
6293
+ background-size: 200%;
6294
+ background-position: 50%;
6295
+ transition: background-size 2s;
6296
+ }
6237
6297
  .btn-warning:hover {
6238
- background-color: #f08f00;
6298
+ background-size: 100%;
6299
+ border-color: #e08600;
6239
6300
  }
6240
6301
  .btn-warning:active {
6241
6302
  background-color: #e08600;
6303
+ background-image: -webkit-radial-gradient(circle, #e08600 10%, #ff9800 11%);
6304
+ background-image: radial-gradient(circle, #e08600 10%, #ff9800 11%);
6305
+ background-repeat: no-repeat;
6306
+ background-size: 1000%;
6242
6307
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6243
6308
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6244
6309
  }
6310
+ .btn-danger {
6311
+ background-image: -webkit-radial-gradient(circle, #e51c23 80%, #cb171e 81%);
6312
+ background-image: radial-gradient(circle, #e51c23 80%, #cb171e 81%);
6313
+ background-repeat: no-repeat;
6314
+ background-size: 200%;
6315
+ background-position: 50%;
6316
+ transition: background-size 2s;
6317
+ }
6245
6318
  .btn-danger:hover {
6246
- background-color: #d91920;
6319
+ background-size: 100%;
6320
+ border-color: #cb171e;
6247
6321
  }
6248
6322
  .btn-danger:active {
6249
6323
  background-color: #cb171e;
6324
+ background-image: -webkit-radial-gradient(circle, #cb171e 10%, #e51c23 11%);
6325
+ background-image: radial-gradient(circle, #cb171e 10%, #e51c23 11%);
6326
+ background-repeat: no-repeat;
6327
+ background-size: 1000%;
6250
6328
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6251
6329
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
6252
6330
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootswatch_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0.24
4
+ version: 3.2.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Volker Wiegand
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-10 00:00:00.000000000 Z
11
+ date: 2014-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties