diff options
author | Thomas Lange <code@nerdmind.de> | 2019-04-26 21:51:52 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2019-04-26 21:51:52 +0200 |
commit | 7c252088ef27df20bf67b8bf8818710bfda1721e (patch) | |
tree | b3a30c58f19f1216d0b246f970e61641a7002334 /theme/admin/rsrc | |
parent | afcfaeb2bc7bbe1b278dab78e92d06026b4726e1 (diff) | |
download | blog-7c252088ef27df20bf67b8bf8818710bfda1721e.tar.gz blog-7c252088ef27df20bf67b8bf8818710bfda1721e.tar.xz blog-7c252088ef27df20bf67b8bf8818710bfda1721e.zip |
Remove "box-sizing" property with invalid value
The "box-sizing" property can only have two values: "content-box" (default) or "border-box" (the "padding-box" value has been removed from the specification a long time ago).
Diffstat (limited to 'theme/admin/rsrc')
-rw-r--r-- | theme/admin/rsrc/main.css | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/theme/admin/rsrc/main.css b/theme/admin/rsrc/main.css index f6a82ac..6de252d 100644 --- a/theme/admin/rsrc/main.css +++ b/theme/admin/rsrc/main.css @@ -538,7 +538,6 @@ form { .flex > .flex-item { display: flex; - box-sizing: padding-box; width: 100%; } @@ -645,7 +644,6 @@ form { ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ input, select, textarea { width: 100%; - box-sizing: padding-box; background: #EEE; color: #404040; font-family: inherit; |