local-actions.pcss.css
Layout styles for local actions.
File
-
core/
themes/ claro/ css/ layout/ local-actions.pcss.css
View source
- /**
- * @file
- * Layout styles for local actions.
- */
-
- /**
- * Action link layout styles.
- */
- .local-actions {
- margin: var(--space-m) 0;
- padding: 0;
- list-style: none;
- }
- /* This is required to win over specificity of [dir="rtl"] ul */
- [dir="rtl"] .local-actions {
- margin-right: 0;
- }
-
- .local-actions__item {
- display: inline-block;
- margin: 0 calc(var(--space-xs) / 2);
- }
-
- .local-actions__item:first-child {
- margin-left: 0; /* LTR */
- }
- [dir="rtl"] .local-actions__item:first-child {
- margin-right: 0;
- margin-left: calc(var(--space-xs) / 2);
- }
-
- .local-actions__item:last-child {
- margin-right: 0; /* LTR */
- }
- [dir="rtl"] .local-actions__item:last-child {
- margin-right: calc(var(--space-xs) / 2);
- margin-left: 0;
- }
-
- [dir="rtl"] .local-actions__item:only-child {
- margin-right: 0;
- margin-left: 0;
- }