diff --git a/core/static/core/scss/base/general.scss b/core/static/core/scss/base/general.scss index bc834e8a..33812ced 100644 --- a/core/static/core/scss/base/general.scss +++ b/core/static/core/scss/base/general.scss @@ -162,6 +162,13 @@ input[readonly] { background: gainsboro; } +input[readonly]:focus { + outline: none; + border: none; + background: gainsboro; +} + + label { display: inline-block; font-weight: 500; @@ -272,3 +279,19 @@ input[type="radio"] { font-style: italic; color: $mid-grey; } + +.form-inline-align .checkbox-inline { + display: flex; + align-items: flex-start; /* key change */ + gap: 8px; + cursor: pointer; +} + +.form-inline-align input[type="checkbox"] { + margin-top: 3px; /* fine-tune vertical alignment */ +} + +.form-inline-align small { + margin-top: 1px; + font-size: 0.85em; +} \ No newline at end of file diff --git a/person/templates/person/component/date_fields.html b/person/templates/person/component/date_fields.html index 756f0e56..023bbe55 100644 --- a/person/templates/person/component/date_fields.html +++ b/person/templates/person/component/date_fields.html @@ -3,14 +3,15 @@