GUACAMOLE-422: Use the same display mechanism and structure (the guacForm directive) for all locale preferences, not just the time zone.

This commit is contained in:
Michael Jumper
2019-06-15 13:43:28 -07:00
parent ec963dd036
commit 78977ae4fc
3 changed files with 35 additions and 48 deletions

View File

@@ -17,8 +17,23 @@
* under the License.
*/
.preferences .update-password .form,
.preferences .locale .form {
.preferences .form .fields {
display: table;
padding-left: 0.5em;
border-left: 3px solid rgba(0, 0, 0, 0.125);
}
border-left: 3px solid rgba(0,0,0,0.125);
}
.preferences .form .fields .labeled-field {
display: table-row;
}
.preferences .form .fields .field-header,
.preferences .form .fields .form-field {
display: table-cell;
padding: 0.125em;
vertical-align: top;
}
.preferences .form .fields .field-header {
padding-right: 1em;
}