Fix stylelint errors.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
/*
|
||||
| Global Theme Styles.
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/*
|
||||
| Theme Button Styles.
|
||||
*/
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
.comment-list {
|
||||
@extend .list-unstyled;
|
||||
}
|
||||
|
||||
.comment-list ol {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.comment-form p {
|
||||
@extend .form-group;
|
||||
}
|
||||
|
||||
.comment-form input[type="text"],
|
||||
.comment-form input[type="email"],
|
||||
.comment-form input[type="url"],
|
||||
.comment-form textarea {
|
||||
@extend .form-control;
|
||||
}
|
||||
|
||||
.comment-form input[type="submit"] {
|
||||
@extend .btn;
|
||||
@extend .btn-secondary;
|
||||
|
||||
@@ -2,13 +2,17 @@
|
||||
.search-form {
|
||||
@extend .form-inline;
|
||||
}
|
||||
|
||||
.search-form label {
|
||||
font-weight: normal;
|
||||
@extend .form-group;
|
||||
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.search-form .search-field {
|
||||
@extend .form-control;
|
||||
}
|
||||
|
||||
.search-form .search-submit {
|
||||
@extend .btn;
|
||||
@extend .btn-secondary;
|
||||
|
||||
@@ -8,22 +8,26 @@
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.aligncenter {
|
||||
display: block;
|
||||
margin: ($spacer / 2) auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.alignleft,
|
||||
.alignright {
|
||||
margin-bottom: ($spacer / 2);
|
||||
height: auto;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(sm) {
|
||||
// Only float if not on an extra small device
|
||||
.alignleft {
|
||||
float: left;
|
||||
margin-right: ($spacer / 2);
|
||||
}
|
||||
|
||||
.alignright {
|
||||
float: right;
|
||||
margin-left: ($spacer / 2);
|
||||
@@ -34,10 +38,12 @@
|
||||
.wp-caption {
|
||||
@extend .figure;
|
||||
}
|
||||
|
||||
.wp-caption img {
|
||||
@extend .figure-img;
|
||||
@extend .img-fluid;
|
||||
}
|
||||
|
||||
.wp-caption-text {
|
||||
@extend .figure-caption;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/*
|
||||
| Site Footer Styles.
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
.banner .nav li {
|
||||
@extend .nav-item;
|
||||
}
|
||||
|
||||
.banner .nav a {
|
||||
@extend .nav-link;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/*
|
||||
| Page-specific Styles.
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/*
|
||||
| Site Post Styles.
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/*
|
||||
| Site Sidebar Styles.
|
||||
*/
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
// Import npm dependencies
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
|
||||
// Import theme styles
|
||||
@import "common/global";
|
||||
@import "components/buttons";
|
||||
@import "components/comments";
|
||||
|
||||
Reference in New Issue
Block a user