(Retrofit from trunk) 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:2.4[5195]
This commit is contained in:
Guillaume Lajarige
2018-01-03 09:44:19 +00:00
parent c17d0b1027
commit 01e151632f
2 changed files with 4 additions and 4 deletions

View File

@@ -1195,7 +1195,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;
@@ -1361,7 +1360,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

@@ -1310,7 +1310,6 @@ fieldset .details>.field_container {
&.field_data {
margin-top: 8px;
margin-bottom: 10px;
word-break: break-all;
}
/* .field_value, .field_comments, .field_infos */
@@ -1531,7 +1530,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 */