mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-04 08:01:34 -04:00
This commit makes the ‘how to do placeholders’ box part of the tour, with the same blue background. It also adds some Javascript enhancement so that: - it responds to the contents of the message template - has a ‘show me’ link which inserts ‘Dear ((name))’ into the template contents textbox We’ve found that this has helped people understnad what placeholders are, and how to do them.
24 lines
278 B
SCSS
24 lines
278 B
SCSS
.placeholder-hint {
|
|
|
|
display: block;
|
|
|
|
&-title {
|
|
@include bold-19;
|
|
}
|
|
|
|
&-action {
|
|
|
|
@include bold-19;
|
|
display: inline-block;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
|
|
&:active {
|
|
background: $yellow-25;
|
|
outline: none;
|
|
}
|
|
|
|
}
|
|
|
|
}
|