We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4780c9c commit 44d4800Copy full SHA for 44d4800
1 file changed
dojo/static/dojo/css/dojo.css
@@ -1894,4 +1894,14 @@ input[type=number]::-webkit-outer-spin-button {
1894
color: ButtonText;
1895
}
1896
1897
-
+
1898
+/* Disabled form-field styling — @tailwindcss/forms resets the browser default
1899
+ disabled appearance for <select>/<input>/<textarea> without replacing it,
1900
+ so server-side `disabled=True` fields end up looking editable. */
1901
+select:disabled,
1902
+input:disabled,
1903
+textarea:disabled {
1904
+ opacity: 0.6;
1905
+ cursor: not-allowed;
1906
+ background-color: #f5f5f5;
1907
+}
0 commit comments