wagtail/client/scss/components/forms/_title.scss

35 wiersze
925 B
SCSS
Czysty Wina Historia

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Styles for title fields throughout the page.
// The `title` class is meant to be applied by end users throughout different forms APIs.
.w-panel.title,
.w-field.title {
input,
textarea,
.Draftail-Editor .public-DraftEditor-content {
@apply w-h2;
color: $color-input-text;
}
}
// Styles for the title field when at the top of the page.
// Its the first panel when comments are disabled, second if enabled.
.w-panel.title:nth-child(1),
.w-panel.title:nth-child(2) {
.w-panel__header {
@apply w-sr-only;
}
input,
textarea,
.Draftail-Editor .public-DraftEditor-content {
@apply w-h1;
color: $color-input-text;
// Slightly out-dented so the fields is horizontally aligned.
padding-inline-start: theme('spacing[1.5]');
margin-inline-start: calc(-1 * theme('spacing[1.5]'));
&:not(:hover, :focus, [aria-invalid='true']) {
border-color: transparent;
}
}
}