N°4466 - SCSS: Improve readability

This commit is contained in:
Molkobain
2021-11-23 09:57:53 +01:00
parent f3d2e89c68
commit 3654df1cae
3 changed files with 15 additions and 5 deletions

View File

@@ -48,7 +48,17 @@ $ibo-field--enable-bulk--checkbox--margin-left: 8px !default;
/* Avoid value to overflow from its container with very long strings (typically URLs) */
/* Note: Some types of attribute must be excluding as it can alter their rendering */
&:not([data-attribute-type="AttributeBlob"]):not([data-attribute-type="AttributeFile"]):not([data-attribute-type="AttributeImage"]):not([data-attribute-type="AttributeCustomFields"]):not([data-attribute-type="AttributeTagSet"]):not([data-attribute-type="AttributeEnumSet"]):not([data-attribute-type="AttributeClassAttCodeSet"]):not([data-attribute-type="AttributeQueryAttCodeSet"]):not(.ibo-input-file-select--container) {
&:not(
[data-attribute-type="AttributeBlob"],
[data-attribute-type="AttributeFile"],
[data-attribute-type="AttributeImage"],
[data-attribute-type="AttributeCustomFields"],
[data-attribute-type="AttributeTagSet"],
[data-attribute-type="AttributeEnumSet"],
[data-attribute-type="AttributeClassAttCodeSet"],
[data-attribute-type="AttributeQueryAttCodeSet"],
.ibo-input-file-select--container
) {
/* We need the rule to apply for the class and all its descendants, hence the "& *" */
.ibo-field--value {
word-break: break-word;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long