N°1217.2 Console UI: Small enhancements on object properties display.

* HTML Attribute value not breaking on words anymore.
* Attribute label width bigger on single column display.

SVN:trunk[5194]
This commit is contained in:
Guillaume Lajarige
2018-01-03 09:41:58 +00:00
parent b5685a9d76
commit 88167fb3ae
2 changed files with 4 additions and 4 deletions

View File

@@ -1214,7 +1214,6 @@ fieldset .details > .field_container {
.field_container.field_large > div.field_data {
margin-top: 8px;
margin-bottom: 10px;
word-break: break-all;
}
.field_container * {
box-sizing: border-box;
@@ -1380,7 +1379,8 @@ fieldset .details > .field_container {
/* On a single column, field labels can take more width but they are limited so it doesn't feel weird when all labels are short */
}
.one-col-details .details .field_container.field_small div.field_label {
width: 160px;
width: 175px;
max-width: inherit;
}
/* This is extracted from the ".details > .field_container ..." because of the fullscreen option (element is moved at the end of the body */
.field_input_text {

View File

@@ -1315,7 +1315,6 @@ fieldset .details>.field_container {
&.field_data {
margin-top: 8px;
margin-bottom: 10px;
word-break: break-all;
}
/* .field_value, .field_comments, .field_infos */
@@ -1536,7 +1535,8 @@ fieldset .details>.field_container {
.one-col-details .details .field_container.field_small {
div.field_label {
/* On a single column, field labels can take more width but they are limited so it doesn't feel weird when all labels are short */
width: 160px;
width: 175px;
max-width: inherit;
}
}
/* This is extracted from the ".details > .field_container ..." because of the fullscreen option (element is moved at the end of the body */