Skip to content
Snippets Groups Projects
Commit 4750fb31 authored by Steven Wittens's avatar Steven Wittens
Browse files

#43990: Fix container-inline for node text fields

parent 5ba0c596
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -24,6 +24,10 @@ td.revision-current { ...@@ -24,6 +24,10 @@ td.revision-current {
display: block; display: block;
width: 95%; width: 95%;
} }
.node-form .container-inline .form-text {
display: inline;
width: auto;
}
.node-form .standard { .node-form .standard {
clear: both; clear: both;
} }
......
...@@ -32,9 +32,6 @@ thead th { ...@@ -32,9 +32,6 @@ thead th {
.breadcrumb { .breadcrumb {
padding-bottom: .5em padding-bottom: .5em
} }
.container-inline div {
display: inline;
}
.error { .error {
color: #f00; color: #f00;
} }
...@@ -152,6 +149,13 @@ dl.multiselect .form-item { ...@@ -152,6 +149,13 @@ dl.multiselect .form-item {
margin: 0; margin: 0;
} }
/*
** Inline items (need to override above)
*/
.container-inline div, .container-inline label {
display: inline;
}
/* /*
** Tab navigation ** Tab navigation
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment