diff --git a/_includes/cards/form-all-elements.html b/_includes/cards/form-all-elements.html index 5246cb96e4b2124425f58ddd4d7b279e44e33af1..0010e8b803f800d074b9b55c29d958183acc1e34 100644 --- a/_includes/cards/form-all-elements.html +++ b/_includes/cards/form-all-elements.html @@ -10,23 +10,19 @@
Username
- +
- - + +
- - + +
- +
@@ -86,28 +82,29 @@ - ? + ?
- +
- +
- + + placeholder="Invalid State..">
Invalid feedback
@@ -257,17 +254,19 @@
Inline Radios
-
- - Option 1 -
-
- - Option 2 -
-
- - Option 3 +
+
+ + Option 1 +
+
+ + Option 2 +
+
+ + Option 3 +
@@ -293,18 +292,20 @@
Inline Checkboxes
-
- - -
-
- - -
-
- - +
+
+ + +
+
+ + +
+
+ + +
@@ -606,55 +607,55 @@ {% contentfor js %} {% endcontentfor %} \ No newline at end of file diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index 456b2e3d500c1d7998acf564b747d504e76575fa..74105b00522bd52b4cf0ad6d0086d3d395d12586 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -9543,6 +9543,7 @@ img { .text-wrap { padding: 3rem 5rem; font-size: 1rem; + line-height: 1.6; } .text-wrap > :first-child { @@ -11809,6 +11810,10 @@ textarea[cols] { margin: 0; } +.custom-controls-stacked .custom-control { + margin-bottom: .25rem; +} + .custom-control-label:before { border: 1px solid rgba(0, 40, 100, 0.12); background-color: #fff; diff --git a/assets/scss/dashboard/_form.scss b/assets/scss/dashboard/_form.scss index 62ff6d1f2a2d83bb46ba7cd72ea332a14b66e9a3..4a830dab45d0bbde05aff56d124a9a85faaa4b23 100644 --- a/assets/scss/dashboard/_form.scss +++ b/assets/scss/dashboard/_form.scss @@ -37,6 +37,12 @@ textarea { margin: 0; } +.custom-controls-stacked { + .custom-control { + margin-bottom: .25rem; + } +} + .custom-control-label { &:before { border: 1px solid $input-border-color; diff --git a/gulpfile.js b/gulpfile.js index d9a42b13c98415c9bc9d7ed9c91d4eb60cc2f2f5..03d713fd48c46ad304f6055fa94727855fb1bc56 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -5,7 +5,7 @@ var gulp = require('gulp'), autoprefixer = require('gulp-autoprefixer'); gulp.task('styles', function () { - return gulp.src('src/assets/scss/bundle.scss', { base: '.' }) + return gulp.src('assets/scss/bundle.scss', { base: '.' }) .pipe(sass({ precision: 8, outputStyle: 'expanded' @@ -15,11 +15,11 @@ gulp.task('styles', function () { cascade: false })) .pipe(rename('dashboard.css')) - .pipe(gulp.dest('src/assets/css/')); + .pipe(gulp.dest('assets/css/')); }); gulp.task('styles-plugins', function () { - return gulp.src('src/assets/plugins/**/plugin.scss', { base: '.' }) + return gulp.src('assets/plugins/**/plugin.scss', { base: '.' }) .pipe(sass({ precision: 6, outputStyle: 'expanded' @@ -39,8 +39,8 @@ gulp.task('styles-plugins', function () { }); gulp.task('watch', ['styles', 'styles-plugins'], function() { - gulp.watch('src/assets/scss/**/*.scss', ['styles']); - gulp.watch('src/assets/plugins/**/*.scss', ['styles-plugins']); + gulp.watch('assets/scss/**/*.scss', ['styles']); + gulp.watch('assets/plugins/**/*.scss', ['styles-plugins']); }); gulp.task('default', ['styles', 'styles-plugins']); \ No newline at end of file