Overview
Comment:Clearly mark as disabled custom disabled radio inputs
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ae9abae8f87ef481b245d4a1174a77b178bdc405
User & Date: bohwaz on 2020-12-08 18:16:39
Other Links: manifest | tags
Context
2020-12-08
18:18
Put cash and waiting cheque accounts in liability if negative check-in: 01f2e75eea user: bohwaz tags: trunk, stable, 1.0.0-rc10
18:16
Clearly mark as disabled custom disabled radio inputs check-in: ae9abae8f8 user: bohwaz tags: trunk
18:14
Alert message if statement is unbalanced check-in: f5f8777028 user: bohwaz tags: trunk
Changes

Modified src/www/admin/static/styles/03-forms.css from [c5b73006cf] to [ec278809c5].

231
232
233
234
235
236
237









238
239
240
241
242
243
244
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253







+
+
+
+
+
+
+
+
+







}

input[disabled]:hover, input[readonly]:hover {
    background-color: unset;
    color: unset;
    border-color: unset;
}

input[disabled] + label {
    color: #666;
}

input[disabled] + label::before {
    color: #999;
    cursor: not-allowed;
}

select, input[size], input[type=color], button, input[type=button], input[type=submit], input[type=number] {
    min-width: 0;
}

/* Radio button lists (eg. new transaction) */
form .radio-btn {