assets/ -> resources/assets/
This commit is contained in:
0
resources/assets/styles/components/_buttons.scss
Normal file
0
resources/assets/styles/components/_buttons.scss
Normal file
19
resources/assets/styles/components/_comments.scss
Normal file
19
resources/assets/styles/components/_comments.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
.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;
|
||||
}
|
||||
15
resources/assets/styles/components/_forms.scss
Normal file
15
resources/assets/styles/components/_forms.scss
Normal file
@@ -0,0 +1,15 @@
|
||||
// Search form
|
||||
.search-form {
|
||||
@extend .form-inline;
|
||||
}
|
||||
.search-form label {
|
||||
font-weight: normal;
|
||||
@extend .form-group;
|
||||
}
|
||||
.search-form .search-field {
|
||||
@extend .form-control;
|
||||
}
|
||||
.search-form .search-submit {
|
||||
@extend .btn;
|
||||
@extend .btn-secondary;
|
||||
}
|
||||
49
resources/assets/styles/components/_wp-classes.scss
Normal file
49
resources/assets/styles/components/_wp-classes.scss
Normal file
@@ -0,0 +1,49 @@
|
||||
// WordPress Generated Classes
|
||||
// http://codex.wordpress.org/CSS#WordPress_Generated_Classes
|
||||
|
||||
// Media alignment
|
||||
.alignnone {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
// Captions
|
||||
.wp-caption {
|
||||
@extend .figure;
|
||||
}
|
||||
.wp-caption img {
|
||||
@extend .figure-img;
|
||||
@extend .img-fluid;
|
||||
}
|
||||
.wp-caption-text {
|
||||
@extend .figure-caption;
|
||||
}
|
||||
|
||||
// Text meant only for screen readers
|
||||
.screen-reader-text {
|
||||
@extend .sr-only;
|
||||
@extend .sr-only-focusable;
|
||||
}
|
||||
Reference in New Issue
Block a user