Double quotes for styles
This commit is contained in:
@@ -2,7 +2,7 @@ module.exports = {
|
||||
'extends': 'stylelint-config-standard',
|
||||
'rules': {
|
||||
'no-empty-source': null,
|
||||
'string-quotes': 'single',
|
||||
'string-quotes': 'double',
|
||||
'at-rule-no-unknown': [
|
||||
true,
|
||||
{
|
||||
|
||||
@@ -1 +1 @@
|
||||
@import '~bootstrap/scss/bootstrap';
|
||||
@import "~bootstrap/scss/bootstrap";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/** Import Bootstrap functions */
|
||||
@import '~bootstrap/scss/functions';
|
||||
@import "~bootstrap/scss/functions";
|
||||
|
||||
$theme-colors: (
|
||||
primary: #525ddc
|
||||
|
||||
@@ -10,14 +10,14 @@
|
||||
@extend .form-group;
|
||||
}
|
||||
|
||||
.comment-form input[type='text'],
|
||||
.comment-form input[type='email'],
|
||||
.comment-form input[type='url'],
|
||||
.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'] {
|
||||
.comment-form input[type="submit"] {
|
||||
@extend .btn;
|
||||
@extend .btn-secondary;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@import 'common/variables';
|
||||
@import "common/variables";
|
||||
|
||||
/** Import everything from autoload */
|
||||
@import './autoload/**/*';
|
||||
@import "./autoload/**/*";
|
||||
|
||||
/**
|
||||
* Import npm dependencies
|
||||
@@ -9,17 +9,17 @@
|
||||
* Prefix your imports with `~` to grab from node_modules/
|
||||
* @see https://github.com/webpack-contrib/sass-loader#imports
|
||||
*/
|
||||
// @import '~some-node-module';
|
||||
// @import "~some-node-module";
|
||||
|
||||
/** Import theme styles */
|
||||
@import 'common/global';
|
||||
@import 'components/buttons';
|
||||
@import 'components/comments';
|
||||
@import 'components/forms';
|
||||
@import 'components/wp-classes';
|
||||
@import 'layouts/header';
|
||||
@import 'layouts/sidebar';
|
||||
@import 'layouts/footer';
|
||||
@import 'layouts/pages';
|
||||
@import 'layouts/posts';
|
||||
@import 'layouts/tinymce';
|
||||
@import "common/global";
|
||||
@import "components/buttons";
|
||||
@import "components/comments";
|
||||
@import "components/forms";
|
||||
@import "components/wp-classes";
|
||||
@import "layouts/header";
|
||||
@import "layouts/sidebar";
|
||||
@import "layouts/footer";
|
||||
@import "layouts/pages";
|
||||
@import "layouts/posts";
|
||||
@import "layouts/tinymce";
|
||||
|
||||
Reference in New Issue
Block a user