plutonium 0.19.9 → 0.19.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/plutonium/ui/form/theme.rb +4 -0
- data/lib/plutonium/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9222553f366beb29b993eb2d29e0bb3d9103b8c590e3033ff178f16c26a1d353
|
4
|
+
data.tar.gz: c37eb08a0e736a58152635ab3b89e2f8db178bf14528569c0c1d37a2d0910c45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec8c7ad3a232dca69ab7e23b02c896ce0046ee738a473f663c9125d9efa0a95b06aebd6b45d434f0b24d7b2c7157e0af23fb57d12b83d2aee5741391ed672b15
|
7
|
+
data.tar.gz: d1926fff47db986ad23eaec73a06533ad602ec283894a9483560e7b5adb2ef526aa1cafe21fd24940950a15191e55fb16ffbf47a07a3f3ceac3ffb530fd729c4
|
@@ -25,6 +25,10 @@ module Plutonium
|
|
25
25
|
invalid_input: "bg-red-50 border-red-500 dark:border-red-500 text-red-900 dark:text-red-500 placeholder-red-700 dark:placeholder-red-500 focus:ring-red-500 focus:border-red-500",
|
26
26
|
valid_input: "bg-green-50 border-green-500 dark:border-green-500 text-green-900 dark:text-green-400 placeholder-green-700 dark:placeholder-green-500 focus:ring-green-500 focus:border-green-500",
|
27
27
|
neutral_input: "border-gray-300 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white focus:ring-primary-500 focus:border-primary-500",
|
28
|
+
# checkbox
|
29
|
+
checkbox: "p-2 border rounded-md shadow-sm font-medium text-sm dark:bg-gray-700",
|
30
|
+
# radio buttons
|
31
|
+
radio_button: "p-2 border shadow-sm font-medium text-sm dark:bg-gray-700",
|
28
32
|
# color
|
29
33
|
color: "pu-color-input appearance-none bg-transparent border-none cursor-pointer w-10 h-10",
|
30
34
|
invalid_color: nil,
|
data/lib/plutonium/version.rb
CHANGED