testio-tailwind 3.0.1 → 3.1.0
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.
- package/package.json +1 -1
- package/src/assets/stylesheets/components/fonts/testio.eot +0 -0
- package/src/assets/stylesheets/components/fonts/testio.svg +3 -191
- package/src/assets/stylesheets/components/fonts/testio.ttf +0 -0
- package/src/assets/stylesheets/components/fonts/testio.woff +0 -0
- package/src/assets/stylesheets/components/fonts/testio.woff2 +0 -0
- package/src/assets/stylesheets/components/forms.css +22 -0
- package/src/assets/stylesheets/components/iconfont.css +10 -639
- package/src/assets/stylesheets/components/modals.css +2 -2
- package/src/pages/forms/forms.haml +18 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -107,3 +107,25 @@ textarea.form-control {
|
|
|
107
107
|
.form-date .form-control {
|
|
108
108
|
@apply pr-lg;
|
|
109
109
|
}
|
|
110
|
+
|
|
111
|
+
.form-group.inverted .form-control {
|
|
112
|
+
@apply text-white border-gray-darker bg-transparent;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.form-group.inverted .form-control::placeholder {
|
|
116
|
+
@apply text-gray-darker;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.form-group.inverted .form-control:disabled,
|
|
120
|
+
.form-group.inverted .form-control.disabled,
|
|
121
|
+
.form-group.inverted .form-control[readonly] {
|
|
122
|
+
@apply border-gray-darkest bg-gray-darkest;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.form-group.inverted .form-hint {
|
|
126
|
+
@apply text-gray-light;
|
|
127
|
+
|
|
128
|
+
&::before {
|
|
129
|
+
@apply bg-gray-light;
|
|
130
|
+
}
|
|
131
|
+
}
|