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.
58 lines
1.1 KiB
58 lines
1.1 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
/** |
|
* @file |
|
* Styles for action links. |
|
*/ |
|
/* |
|
* Media query breakpoints. |
|
* Processed by postcss/postcss-custom-media. |
|
*/ |
|
/* Navigation related breakpoints */ |
|
/* Grid related breakpoints */ |
|
/* Grid shifts from 6 to 14 columns. */ |
|
/* Width of the entire grid maxes out. */ |
|
[dir="ltr"] .action-links { |
|
margin-left: 0 |
|
} |
|
[dir="rtl"] .action-links { |
|
margin-right: 0 |
|
} |
|
[dir="ltr"] .action-links { |
|
margin-right: 0 |
|
} |
|
[dir="rtl"] .action-links { |
|
margin-left: 0 |
|
} |
|
[dir="ltr"] .action-links { |
|
padding-left: 0 |
|
} |
|
[dir="rtl"] .action-links { |
|
padding-right: 0 |
|
} |
|
[dir="ltr"] .action-links { |
|
padding-right: 0 |
|
} |
|
[dir="rtl"] .action-links { |
|
padding-left: 0 |
|
} |
|
.action-links { |
|
margin-top: 0; |
|
margin-bottom: 0; |
|
padding-top: 0; |
|
padding-bottom: 0; |
|
list-style: none |
|
} |
|
.action-links li { |
|
display: inline-block |
|
} |
|
.action-links li a { |
|
color: var(--color-text-primary-medium); |
|
} |
|
.action-links-item { |
|
display: inline-block; |
|
}
|
|
|