Browse Source

Dialog style fix

pull/36/head
Artur Arseniev 10 years ago
parent
commit
8e65d6bc73
  1. 2
      dist/css/grapes.min.css
  2. 8
      dist/grapes.min.js
  3. 3
      src/commands/view/ExportTemplate.js
  4. 2
      styles/css/main.css
  5. 2
      styles/scss/main.scss

2
dist/css/grapes.min.css

File diff suppressed because one or more lines are too long

8
dist/grapes.min.js

File diff suppressed because one or more lines are too long

3
src/commands/view/ExportTemplate.js

@ -12,6 +12,7 @@ define(function() {
this.cm = editor.CodeManager || null;
this.cssc = editor.CssComposer || null;
this.protCss = editor.Config.protectedCss;
this.pfx = editor.Config.stylePrefix || '';
this.enable();
},
@ -55,7 +56,7 @@ define(function() {
oCsslEd = this.buildEditor('css', 'hopscotch', 'CSS');
this.htmlEditor = oHtmlEd.el;
this.cssEditor = oCsslEd.el;
this.$editors = $('<div>');
this.$editors = $('<div>', {class: this.pfx + 'export-dl'});
this.$editors.append(oHtmlEd.$el).append(oCsslEd.$el);
}

2
styles/css/main.css

@ -3578,7 +3578,7 @@ ol.example li.placeholder:before {
.wte-mdl-content {
border-top: 1px solid rgba(255, 255, 255, 0.1); }
#wte-mdl-c > div::after {
.wte-export-dl::after {
content: "";
clear: both;
display: block;

2
styles/scss/main.scss

@ -1193,7 +1193,7 @@ $paddElClm: 5px 6px;
.#{$mdl-prefix}content{
border-top: 1px solid $mainLhColor;
}
##{$mdl-prefix}c > div::after{
.#{$app-prefix}export-dl::after{
content: "";
clear: both;
display:block;

Loading…
Cancel
Save