css: fix stylelint errors.
This commit is contained in:
@@ -38,12 +38,15 @@ a, button, input[type="submit"] {
|
||||
background-color: var(--button-primary-background-color);
|
||||
border: none;
|
||||
|
||||
transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
||||
transition:
|
||||
background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
|
||||
box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
|
||||
border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
||||
box-shadow: 0 3px 1px -2px rgba(0 0 0 / 20%), 0 2px 2px 0 rgba(0 0 0 / 14%), 0 1px 5px 0 rgba(0 0 0 / 12%);
|
||||
|
||||
&:hover:not([disabled]) {
|
||||
background-color: var(--button-primary-hover-background-color);
|
||||
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
box-shadow: 0 2px 4px -1px rgba(0 0 0 / 20%), 0 4px 5px 0 rgba(0 0 0 / 14%), 0 1px 10px 0 rgba(0 0 0 / 12%);
|
||||
}
|
||||
|
||||
&[disabled] {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@import "../base/000_vars.scss";
|
||||
@import "../base/000_vars";
|
||||
|
||||
div.prose {
|
||||
line-height: 1.4em;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
@import "../base/020_base.scss";
|
||||
@import "../base/020_base";
|
||||
|
||||
form.simple_form {
|
||||
margin: 0 0 1em 0;
|
||||
@@ -30,13 +30,13 @@ form.simple_form {
|
||||
div.input {
|
||||
margin-bottom: 1em;
|
||||
|
||||
input[type=text], input[type=file], input[type=password], input[type=email], input[type=url] {
|
||||
input[type="text"], input[type="file"], input[type="password"], input[type="email"], input[type="url"] {
|
||||
width: 100%;
|
||||
max-width: 25em;
|
||||
}
|
||||
|
||||
.hint {
|
||||
@extend .fineprint;
|
||||
@extend %fineprint;
|
||||
padding-left: 1em;
|
||||
|
||||
@media (max-width: 660px) {
|
||||
|
||||
Reference in New Issue
Block a user