You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
526 B
25 lines
526 B
/** |
|
* @file |
|
* Visual styles for fields. |
|
*/ |
|
|
|
.field__label { |
|
font-weight: bold; |
|
} |
|
.field--label-inline .field__label, |
|
.field--label-inline .field__items { |
|
float: left; /* LTR */ |
|
} |
|
.field--label-inline .field__label, |
|
.field--label-inline > .field__item, |
|
.field--label-inline .field__items { |
|
padding-right: 0.5em; |
|
} |
|
[dir="rtl"] .field--label-inline .field__label, |
|
[dir="rtl"] .field--label-inline .field__items { |
|
padding-right: 0; |
|
padding-left: 0.5em; |
|
} |
|
.field--label-inline .field__label::after { |
|
content: ":"; |
|
}
|
|
|