Projet

Général

Profil

0001-manager-keep-gadjo-style-for-widgets-in-dialogs-3890.patch

Frédéric Péters, 12 janvier 2020 14:51

Télécharger (1,59 ko)

Voir les différences:

Subject: [PATCH] manager: keep gadjo style for widgets in dialogs (#38904)

 .../static/authentic2/manager/css/style.css   | 24 +------------------
 1 file changed, 1 insertion(+), 23 deletions(-)
src/authentic2/manager/static/authentic2/manager/css/style.css
189 189
form table tr th {
190 190
        text-align: right;
191 191
}
192
div.ui-dialog form p input, div.ui-dialog form p textarea, div.ui-dialog form p select,
192

  
193 193
form p input, form p textarea, form p select {
194 194
  width: calc(100% - 28px);
195 195
}
......
198 198
  width: auto;
199 199
}
200 200

  
201
#id_first_name_p, #id_last_name_p,
202
#id_password1_p, #id_password2_p {
203
  width: 50%;
204
}
205
#id_first_name_p, #id_password1_p {
206
  float: left;
207
  clear: both;
208
}
209
#id_last_name_p, #id_password2_p {
210
  margin-left: 50%;
211
}
212

  
213
#id_last_name_p::after, #id_password2_p::after {
214
  content: "";
215
  display: block;
216
  clear: both;
217
}
218

  
219
#id_generate_password_p label, #id_reset_password_at_next_login_p label,
220
#id_send_mail_p label, #id_is_superuser_p label, #id_send_password_reset_p label {
221
  display: inline;
222
}
223 201
.form-inner-container > .errorlist {
224 202
  margin: 5px 8px;
225 203
  margin-left: 0px;
226
-