diff options
| author | jer <gripfx@users.noreply.github.com> | 2022-11-04 08:57:32 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-04 09:57:32 +0100 |
| commit | 5a7f3213ae4a2dc5e962ae1fcdedc6e6ab68dfcd (patch) | |
| tree | fe7a60eae8197f25689e3c8263bdcd22fbfe725f | |
| parent | 7b0e9ea53ca99de2f485ec582f3a79be34b531d4 (diff) | |
Refs #34095 -- Changed height of form controls to use rem units in admin.
Co-authored-by: ja <ja@ja.com>
| -rw-r--r-- | django/contrib/admin/static/admin/css/changelists.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/django/contrib/admin/static/admin/css/changelists.css b/django/contrib/admin/static/admin/css/changelists.css index 4406dccb93..641dccd7e3 100644 --- a/django/contrib/admin/static/admin/css/changelists.css +++ b/django/contrib/admin/static/admin/css/changelists.css @@ -90,7 +90,7 @@ } #toolbar #searchbar { - height: 19px; + height: 1.1875rem; border: 1px solid var(--border-color); padding: 2px 5px; margin: 0; @@ -270,7 +270,7 @@ background: var(--body-bg); border-top: none; border-bottom: none; - line-height: 24px; + line-height: 1.5rem; color: var(--body-quiet-color); width: 100%; } @@ -289,7 +289,7 @@ #changelist .actions select { vertical-align: top; - height: 24px; + height: 1.5rem; color: var(--body-fg); border: 1px solid var(--border-color); border-radius: 4px; @@ -316,7 +316,7 @@ background: var(--body-bg); box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; cursor: pointer; - height: 24px; + height: 1.5rem; line-height: 1; padding: 4px 8px; margin: 0; |
