bootswatch_rails 3.3.0.5 → 3.3.0.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 457d50e5e6609baaf263cd9b648bdc30c84705ee
|
|
4
|
+
data.tar.gz: ae2371b7e8f7eded685e131a201df1fa4c523f87
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87a24ea1ae6617ab23ac2c94f680a1ed07164fa8338b6cda86fd4a786e00f1653f97bfa5c41c6a7c4f5d66edfd7f07eb99351e7f3819c7d112f9b6e029ee578f
|
|
7
|
+
data.tar.gz: da88cc89f2c4b69a098ce3a3b66245e375d30d714f48709f6f98664a9fcde71cf1559ffa2446eaa5f276f4d8f90a8cd72a28744303f4b47d0ac0967fd9636112
|
|
@@ -2,7 +2,7 @@ module BootswatchRails
|
|
|
2
2
|
BOOTSTRAP = "3.3.0"
|
|
3
3
|
BOOTSWATCH = "3.2.0"
|
|
4
4
|
FONT_AWESOME = "4.2.0"
|
|
5
|
-
VERSION = "3.3.0.
|
|
5
|
+
VERSION = "3.3.0.6"
|
|
6
6
|
|
|
7
7
|
THEMES = [:cerulean, :cosmo, :custom, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
|
|
8
8
|
DEFAULT = 0
|
|
@@ -173,7 +173,7 @@ module BootswatchRails
|
|
|
173
173
|
":active, :sysadm, :password, :password_confirmation"
|
|
174
174
|
text += ", :picture, :picture_cache" if options.picture?
|
|
175
175
|
added_fields.each do |field|
|
|
176
|
-
text += ",
|
|
176
|
+
text += ", :#{field[0]}"
|
|
177
177
|
end
|
|
178
178
|
text
|
|
179
179
|
end
|
|
@@ -6519,12 +6519,15 @@ a {
|
|
|
6519
6519
|
}
|
|
6520
6520
|
textarea,
|
|
6521
6521
|
textarea.form-control,
|
|
6522
|
+
input.form-control,
|
|
6522
6523
|
input[type=text],
|
|
6523
6524
|
input[type=password],
|
|
6524
6525
|
input[type=email],
|
|
6525
6526
|
input[type=number],
|
|
6526
6527
|
[type=text].form-control,
|
|
6527
|
-
[type=password].form-control
|
|
6528
|
+
[type=password].form-control,
|
|
6529
|
+
[type=email].form-control,
|
|
6530
|
+
[type=tel].form-control {
|
|
6528
6531
|
padding: 0;
|
|
6529
6532
|
border: none;
|
|
6530
6533
|
border-radius: 0;
|
|
@@ -6534,31 +6537,40 @@ input[type=number],
|
|
|
6534
6537
|
}
|
|
6535
6538
|
textarea:focus,
|
|
6536
6539
|
textarea.form-control:focus,
|
|
6540
|
+
input.form-control:focus,
|
|
6537
6541
|
input[type=text]:focus,
|
|
6538
6542
|
input[type=password]:focus,
|
|
6539
6543
|
input[type=email]:focus,
|
|
6540
6544
|
input[type=number]:focus,
|
|
6541
6545
|
[type=text].form-control:focus,
|
|
6542
|
-
[type=password].form-control:focus
|
|
6546
|
+
[type=password].form-control:focus,
|
|
6547
|
+
[type=email].form-control:focus,
|
|
6548
|
+
[type=tel].form-control:focus {
|
|
6543
6549
|
-webkit-box-shadow: inset 0 -2px 0 #2196f3;
|
|
6544
6550
|
box-shadow: inset 0 -2px 0 #2196f3;
|
|
6545
6551
|
}
|
|
6546
6552
|
textarea[disabled],
|
|
6547
6553
|
textarea.form-control[disabled],
|
|
6554
|
+
input.form-control[disabled],
|
|
6548
6555
|
input[type=text][disabled],
|
|
6549
6556
|
input[type=password][disabled],
|
|
6550
6557
|
input[type=email][disabled],
|
|
6551
6558
|
input[type=number][disabled],
|
|
6552
6559
|
[type=text].form-control[disabled],
|
|
6553
6560
|
[type=password].form-control[disabled],
|
|
6561
|
+
[type=email].form-control[disabled],
|
|
6562
|
+
[type=tel].form-control[disabled],
|
|
6554
6563
|
textarea[readonly],
|
|
6555
6564
|
textarea.form-control[readonly],
|
|
6565
|
+
input.form-control[readonly],
|
|
6556
6566
|
input[type=text][readonly],
|
|
6557
6567
|
input[type=password][readonly],
|
|
6558
6568
|
input[type=email][readonly],
|
|
6559
6569
|
input[type=number][readonly],
|
|
6560
6570
|
[type=text].form-control[readonly],
|
|
6561
|
-
[type=password].form-control[readonly]
|
|
6571
|
+
[type=password].form-control[readonly],
|
|
6572
|
+
[type=email].form-control[readonly],
|
|
6573
|
+
[type=tel].form-control[readonly] {
|
|
6562
6574
|
-webkit-box-shadow: none;
|
|
6563
6575
|
box-shadow: none;
|
|
6564
6576
|
border-bottom: 1px dotted #ddd;
|
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.3.0.
|
|
4
|
+
version: 3.3.0.6
|
|
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-11-
|
|
11
|
+
date: 2014-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|