fay 6 years ago
parent
commit
d2537470a1
  1. 2
      Gruntfile.js
  2. 17
      dist/base.css
  3. 17
      dist/bundle.css
  4. 2
      dist/bundle.min.css
  5. 17
      dist/fineui.css
  6. 2
      dist/fineui.min.css
  7. 17
      src/css/base/richeditor/niceditor/niceditor.css
  8. 10
      src/less/base/richeditor/niceditor/niceditor.less

2
Gruntfile.js

@ -291,7 +291,7 @@ module.exports = function (grunt) {
open: true,
livereload: 35729,
// Change this to '0.0.0.0' to access the server from outside
hostname: "localhost"
hostname: "0.0.0.0"
},
server: {
options: {

17
dist/base.css vendored

@ -1062,6 +1062,23 @@ li.CodeMirror-hint-active {
.bi-pane {
min-height: 25px;
}
.bi-nic-editor {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}
.bi-nic-editor .niceditor-selected {
border: 1px solid #3685f2;
-webkit-box-shadow: 0 0 2px #3685f2;
-moz-box-shadow: 0 0 2px #3685f2;
box-shadow: 0 0 2px #3685f2;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-rich-editor .rich-editor-param {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;

17
dist/bundle.css vendored

@ -2908,6 +2908,23 @@ li.CodeMirror-hint-active {
.bi-pane {
min-height: 25px;
}
.bi-nic-editor {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}
.bi-nic-editor .niceditor-selected {
border: 1px solid #3685f2;
-webkit-box-shadow: 0 0 2px #3685f2;
-moz-box-shadow: 0 0 2px #3685f2;
box-shadow: 0 0 2px #3685f2;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-rich-editor .rich-editor-param {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

17
dist/fineui.css vendored

@ -2908,6 +2908,23 @@ li.CodeMirror-hint-active {
.bi-pane {
min-height: 25px;
}
.bi-nic-editor {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}
.bi-nic-editor .niceditor-selected {
border: 1px solid #3685f2;
-webkit-box-shadow: 0 0 2px #3685f2;
-moz-box-shadow: 0 0 2px #3685f2;
box-shadow: 0 0 2px #3685f2;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-rich-editor .rich-editor-param {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

17
src/css/base/richeditor/niceditor/niceditor.css

@ -0,0 +1,17 @@
.bi-nic-editor {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}
.bi-nic-editor .niceditor-selected {
border: 1px solid #3685f2;
-webkit-box-shadow: 0 0 2px #3685f2;
-moz-box-shadow: 0 0 2px #3685f2;
box-shadow: 0 0 2px #3685f2;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}

10
src/less/base/richeditor/niceditor/niceditor.less

@ -0,0 +1,10 @@
@import "../../../index";
.bi-nic-editor {
.user-select-enable();
& .niceditor-selected {
border: 1px solid @border-color-highlight;
.box-shadow(0 0 2px, @border-color-highlight);
.border-radius(2px);
}
}
Loading…
Cancel
Save