Merge pull request #10 from jezuhke/master

This commit is contained in:
Marvin
2015-12-04 17:26:37 +01:00
5 changed files with 71 additions and 18 deletions

View File

@@ -46,7 +46,8 @@ body {
border: 1px solid #DDDDDD; border: 1px solid #DDDDDD;
border-radius: 4px; border-radius: 4px;
position: relative; position: relative;
word-wrap: break-word; } word-wrap: break-word;
padding-left: 220px; }
.edit .demo:after { .edit .demo:after {
background-color: #F5F5F5; background-color: #F5F5F5;
@@ -322,8 +323,6 @@ a.language-selected {
background: inherit; background: inherit;
color: inherit; color: inherit;
display: inherit; display: inherit;
/*font-family: inherit;*/
/*font-size: inherit;*/
line-height: inherit; line-height: inherit;
margin: inherit; margin: inherit;
padding: inherit; padding: inherit;
@@ -331,3 +330,52 @@ a.language-selected {
-ms-text-size-adjust: inherit; } -ms-text-size-adjust: inherit; }
.toolbox-reset .collapse { .toolbox-reset .collapse {
display: block; } display: block; }
.toolbox-reset .modal {
left: inherit; }
/*
* Stuff we've deleted that comes from the bootstrap-combined.css file
*/
.toolbox-reset .modal {
position: fixed;
top: 10%;
left: 50%;
z-index: 1050;
width: 560px;
margin-left: -280px;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
outline: none; }
.toolbox-reset .modal.fade {
-webkit-transition: opacity .3s linear, top .3s ease-out;
-moz-transition: opacity .3s linear, top .3s ease-out;
-o-transition: opacity .3s linear, top .3s ease-out;
transition: opacity .3s linear, top .3s ease-out;
top: -25%; }
.toolbox-reset .modal.fade.in {
top: 10%;
display: inherit !important; }
#MD {
width: 992px; }
#SM {
width: 768px; }
#XS {
width: 480px; }
#LG {
width: 100%; }

View File

@@ -7,7 +7,7 @@ var sass = require('gulp-sass');
gulp.task('sass', function () { gulp.task('sass', function () {
gulp.src('scss/*.scss') gulp.src('scss/**/*.scss')
.pipe(sass().on('error', sass.logError)) .pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('css')); .pipe(gulp.dest('css'));
}); });
@@ -25,5 +25,5 @@ gulp.task('serve', ['sass'], function () {
gulp.task('sass:watch', function () { gulp.task('sass:watch', function () {
gulp.watch('scss/*.scss', ['sass']); gulp.watch('scss/**/*.scss', ['sass']);
}); });

View File

@@ -1,2 +1,3 @@
@import 'partials/legacy'; @import 'partials/legacy';
@import 'partials/overwrites'; @import 'partials/overwrites';
@import 'partials/editor';

View File

@@ -43,8 +43,10 @@ body {
position:relative; position:relative;
word-wrap: break-word; word-wrap: break-word;
padding-left: 220px; padding-left: 220px;
} }
.edit .demo:after { .edit .demo:after {
background-color: #F5F5F5; background-color: #F5F5F5;
border: 1px solid #DDDDDD; border: 1px solid #DDDDDD;

View File

@@ -1,16 +1,18 @@
.toolbox-reset { .toolbox-reset {
background: inherit; background: inherit;
color: inherit; color: inherit;
display: inherit; display: inherit;
/*font-family: inherit;*/ line-height: inherit;
/*font-size: inherit;*/ margin: inherit;
line-height: inherit; padding: inherit;
margin: inherit; -webkit-text-size-adjust: inherit;
padding: inherit; -ms-text-size-adjust: inherit;
-webkit-text-size-adjust: inherit;
-ms-text-size-adjust: inherit;
& .collapse { .collapse {
display: block; display: block;
} }
.modal {
left: inherit;
}
} }