Overview
Comment: | Fix checkbox in query builder |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | stable |
Files: | files | file ages | folders |
SHA1: |
58d52846fc42283d75c7b2582b380e04 |
User & Date: | bohwaz on 2020-12-08 20:36:40 |
Other Links: | manifest | tags |
Context
2020-12-08
| ||
22:02 | Fix user id check-in: e6b58bd1d4 user: bohwaz tags: trunk, stable | |
20:36 | Fix checkbox in query builder check-in: 58d52846fc user: bohwaz tags: trunk, stable | |
19:04 | Fix service order in subscription check-in: 981308eb4b user: bohwaz tags: trunk, stable | |
Changes
Modified src/www/admin/static/styles/03-forms.css from [ec278809c5] to [cb1bad2db4].
︙ | ︙ | |||
137 138 139 140 141 142 143 144 145 146 147 148 149 150 | input:hover + label::before { color: rgb(var(--gSecondColor)); } input:checked + label::before { text-shadow: 1px 1px 5px #ff9; } input:focus, button:focus, select:focus, textarea:focus, input[type=radio]:focus + label::before, input[type=checkbox]:focus + label::before { box-shadow: 0 0 5px .2rem rgb(var(--gSecondColor)); outline: 0; } /* buttons */ | > > > > > | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | input:hover + label::before { color: rgb(var(--gSecondColor)); } input:checked + label::before { text-shadow: 1px 1px 5px #ff9; } #queryBuilder input[type=checkbox] { position: unset; opacity: unset; } input:focus, button:focus, select:focus, textarea:focus, input[type=radio]:focus + label::before, input[type=checkbox]:focus + label::before { box-shadow: 0 0 5px .2rem rgb(var(--gSecondColor)); outline: 0; } /* buttons */ |
︙ | ︙ |