ueditor.less 44.2 KB
Newer Older
S
develop  
server 已提交
1 2
/*基础UI构建
*/
ModStart's avatar
develop  
ModStart 已提交
3 4 5 6 7
@font-face {
  font-family: "editor-iconfont"; /* Project id 2897874 */
  src: data-uri('./../iconfont/iconfont.woff2?t=1635388959700') format('woff2'),
  data-uri('./../iconfont/iconfont.woff?t=1635388959700') format('woff'),
  data-uri('./../iconfont/iconfont.ttf?t=1635388959700') format('truetype');
ModStart's avatar
develop  
ModStart 已提交
8 9 10
  //src: url('//at.alicdn.com/t/font_2897874_3pjwacdzjg1.woff2?t=1639097214974') format('woff2'),
  //url('//at.alicdn.com/t/font_2897874_3pjwacdzjg1.woff?t=1639097214974') format('woff'),
  //url('//at.alicdn.com/t/font_2897874_3pjwacdzjg1.ttf?t=1639097214974') format('truetype');
ModStart's avatar
develop  
ModStart 已提交
11
}
ModStart's avatar
develop  
ModStart 已提交
12

S
develop  
server 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
/* common layer */
.edui-default .edui-box {
  border: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  line-height: 30px;
}

.edui-default a.edui-box {
  display: block;
  text-decoration: none;
  color: black;
}

.edui-default a.edui-box:hover {
  text-decoration: none;
}

.edui-default a.edui-box:active {
  text-decoration: none;
}

.edui-default table.edui-box {
  border-collapse: collapse;
}

.edui-default ul.edui-box {
  list-style-type: none;
}

div.edui-box {
  position: relative;
  display: -moz-inline-box !important;
  display: inline-block !important;
  vertical-align: top;
}

.edui-default .edui-clearfix {
  zoom: 1
}

.edui-default .edui-clearfix:after {
  content: '\20';
  display: block;
  clear: both;
}

* html div.edui-box {
  display: inline !important;
}

*:first-child + html div.edui-box {
  display: inline !important;
}

/* control layout */
.edui-default .edui-button-body, .edui-splitbutton-body, .edui-menubutton-body, .edui-combox-body {
  position: relative;
}

.edui-default .edui-popup {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.edui-default .edui-popup .edui-shadow {
  position: absolute;
  z-index: -1;
}

.edui-default .edui-popup .edui-bordereraser {
  position: absolute;
  overflow: hidden;
}

.edui-default .edui-tablepicker .edui-canvas {
  position: relative;
}

.edui-default .edui-tablepicker .edui-canvas .edui-overlay {
  position: absolute;
}

.edui-default .edui-dialog-modalmask, .edui-dialog-dragmask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.edui-default .edui-toolbar {
  position: relative;
}

/*
 * default theme
 */
.edui-default .edui-label {
  cursor: default;
}

.edui-default span.edui-clickable {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
}

.edui-default span.edui-unclickable {
  color: gray;
  cursor: default;
}

/* 工具栏 */
.edui-default .edui-toolbar {
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  padding: 1px;
  overflow: hidden; /*全屏下单独一行不占位*/
  zoom: 1;
  width: auto;
  height: auto;
}

.edui-default .edui-toolbar .edui-button,
.edui-default .edui-toolbar .edui-splitbutton,
.edui-default .edui-toolbar .edui-menubutton,
.edui-default .edui-toolbar .edui-combox {
  margin: 1px;
}

/*UI工具栏、编辑区域、底部*/
.edui-default .edui-editor {
  border: 1px solid #d4d4d4;
  background-color: white;
  position: relative;
  overflow: visible;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.edui-editor div {
  width: auto;
  height: auto;
}

ModStart's avatar
develop  
ModStart 已提交
163 164
.edui-default .edui-editor iframe {
  height: inherit;
ModStart's avatar
develop  
ModStart 已提交
165 166
}

S
develop  
server 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
.edui-default .edui-editor-toolbarbox {
  position: relative;
  zoom: 1;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.edui-default .edui-editor-toolbarboxouter {
  border-bottom: 1px solid #d4d4d4;
  /*background-color: #fafafa;*/
  /*background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);*/
  /*background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));*/
  /*background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);*/
  /*background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);*/
  /*background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);*/
ModStart's avatar
develop  
ModStart 已提交
182
  background: #FFF;
S
develop  
server 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
  /*background-repeat: repeat-x;*/
  /*border: 1px solid #d4d4d4;*/
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  *zoom: 1;
  /*-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);*/
  /*-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);*/
  /*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);*/
}

.edui-default .edui-editor-toolbarboxinner {
  padding: 2px;
}

.edui-default .edui-editor-iframeholder {
  position: relative;
  /*for fix ie6 toolbarmsg under iframe bug. relative -> static */
  /*_position: static !important;*
}

.edui-default .edui-editor-iframeholder textarea {
  font-family: consolas, "Courier New", "lucida console", monospace;
  font-size: 12px;
  line-height: 18px;
}

.edui-default .edui-editor-bottombar {
  /*border-top: 1px solid #ccc;*/
  /*height: 20px;*/
  /*width: 40%;*/
  /*float: left;*/
  /*overflow: hidden;*/
}

.edui-default .edui-editor-bottomContainer {
  overflow: hidden;
}

.edui-default .edui-editor-bottomContainer table {
  width: 100%;
  height: 0;
  overflow: hidden;
  border-spacing: 0;
ModStart's avatar
develop  
ModStart 已提交
228
  margin: 0;
S
develop  
server 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
}

.edui-default .edui-editor-bottomContainer td {
  white-space: nowrap;
  border-top: 1px solid #ccc;
  line-height: 20px;
  font-size: 12px;
  font-family: Arial, Helvetica, Tahoma, Verdana, Sans-Serif;
}

.edui-default .edui-editor-wordcount {
  text-align: right;
  margin-right: 5px;
  color: #aaa;
}

.edui-default .edui-editor-scale {
  width: 12px;
}

.edui-default .edui-editor-scale .edui-editor-icon {
  float: right;
  width: 100%;
  height: 12px;
  margin-top: 10px;
ModStart's avatar
develop  
ModStart 已提交
254
  background: data-uri("../images/scale.png") no-repeat;
S
develop  
server 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
  cursor: se-resize;
}

.edui-default .edui-editor-breadcrumb {
  margin: 2px 0 0 3px;
}

.edui-default .edui-editor-breadcrumb span {
  cursor: pointer;
  text-decoration: underline;
  color: blue;
}

.edui-default .edui-toolbar .edui-for-fullscreen {
  float: right;
}

.edui-default .edui-bubble .edui-popup-content {
  border: 1px solid #DCAC6C;
  background-color: #fff6d9;
  padding: 5px;
  font-size: 10pt;
  font-family: "宋体";
}

.edui-default .edui-bubble .edui-shadow {
  /*box-shadow: 1px 1px 3px #818181;*/
  /*-webkit-box-shadow: 2px 2px 3px #818181;*/
  /*-moz-box-shadow: 2px 2px 3px #818181;*/
  /*filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius = '2', MakeShadow = 'true', ShadowOpacity = '0.5');*/
}

.edui-default .edui-editor-toolbarmsg {
  background-color: #FFF6D9;
  border-bottom: 1px solid #ccc;
  position: absolute;
  bottom: -25px;
  left: 0;
  z-index: 1009;
  width: 99.9%;
}

.edui-default .edui-editor-toolbarmsg-upload {
  font-size: 14px;
  color: blue;
  width: 100px;
  height: 16px;
  line-height: 16px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 350px;
}

.edui-default .edui-editor-toolbarmsg-label {
  font-size: 12px;
  line-height: 16px;
  padding: 4px;
}

.edui-default .edui-editor-toolbarmsg-close {
  float: right;
  width: 20px;
  height: 16px;
  line-height: 16px;
  cursor: pointer;
  color: red;
}

/*可选中菜单按钮*/
.edui-default .edui-list .edui-bordereraser {
  display: none;
}

.edui-default .edui-listitem {
  padding: 1px;
  white-space: nowrap;
}

.edui-default .edui-list .edui-state-hover {
  position: relative;
ModStart's avatar
develop  
ModStart 已提交
336 337
  background-color: #EEE;
  border: 1px solid #EEE;
S
develop  
server 已提交
338
  padding: 0;
ModStart's avatar
develop  
ModStart 已提交
339
  border-radius: 0.25rem;
S
develop  
server 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
}

.edui-default .edui-for-fontfamily .edui-listitem-label {
  min-width: 130px;
  _width: 120px;
  font-size: 12px;
  height: 22px;
  line-height: 22px;
  padding-left: 5px;
}

.edui-default .edui-for-insertcode .edui-listitem-label {
  min-width: 120px;
  _width: 120px;
  font-size: 12px;
  height: 22px;
  line-height: 22px;
  padding-left: 5px;
}

.edui-default .edui-for-underline .edui-listitem-label {
  min-width: 120px;
  _width: 120px;
  padding: 3px 5px;
  font-size: 12px;
}

.edui-default .edui-for-fontsize .edui-listitem-label {
  min-width: 120px;
  _width: 120px;
  padding: 3px 5px;

}

.edui-default .edui-for-paragraph .edui-listitem-label {
  min-width: 200px;
  _width: 200px;
  padding: 2px 5px;
}

.edui-default .edui-for-rowspacingtop .edui-listitem-label,
.edui-default .edui-for-rowspacingbottom .edui-listitem-label {
  min-width: 53px;
  _width: 53px;
  padding: 2px 5px;
}

.edui-default .edui-for-lineheight .edui-listitem-label {
  min-width: 53px;
  _width: 53px;
  padding: 2px 5px;
}

.edui-default .edui-for-customstyle .edui-listitem-label {
  min-width: 200px;
  _width: 200px;
  width: 200px !important;
  padding: 2px 5px;
}

/* 可选中按钮弹出菜单*/
.edui-default .edui-menu {
  z-index: 3000;
}

.edui-default .edui-menu .edui-popup-content {
  padding: 3px;
}

.edui-default .edui-menu-body {
  _width: 150px;
  min-width: 170px;
ModStart's avatar
develop  
ModStart 已提交
412
  background: data-uri("../images/sparator_v.png") repeat-y 25px;
S
develop  
server 已提交
413 414 415 416 417 418 419 420 421 422 423 424 425 426
}

.edui-default .edui-menuitem-body {
}

.edui-default .edui-menuitem {
  height: 20px;
  cursor: default;
  vertical-align: top;
}

.edui-default .edui-menuitem .edui-icon {
  width: 20px !important;
  height: 20px !important;
ModStart's avatar
develop  
ModStart 已提交
427
  //background: url(../images/icons.png) 0 -4000px;
S
develop  
server 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
}

.edui-default .edui-menuitem .edui-label {
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  padding-left: 10px;
}

.edui-default .edui-state-checked .edui-menuitem-body {
  background: url("../images/icons-all.gif") no-repeat 6px -205px;
}

.edui-default .edui-state-disabled .edui-menuitem-label {
  color: gray;
}

/*不可选中菜单按钮 */
.edui-default .edui-toolbar .edui-combox-body .edui-button-body {
  width: 60px;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding-left: 5px;
  white-space: nowrap;
  margin: 0 3px 0 0;
}

.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
  height: 30px;
  width: 9px;
ModStart's avatar
develop  
ModStart 已提交
459 460

  &:before {
ModStart's avatar
develop  
ModStart 已提交
461 462 463 464
    content: "\e9f0";
    font-family: "editor-iconfont";
    font-size: 8px;
  }
S
develop  
server 已提交
465 466 467 468 469 470 471 472
}

.edui-default .edui-toolbar .edui-combox .edui-combox-body {
  border: 1px solid #CCC;
  background-color: white;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
ModStart's avatar
develop  
ModStart 已提交
473
  cursor: pointer;
S
develop  
server 已提交
474 475 476 477 478 479 480 481 482 483 484
}

.edui-default .edui-toolbar .edui-combox-body .edui-splitborder {
  display: none;
}

.edui-default .edui-toolbar .edui-combox-body .edui-arrow {
  border-left: 1px solid #CCC;
}

.edui-default .edui-toolbar .edui-state-hover .edui-combox-body {
ModStart's avatar
develop  
ModStart 已提交
485 486
  //background-color: #fff5d4;
  //border: 1px solid #dcac6c;
S
develop  
server 已提交
487 488 489
}

.edui-default .edui-toolbar .edui-state-hover .edui-combox-body .edui-arrow {
ModStart's avatar
develop  
ModStart 已提交
490
  //border-left: 1px solid #dcac6c;
S
develop  
server 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
}

.edui-default .edui-toolbar .edui-state-checked .edui-combox-body {
  background-color: #FFE69F;
  border: 1px solid #DCAC6C;
}

.edui-toolbar .edui-state-checked .edui-combox-body .edui-arrow {
  border-left: 1px solid #DCAC6C;
}

.edui-toolbar .edui-state-disabled .edui-combox-body {
  background-color: #F0F0EE;
  opacity: 0.3;
  //filter: alpha(opacity = 30);
}

.edui-toolbar .edui-state-opened .edui-combox-body {
  background-color: white;
  border: 1px solid gray;
}

/*普通按钮样式及状态*/
.edui-default .edui-toolbar .edui-button .edui-icon,
.edui-default .edui-toolbar .edui-menubutton .edui-icon,
.edui-default .edui-toolbar .edui-splitbutton .edui-icon {
  height: 30px !important;
  width: 30px !important;
  //background-image: url(../images/icons.png);
  //background: #FFF center no-repeat;
  background-position: center;
  background-repeat: no-repeat;
ModStart's avatar
develop  
ModStart 已提交
523 524 525 526 527 528 529 530

  font-family: "editor-iconfont";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
S
develop  
server 已提交
531 532 533 534 535
}

.edui-default .edui-toolbar .edui-button .edui-button-wrap {
  padding: 1px;
  position: relative;
ModStart's avatar
develop  
ModStart 已提交
536
  border-radius: 3px;
S
develop  
server 已提交
537 538 539
}

.edui-default .edui-toolbar .edui-button .edui-state-hover .edui-button-wrap {
ModStart's avatar
develop  
ModStart 已提交
540
  background-color: #EEE;
S
develop  
server 已提交
541
  padding: 0;
ModStart's avatar
develop  
ModStart 已提交
542
  border: 1px solid #EEE;
S
develop  
server 已提交
543 544 545
}

.edui-default .edui-toolbar .edui-button .edui-state-checked .edui-button-wrap {
ModStart's avatar
develop  
ModStart 已提交
546
  background-color: #EEE;
S
develop  
server 已提交
547
  padding: 0;
ModStart's avatar
develop  
ModStart 已提交
548 549 550 551
  border: 1px solid #EEE;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
S
develop  
server 已提交
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
}

.edui-default .edui-toolbar .edui-button .edui-state-active .edui-button-wrap {
  background-color: #ffffff;
  padding: 0;
  border: 1px solid gray;
}

.edui-default .edui-toolbar .edui-state-disabled .edui-label {
  color: #ccc;
}

.edui-default .edui-toolbar .edui-state-disabled .edui-icon {
  opacity: 0.3;
  //filter: alpha(opacity = 30);
}

/* toolbar icons */
.edui-default .edui-for-undo .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
571 572 573
  &:before {
    content: "\e60f";
  }
S
develop  
server 已提交
574 575 576
}

.edui-default .edui-for-redo .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
577 578 579
  &:before {
    content: "\e60c";
  }
S
develop  
server 已提交
580 581 582
}

.edui-default .edui-for-bold .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
583 584
  &:before {
    content: "\e628";
ModStart's avatar
develop  
ModStart 已提交
585
    font-size: 14px;
ModStart's avatar
develop  
ModStart 已提交
586
  }
S
develop  
server 已提交
587 588 589
}

.edui-default .edui-for-italic .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
590 591
  &:before {
    content: "\e62a";
ModStart's avatar
develop  
ModStart 已提交
592
    font-size: 14px;
ModStart's avatar
develop  
ModStart 已提交
593
  }
S
develop  
server 已提交
594 595 596
}

.edui-default .edui-for-fontborder .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
597 598 599
  &:before {
    content: '\e62d';
  }
S
develop  
server 已提交
600 601 602
}

.edui-default .edui-for-underline .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
603 604
  &:before {
    content: "\e63e";
ModStart's avatar
develop  
ModStart 已提交
605
    font-size: 14px;
ModStart's avatar
develop  
ModStart 已提交
606
  }
S
develop  
server 已提交
607 608 609
}

.edui-default .edui-for-strikethrough .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
610 611
  &:before {
    content: "\e64a";
ModStart's avatar
develop  
ModStart 已提交
612
    font-size: 14px;
ModStart's avatar
develop  
ModStart 已提交
613
  }
S
develop  
server 已提交
614 615 616
}

.edui-default .edui-for-subscript .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
617 618 619
  &:before {
    content: "\ece9";
  }
S
develop  
server 已提交
620 621 622
}

.edui-default .edui-for-superscript .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
623 624 625
  &:before {
    content: "\e83e";
  }
S
develop  
server 已提交
626 627 628
}

.edui-default .edui-for-blockquote .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
629 630 631
  &:before{
    content: "\e6d8";
  }
S
develop  
server 已提交
632 633 634
}

.edui-default .edui-for-forecolor .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
635 636
  &:before {
    content: "\e7f8";
ModStart's avatar
develop  
ModStart 已提交
637
    font-size: 20px;
ModStart's avatar
develop  
ModStart 已提交
638
  }
S
develop  
server 已提交
639 640 641
}

.edui-default .edui-for-backcolor .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
642 643 644
  &:before {
    content: "\e71a";
  }
S
develop  
server 已提交
645 646 647
}

.edui-default .edui-for-inserttable .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
648 649 650
  &:before{
    content: "\e60d";
  }
S
develop  
server 已提交
651 652 653
}

.edui-default .edui-for-autotypeset .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
654 655 656
  &:before {
    content: "\e662";
  }
S
develop  
server 已提交
657 658 659
}

.edui-default .edui-for-justifyleft .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
660 661 662
  &:before {
    content: "\e7f7";
  }
S
develop  
server 已提交
663 664 665
}

.edui-default .edui-for-justifycenter .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
666 667 668
  &:before {
    content: "\e7f6";
  }
S
develop  
server 已提交
669 670 671
}

.edui-default .edui-for-justifyright .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
672 673 674
  &:before {
    content: "\e7f5";
  }
S
develop  
server 已提交
675 676 677
}

.edui-default .edui-for-justifyjustify .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
678 679 680
  &:before {
    content: "\e87c";
  }
S
develop  
server 已提交
681 682 683
}

.edui-default .edui-for-insertorderedlist .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
684 685 686
  &:before {
    content: "\e737";
  }
S
develop  
server 已提交
687 688 689
}

.edui-default .edui-for-insertunorderedlist .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
690 691 692
  &:before {
    content: "\e7f4";
  }
S
develop  
server 已提交
693 694 695
}

.edui-default .edui-for-lineheight .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
696 697 698
  &:before{
    content: "\e638";
  }
S
develop  
server 已提交
699 700 701
}

.edui-default .edui-for-rowspacingbottom .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
702 703 704
  &:before{
    content:'\eb09';
  }
S
develop  
server 已提交
705 706 707
}

.edui-default .edui-for-rowspacingtop .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
708 709 710
  &:before{
    content:'\eb0a';
  }
S
develop  
server 已提交
711 712 713
}

.edui-default .edui-for-horizontal .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
714 715 716
  &:before{
    content: "\e617";
  }
S
develop  
server 已提交
717 718 719
}

.edui-default .edui-for-link .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
720 721 722
  &:before {
    content: "\e648";
  }
S
develop  
server 已提交
723 724 725 726 727 728 729
}

.edui-default .edui-for-code .edui-icon {
  background-position: -440px -40px;
}

.edui-default .edui-for-insertimage .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
730 731 732
  &:before {
    content: "\e605";
  }
S
develop  
server 已提交
733 734 735
}

.edui-default .edui-for-uploadimage .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
736 737 738
  &:before {
    content: "\e605";
  }
S
develop  
server 已提交
739 740 741
}

.edui-default .edui-for-wechatcustomemotion .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
742 743 744
  &:before {
    content: "\e60e";
  }
S
develop  
server 已提交
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
}

.edui-default .edui-for-insertframe .edui-icon {
  background-position: -240px -40px;
}

.edui-default .edui-for-emoticon .edui-icon {
  background-position: -60px -20px;
}

.edui-default .edui-for-spechars .edui-icon {
  background-position: -240px 0;
}

.edui-default .edui-for-help .edui-icon {
  background-position: -340px 0;
}

.edui-default .edui-for-print .edui-icon {
  background-position: -440px -20px;
}

.edui-default .edui-for-preview .edui-icon {
  background-position: -420px -20px;
}

.edui-default .edui-for-selectall .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
772 773 774 775
  //background-position: -400px -20px;
  &:before {
    content: '\e62f';
  }
S
develop  
server 已提交
776 777 778 779 780 781 782
}

.edui-default .edui-for-searchreplace .edui-icon {
  background-position: -520px -20px;
}

.edui-default .edui-for-map .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
783 784 785 786
  //background-position: -40px -40px;
  &:before {
    content: "\e649";
  }
S
develop  
server 已提交
787 788 789 790 791 792 793
}

.edui-default .edui-for-gmap .edui-icon {
  background-position: -260px -40px;
}

.edui-default .edui-for-insertvideo .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
794 795 796
  &:before {
    content: "\e636";
  }
S
develop  
server 已提交
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
}

.edui-default .edui-for-video .edui-icon {
  background-position: -320px -20px;
}

.edui-default .edui-for-time .edui-icon {
  background-position: -160px -20px;
}

.edui-default .edui-for-date .edui-icon {
  background-position: -140px -20px;
}

.edui-default .edui-for-cut .edui-icon {
  background-position: -680px 0;
}

.edui-default .edui-for-copy .edui-icon {
  background-position: -700px 0;
}

.edui-default .edui-for-paste .edui-icon {
  background-position: -560px 0;
}

.edui-default .edui-for-formatmatch .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
824 825 826 827
  //background-position: -40px 0;
  &:before {
    content: "\e637";
  }
S
develop  
server 已提交
828 829 830 831
}

.edui-default .edui-for-pasteplain .edui-icon {
  background-position: -360px -20px;
ModStart's avatar
develop  
ModStart 已提交
832 833 834 835

  &:before {
    content: '\edfb';
  }
S
develop  
server 已提交
836 837 838 839 840 841 842 843 844 845 846
}

.edui-default .edui-for-directionalityltr .edui-icon {
  background-position: -20px -20px;
}

.edui-default .edui-for-directionalityrtl .edui-icon {
  background-position: -40px -20px;
}

.edui-default .edui-for-source .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
847
  &:before {
ModStart's avatar
develop  
ModStart 已提交
848
    font-size: 20px;
ModStart's avatar
develop  
ModStart 已提交
849 850
    content: "\e608";
  }
S
develop  
server 已提交
851 852 853
}

.edui-default .edui-for-removeformat .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
854
  &:before {
ModStart's avatar
develop  
ModStart 已提交
855
    font-size: 18px;
ModStart's avatar
develop  
ModStart 已提交
856 857
    content: "\e782";
  }
S
develop  
server 已提交
858 859 860
}

.edui-default .edui-for-unlink .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
861 862 863
  &:before {
    content: "\e92b";
  }
S
develop  
server 已提交
864 865 866
}

.edui-default .edui-for-touppercase .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
867 868 869
  &:before{
    content: "\e619";
  }
S
develop  
server 已提交
870 871 872
}

.edui-default .edui-for-tolowercase .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
873 874 875
  &:before{
    content: "\e61a";
  }
S
develop  
server 已提交
876 877 878
}

.edui-default .edui-for-insertrow .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
879 880 881
  &:before{
    content: "\e603";
  }
S
develop  
server 已提交
882 883 884
}

.edui-default .edui-for-insertrownext .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
885 886 887
  &:before{
    content: "\e602";
  }
S
develop  
server 已提交
888 889 890
}

.edui-default .edui-for-insertcol .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
891 892 893
  &:before{
    content: "\e601";
  }
S
develop  
server 已提交
894 895 896
}

.edui-default .edui-for-insertcolnext .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
897 898 899
  &:before{
    content: "\e600";
  }
S
develop  
server 已提交
900 901 902
}

.edui-default .edui-for-mergeright .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
903 904 905
  &:before{
    content: "\e615";
  }
S
develop  
server 已提交
906 907 908
}

.edui-default .edui-for-mergedown .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
909 910 911
  &:before{
    content: "\e613";
  }
S
develop  
server 已提交
912 913 914
}

.edui-default .edui-for-splittorows .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
915 916 917
  &:before{
    content: "\e610";
  }
S
develop  
server 已提交
918 919 920
}

.edui-default .edui-for-splittocols .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
921 922 923
  &:before{
    content: "\e611";
  }
S
develop  
server 已提交
924 925 926
}

.edui-default .edui-for-insertparagraphbeforetable .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
927 928 929
  &:before{
    content:'\e901';
  }
S
develop  
server 已提交
930 931 932
}

.edui-default .edui-for-deleterow .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
933 934 935
  &:before{
    content: "\e609";
  }
S
develop  
server 已提交
936 937 938
}

.edui-default .edui-for-deletecol .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
939 940 941
  &:before{
    content: "\e604";
  }
S
develop  
server 已提交
942 943 944
}

.edui-default .edui-for-splittocells .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
945 946 947
  &:before{
    content: "\e612";
  }
S
develop  
server 已提交
948 949 950
}

.edui-default .edui-for-mergecells .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
951 952 953
  &:before{
    content: "\e606";
  }
S
develop  
server 已提交
954 955 956
}

.edui-default .edui-for-deletetable .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
957 958 959
  &:before {
    content: "\e60a";
  }
S
develop  
server 已提交
960 961 962
}

.edui-default .edui-for-cleardoc .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
963 964 965
  &:before{
    content: "\e61e";
  }
S
develop  
server 已提交
966 967 968
}

.edui-default .edui-for-fullscreen .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
969 970 971
  &:before {
    content: "\e675";
  }
S
develop  
server 已提交
972 973 974
}

.edui-default .edui-for-anchor .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
975 976 977
  &:before{
    content: "\e61b";
  }
S
develop  
server 已提交
978 979 980
}

.edui-default .edui-for-pagebreak .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
981 982 983
  &:before{
    content: "\e61d";
  }
S
develop  
server 已提交
984 985 986
}

.edui-default .edui-for-imagenone .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
987 988 989
  &:before {
    content: "\e61f";
  }
S
develop  
server 已提交
990 991 992
}

.edui-default .edui-for-imageleft .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
993 994 995
  &:before {
    content: "\e621";
  }
S
develop  
server 已提交
996 997 998
}

.edui-default .edui-for-wordimage .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
999 1000 1001
  &:before{
    content: "\e618";
  }
S
develop  
server 已提交
1002 1003 1004
}

.edui-default .edui-for-imageright .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1005 1006 1007
  &:before {
    content: "\e622";
  }
S
develop  
server 已提交
1008 1009 1010
}

.edui-default .edui-for-imagecenter .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1011 1012 1013
  &:before {
    content: "\e620";
  }
S
develop  
server 已提交
1014 1015 1016
}

.edui-default .edui-for-indent .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1017 1018 1019
  &:before {
    content: "\e7f3";
  }
S
develop  
server 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
}

.edui-default .edui-for-outdent .edui-icon {
  background-position: -540px 0;
}

.edui-default .edui-for-webapp .edui-icon {
  background-position: -601px -40px
}

.edui-default .edui-for-table .edui-icon {
  background-position: -580px -20px;
}

.edui-default .edui-for-edittable .edui-icon {
  background-position: -420px -40px;
}

.edui-default .edui-for-template .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1039 1040 1041 1042
  //background-position: -339px -40px;
  &:before {
    content: "\e6ad";
  }
S
develop  
server 已提交
1043 1044 1045 1046 1047 1048 1049
}

.edui-default .edui-for-delete .edui-icon {
  background-position: -360px -40px;
}

.edui-default .edui-for-attachment .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1050 1051 1052 1053
  //background-position: -620px -40px;
  &:before {
    content: "\e704";
  }
S
develop  
server 已提交
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
}

.edui-default .edui-for-edittd .edui-icon {
  background-position: -700px -40px;
}

.edui-default .edui-for-snapscreen .edui-icon {
  background-position: -581px -40px
}

.edui-default .edui-for-scrawl .edui-icon {
  background-position: -801px -41px
}

.edui-default .edui-for-background .edui-icon {
  background-position: -680px -40px;
}

.edui-default .edui-for-music .edui-icon {
  background-position: -18px -40px
}

.edui-default .edui-for-formula .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1077 1078 1079 1080
  //background-position: -200px -40px
  &:before {
    content: "\e616";
  }
S
develop  
server 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
}

.edui-default .edui-for-aligntd .edui-icon {
  background-position: -236px -76px;
}

.edui-default .edui-for-insertparagraphtrue .edui-icon {
  background-position: -625px -76px;
}

.edui-default .edui-for-insertparagraph .edui-icon {
  background-position: -602px -76px;
}

.edui-default .edui-for-insertcaption .edui-icon {
  background-position: -336px -76px;
}

.edui-default .edui-for-deletecaption .edui-icon {
  background-position: -362px -76px;
}

.edui-default .edui-for-inserttitle .edui-icon {
  background-position: -286px -76px;
}

.edui-default .edui-for-deletetitle .edui-icon {
  background-position: -311px -76px;
}

.edui-default .edui-for-aligntable .edui-icon {
  background-position: -440px 0;
}

.edui-default .edui-for-tablealignment-left .edui-icon {
  background-position: -460px 0;
}

.edui-default .edui-for-tablealignment-center .edui-icon {
  background-position: -420px 0;
}

.edui-default .edui-for-tablealignment-right .edui-icon {
  background-position: -480px 0;
}

.edui-default .edui-for-drafts .edui-icon {
  background-position: -560px 0;
}

.edui-default .edui-for-charts .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1132
  background: data-uri("../images/charts.png") no-repeat 2px 3px !important;
S
develop  
server 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
}

.edui-default .edui-for-inserttitlecol .edui-icon {
  background-position: -673px -76px;
}

.edui-default .edui-for-deletetitlecol .edui-icon {
  background-position: -698px -76px;
}

.edui-default .edui-for-simpleupload .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
1144 1145 1146 1147
  //background-position: -380px 0px;
  &:before {
    content: "\e7ad";
  }
S
develop  
server 已提交
1148 1149 1150 1151 1152 1153 1154
}

/*splitbutton*/
.edui-default .edui-toolbar .edui-splitbutton-body .edui-arrow,
.edui-default .edui-toolbar .edui-menubutton-body .edui-arrow {
  height: 30px;
  width: 9px;
ModStart's avatar
develop  
ModStart 已提交
1155 1156

  &:before {
ModStart's avatar
develop  
ModStart 已提交
1157 1158 1159 1160
    content: "\e9f0";
    font-family: "editor-iconfont";
    font-size: 8px;
  }
S
develop  
server 已提交
1161 1162 1163 1164 1165
}

.edui-default .edui-toolbar .edui-splitbutton .edui-splitbutton-body,
.edui-default .edui-toolbar .edui-menubutton .edui-menubutton-body {
  padding: 1px;
ModStart's avatar
develop  
ModStart 已提交
1166
  border-radius: 3px;
S
develop  
server 已提交
1167 1168 1169 1170
}

.edui-default .edui-toolbar .edui-splitborder {
  width: 1px;
ModStart's avatar
develop  
ModStart 已提交
1171
  height: 30px;
S
develop  
server 已提交
1172 1173 1174 1175
}

.edui-default .edui-toolbar .edui-state-hover .edui-splitborder {
  width: 1px;
ModStart's avatar
develop  
ModStart 已提交
1176
  border-left: 0px solid #EEE;
S
develop  
server 已提交
1177 1178 1179 1180
}

.edui-default .edui-toolbar .edui-state-active .edui-splitborder {
  width: 0;
ModStart's avatar
develop  
ModStart 已提交
1181
  border-left: 1px solid #EEE;
S
develop  
server 已提交
1182 1183 1184 1185 1186 1187 1188 1189 1190
}

.edui-default .edui-toolbar .edui-state-opened .edui-splitborder {
  width: 1px;
  border: 0;
}

.edui-default .edui-toolbar .edui-splitbutton .edui-state-hover .edui-splitbutton-body,
.edui-default .edui-toolbar .edui-menubutton .edui-state-hover .edui-menubutton-body {
ModStart's avatar
develop  
ModStart 已提交
1191 1192
  background-color: #EEE;
  border: 1px solid #EEE;
S
develop  
server 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
  padding: 0;
}

.edui-default .edui-toolbar .edui-splitbutton .edui-state-checked .edui-splitbutton-body,
.edui-default .edui-toolbar .edui-menubutton .edui-state-checked .edui-menubutton-body {
  background-color: #FFE69F;
  border: 1px solid #DCAC6C;
  padding: 0;
}

.edui-default .edui-toolbar .edui-splitbutton .edui-state-active .edui-splitbutton-body,
.edui-default .edui-toolbar .edui-menubutton .edui-state-active .edui-menubutton-body {
  background-color: #ffffff;
ModStart's avatar
develop  
ModStart 已提交
1206
  border: 1px solid #EEE;
S
develop  
server 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
  padding: 0;
}

.edui-default .edui-state-disabled .edui-arrow {
  opacity: 0.3;
  //_filter: alpha(opacity = 30);
}

.edui-default .edui-toolbar .edui-splitbutton .edui-state-opened .edui-splitbutton-body,
.edui-default .edui-toolbar .edui-menubutton .edui-state-opened .edui-menubutton-body {
  background-color: white;
ModStart's avatar
develop  
ModStart 已提交
1218
  border: 1px solid #CCC;
S
develop  
server 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
  padding: 0;
}

.edui-default .edui-for-insertorderedlist .edui-bordereraser,
.edui-default .edui-for-lineheight .edui-bordereraser,
.edui-default .edui-for-rowspacingtop .edui-bordereraser,
.edui-default .edui-for-rowspacingbottom .edui-bordereraser,
.edui-default .edui-for-insertunorderedlist .edui-bordereraser {
  background-color: white;
}

/* 解决嵌套导致的图标问题 */
.edui-default .edui-for-insertorderedlist .edui-popup-body .edui-icon,
.edui-default .edui-for-lineheight .edui-popup-body .edui-icon,
.edui-default .edui-for-rowspacingtop .edui-popup-body .edui-icon,
.edui-default .edui-for-rowspacingbottom .edui-popup-body .edui-icon,
.edui-default .edui-for-insertunorderedlist .edui-popup-body .edui-icon {
  /*background-position: 0 -40px;*/
  background-image: none;
}

/* 弹出菜单 */
.edui-default .edui-popup {
  z-index: 3000;
  background-color: #ffffff;
  width: auto;
  height: auto;

}

.edui-default .edui-popup .edui-shadow {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.edui-default .edui-popup-content {
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  padding: 5px;
  background: #ffffff;
}

.edui-default .edui-popup .edui-bordereraser {
  background-color: white;
  height: 3px;
}

.edui-default .edui-menu .edui-bordereraser {
  height: 3px;
}

.edui-default .edui-anchor-topleft .edui-bordereraser {
  left: 1px;
  top: -2px;
  display: none;
}

.edui-default .edui-anchor-topright .edui-bordereraser {
  right: 1px;
  top: -2px;
}

.edui-default .edui-anchor-bottomleft .edui-bordereraser {
  left: 0;
  bottom: -6px;
  height: 7px;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}

.edui-default .edui-anchor-bottomright .edui-bordereraser {
  right: 0;
  bottom: -6px;
  height: 7px;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}

.edui-popup div {
  width: auto;
  height: auto;
}

.edui-default .edui-editor-messageholder {
  display: block;
  width: 150px;
  height: auto;
  border: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 28px;
  right: 3px;
}

.edui-default .edui-message {
  min-height: 10px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 0;
  margin-bottom: 3px;
  position: relative;
}

.edui-default .edui-message-body {
  border-radius: 3px;
  padding: 8px 15px 8px 8px;
  color: #c09853;
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
}

.edui-default .edui-message-type-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1
}

.edui-default .edui-message-type-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6
}

.edui-default .edui-message-type-danger,
.edui-default .edui-message-type-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7
}

.edui-default .edui-message .edui-message-closer {
  display: block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #999;
  text-shadow: 0 1px 0 #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.edui-default .edui-message .edui-message-content {
  font-size: 10pt;
  word-wrap: break-word;
  word-break: normal;
}

/* 弹出对话框按钮和对话框大小 */
.edui-default .edui-dialog {
  z-index: 2000;
  position: absolute;

}

.edui-dialog div {
  width: auto;
}

ModStart's avatar
develop  
ModStart 已提交
1399
.edui-dialog .edui-default .edui-icon:before {
ModStart's avatar
develop  
ModStart 已提交
1400 1401 1402
  display: none;
}

S
develop  
server 已提交
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
.edui-default .edui-dialog-wrap {
  margin-right: 6px;
  margin-bottom: 6px;
}

.edui-default .edui-dialog-fullscreen-flag {
  margin-right: 0;
  margin-bottom: 0;
}

.edui-default .edui-dialog-body {
  position: relative;
  padding: 2px 0 0 2px;
  _zoom: 1;
}

.edui-default .edui-dialog-fullscreen-flag .edui-dialog-body {
  padding: 0;
}

.edui-default .edui-dialog-shadow {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
ModStart's avatar
develop  
ModStart 已提交
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
  border-radius: 0.5rem;
  //border: 1px solid #ccc;
  //border: 1px solid rgba(0, 0, 0, 0.2);
  //*border-right-width: 2px;
  //*border-bottom-width: 2px;
  //-webkit-border-radius: 6px;
  //-moz-border-radius: 6px;
  //border-radius: 6px;
  //-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  //-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  //box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  //-webkit-background-clip: padding-box;
  //-moz-background-clip: padding;
  //background-clip: padding-box;
  //display: none;
S
develop  
server 已提交
1446 1447 1448 1449 1450 1451 1452
}

.edui-default .edui-dialog-foot {
  background-color: white;
}

.edui-default .edui-dialog-titlebar {
ModStart's avatar
develop  
ModStart 已提交
1453
  height: 36px;
S
develop  
server 已提交
1454
  border-bottom: 1px solid #c6c6c6;
ModStart's avatar
develop  
ModStart 已提交
1455
  background: #FFF;
S
develop  
server 已提交
1456 1457
  position: relative;
  cursor: move;
ModStart's avatar
develop  
ModStart 已提交
1458
  border-radius: 0.5rem 0.5rem 0 0;
S
develop  
server 已提交
1459 1460 1461 1462
}

.edui-default .edui-dialog-caption {
  font-weight: bold;
ModStart's avatar
develop  
ModStart 已提交
1463 1464
  font-size: 14px;
  line-height: 36px;
S
develop  
server 已提交
1465 1466 1467 1468
  padding-left: 5px;
}

.edui-default .edui-dialog-draghandle {
ModStart's avatar
develop  
ModStart 已提交
1469
  height: 36px;
S
develop  
server 已提交
1470 1471 1472 1473 1474 1475 1476 1477 1478
}

.edui-default .edui-dialog-closebutton {
  position: absolute !important;
  right: 5px;
  top: 3px;
}

.edui-default .edui-dialog-closebutton .edui-button-body {
ModStart's avatar
develop  
ModStart 已提交
1479 1480
  height: 30px;
  width: 30px;
S
develop  
server 已提交
1481
  cursor: pointer;
ModStart's avatar
develop  
ModStart 已提交
1482 1483 1484 1485 1486 1487 1488 1489
  //background: url("../images/icons-all.gif") no-repeat 0 -59px;
  font-family: "editor-iconfont";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 26px;
  vertical-align: top;
  line-height: 30px;
ModStart's avatar
develop  
ModStart 已提交
1490 1491

  &:before {
ModStart's avatar
develop  
ModStart 已提交
1492 1493
    content: "\e6a7";
  }
S
develop  
server 已提交
1494 1495 1496
}

.edui-default .edui-dialog-closebutton .edui-state-hover .edui-button-body {
ModStart's avatar
develop  
ModStart 已提交
1497
  //background: url("../images/icons-all.gif") no-repeat 0 -89px;
S
develop  
server 已提交
1498 1499 1500 1501
}

.edui-default .edui-dialog-foot {
  height: 40px;
ModStart's avatar
develop  
ModStart 已提交
1502
  border-radius: 0 0 0.5rem 0.5rem;
S
develop  
server 已提交
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
}

.edui-default .edui-dialog-buttons {
  position: absolute;
  right: 0;
}

.edui-default .edui-dialog-buttons .edui-button {
  margin-right: 10px;
}

.edui-default .edui-dialog-buttons .edui-button .edui-button-body {
ModStart's avatar
develop  
ModStart 已提交
1515 1516
  //background: url("../images/icons-all.gif") no-repeat;
  height: 30px;
S
develop  
server 已提交
1517
  width: 96px;
ModStart's avatar
develop  
ModStart 已提交
1518 1519
  font-size: 13px;
  line-height: 30px;
S
develop  
server 已提交
1520
  text-align: center;
ModStart's avatar
develop  
ModStart 已提交
1521
  background: #F7F7F7;
ModStart's avatar
develop  
ModStart 已提交
1522
  border-radius: 5px;
ModStart's avatar
develop  
ModStart 已提交
1523
  cursor: pointer;
S
develop  
server 已提交
1524 1525 1526
}

.edui-default .edui-dialog-buttons .edui-button .edui-state-hover .edui-button-body {
ModStart's avatar
develop  
ModStart 已提交
1527 1528
  // background: url("../images/icons-all.gif") no-repeat 0 -30px;
  background: #F7F7F7;
S
develop  
server 已提交
1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
}

.edui-default .edui-dialog iframe {
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
}

.edui-default .edui-dialog-modalmask {
ModStart's avatar
develop  
ModStart 已提交
1539
  //opacity: 0.3;
S
develop  
server 已提交
1540
  //filter: alpha(opacity = 30);
ModStart's avatar
develop  
ModStart 已提交
1541
  //background-color: #ccc;
S
develop  
server 已提交
1542 1543
  position: absolute;
  /*z-index: 1999;*/
ModStart's avatar
develop  
ModStart 已提交
1544 1545
  background: #000;
  opacity: .48;
S
develop  
server 已提交
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
}

.edui-default .edui-dialog-dragmask {
  position: absolute;
  /*z-index: 2001;*/
  background-color: transparent;
  cursor: move;
}

.edui-default .edui-dialog-content {
  position: relative;
}

.edui-default .dialogcontmask {
  cursor: move;
  visibility: hidden;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  //filter: alpha(opacity = 0);
}

/*link-dialog*/
.edui-default .edui-for-link .edui-dialog-content {
  width: 420px;
  height: 200px;
  overflow: hidden;
}

/*background-dialog*/
.edui-default .edui-for-background .edui-dialog-content {
  width: 440px;
  height: 280px;
  overflow: hidden;
}

/*template-dialog*/
.edui-default .edui-for-template .edui-dialog-content {
  width: 630px;
  height: 390px;
  overflow: hidden;
}

/*scrawl-dialog*/
.edui-default .edui-for-scrawl .edui-dialog-content {
  width: 515px;
  *width: 506px;
  height: 360px;
}

/*spechars-dialog*/
.edui-default .edui-for-spechars .edui-dialog-content {
  width: 620px;
  height: 500px;
  *width: 630px;
  *height: 570px;
}

/*image-dialog*/
.edui-default .edui-for-insertimage .edui-dialog-content {
  width: 650px;
  height: 400px;
  overflow: hidden;
}

/*webapp-dialog*/
.edui-default .edui-for-webapp .edui-dialog-content {
  width: 560px;
  _width: 565px;
  height: 450px;
  overflow: hidden;
}

/*image-insertframe*/
.edui-default .edui-for-insertframe .edui-dialog-content {
  width: 350px;
  height: 200px;
  overflow: hidden;
}

/*wordImage-dialog*/
.edui-default .edui-for-wordimage .edui-dialog-content {
  width: 620px;
  height: 380px;
  overflow: hidden;
}

/*attachment-dialog*/
.edui-default .edui-for-attachment .edui-dialog-content {
  width: 650px;
  height: 400px;
  overflow: hidden;
}

/*map-dialog*/
.edui-default .edui-for-map .edui-dialog-content {
  width: 550px;
  height: 400px;
}

/*gmap-dialog*/
.edui-default .edui-for-gmap .edui-dialog-content {
  width: 550px;
  height: 400px;
}

/*video-dialog*/
.edui-default .edui-for-insertvideo .edui-dialog-content {
  width: 590px;
  height: 390px;
}

/*anchor-dialog*/
.edui-default .edui-for-anchor .edui-dialog-content {
  width: 320px;
  height: 60px;
  overflow: hidden;
}

/*searchreplace-dialog*/
.edui-default .edui-for-searchreplace .edui-dialog-content {
  width: 400px;
  height: 220px;
}

/*help-dialog*/
.edui-default .edui-for-help .edui-dialog-content {
  width: 400px;
  height: 420px;
}

/*edittable-dialog*/
.edui-default .edui-for-edittable .edui-dialog-content {
  width: 540px;
  _width: 590px;
  height: 335px;
}

/*edittip-dialog*/
.edui-default .edui-for-edittip .edui-dialog-content {
  width: 225px;
  height: 60px;
}

/*edittd-dialog*/
.edui-default .edui-for-edittd .edui-dialog-content {
  width: 240px;
  height: 50px;
}

/*snapscreen-dialog*/
.edui-default .edui-for-snapscreen .edui-dialog-content {
  width: 400px;
  height: 220px;
}

/*music-dialog*/
.edui-default .edui-for-music .edui-dialog-content {
  width: 515px;
  height: 360px;
}

/*段落弹出菜单*/
.edui-default .edui-for-paragraph .edui-listitem-label {
  font-family: Tahoma, Verdana, Arial, Helvetica;
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-p {
  font-size: 22px;
  line-height: 27px;
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h1 {
  font-weight: bolder;
  font-size: 32px;
  line-height: 36px;
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h2 {
  font-weight: bolder;
  font-size: 27px;
  line-height: 29px;
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h3 {
  font-weight: bolder;
  font-size: 19px;
  line-height: 23px;
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h4 {
  font-weight: bolder;
  font-size: 16px;
  line-height: 19px
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h5 {
  font-weight: bolder;
  font-size: 13px;
  line-height: 16px;
}

.edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h6 {
  font-weight: bolder;
  font-size: 12px;
  line-height: 14px;
}

/* 表格弹出菜单 */
.edui-default .edui-for-inserttable .edui-splitborder {
  display: none
}

.edui-default .edui-for-inserttable .edui-splitbutton-body .edui-arrow {
  width: 0
}

.edui-default .edui-toolbar .edui-for-inserttable .edui-state-active .edui-splitborder {
  border-left: 1px solid transparent;
}

.edui-default .edui-tablepicker .edui-infoarea {
  height: 14px;
  line-height: 14px;
  font-size: 12px;
  width: 220px;
  margin-bottom: 3px;
  clear: both;
}

.edui-default .edui-tablepicker .edui-infoarea .edui-label {
  float: left;
}

.edui-default .edui-dialog-buttons .edui-label {
ModStart's avatar
develop  
ModStart 已提交
1783
  line-height: 30px;
S
develop  
server 已提交
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
}

.edui-default .edui-tablepicker .edui-infoarea .edui-clickable {
  float: right;
}

.edui-default .edui-tablepicker .edui-pickarea {
  background: url("../images/unhighlighted.gif") repeat;
  height: 220px;
  width: 220px;
}

.edui-default .edui-tablepicker .edui-pickarea .edui-overlay {
  background: url("../images/highlighted.gif") repeat;
}

/* 颜色弹出菜单 */
.edui-default .edui-colorpicker-topbar {
  height: 27px;
  width: 200px;
  /*border-bottom: 1px gray dashed;*/
}

.edui-default .edui-colorpicker-preview {
  height: 20px;
ModStart's avatar
develop  
ModStart 已提交
1809
  border: 1px solid #EEE;
S
develop  
server 已提交
1810 1811 1812
  margin-left: 1px;
  width: 128px;
  float: left;
ModStart's avatar
develop  
ModStart 已提交
1813
  border-radius: 3px;
S
develop  
server 已提交
1814 1815 1816 1817 1818 1819 1820
}

.edui-default .edui-colorpicker-nocolor {
  float: right;
  margin-right: 1px;
  font-size: 12px;
  line-height: 14px;
ModStart's avatar
develop  
ModStart 已提交
1821 1822
  height: 20px;
  border: 1px solid #EEE;
S
develop  
server 已提交
1823 1824
  padding: 3px 5px;
  cursor: pointer;
ModStart's avatar
develop  
ModStart 已提交
1825
  border-radius: 3px;
S
develop  
server 已提交
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
}

.edui-default .edui-colorpicker-tablefirstrow {
  height: 30px;
}

.edui-default .edui-colorpicker-colorcell {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0;
  cursor: pointer;
}

.edui-default .edui-colorpicker-colorcell:hover {
  width: 14px;
  height: 14px;
  margin: 0;
}

.edui-default .edui-colorpicker-advbtn {
  display: block;
  text-align: center;
  cursor: pointer;
  height: 20px;
}

.arrow_down {
ModStart's avatar
develop  
ModStart 已提交
1854
  background: white data-uri('../images/arrow_down.png') no-repeat center;
S
develop  
server 已提交
1855 1856 1857
}

.arrow_up {
ModStart's avatar
develop  
ModStart 已提交
1858
  background: white data-uri('../images/arrow_up.png') no-repeat center;
S
develop  
server 已提交
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889
}

/*高级的样式*/
.edui-colorpicker-adv {
  position: relative;
  overflow: hidden;
  height: 180px;
  display: none;
}

.edui-colorpicker-plant, .edui-colorpicker-hue {
  border: solid 1px #666;
}

.edui-colorpicker-pad {
  width: 150px;
  height: 150px;
  left: 14px;
  top: 13px;
  position: absolute;
  background: red;
  overflow: hidden;
  cursor: crosshair;
}

.edui-colorpicker-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
ModStart's avatar
develop  
ModStart 已提交
1890
  background: data-uri("../images/tangram-colorpicker.png") -160px -200px;
S
develop  
server 已提交
1891 1892 1893 1894 1895 1896 1897 1898 1899
}

.edui-colorpicker-padDot {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  overflow: hidden;
ModStart's avatar
develop  
ModStart 已提交
1900
  background: data-uri("../images/tangram-colorpicker.png") 0px -200px repeat-x;
S
develop  
server 已提交
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
  z-index: 1000;

}

.edui-colorpicker-sliderMain {
  position: absolute;
  left: 171px;
  top: 13px;
  width: 19px;
  height: 152px;
ModStart's avatar
develop  
ModStart 已提交
1911
  background: data-uri("../images/tangram-colorpicker.png") -179px -12px no-repeat;
S
develop  
server 已提交
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954

}

.edui-colorpicker-slider {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.edui-colorpicker-thumb {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 3px;
  left: -1px;
  right: -1px;
  border: 1px solid black;
  background: white;
  opacity: .8;
}

/*自动排版弹出菜单*/
.edui-default .edui-autotypesetpicker .edui-autotypesetpicker-body {
  font-size: 12px;
  margin-bottom: 3px;
  clear: both;
}

.edui-default .edui-autotypesetpicker-body table {
  border-collapse: separate;
  border-spacing: 2px;
}

.edui-default .edui-autotypesetpicker-body td {
  font-size: 12px;
  word-wrap: break-word;
}

.edui-default .edui-autotypesetpicker-body td input {
  margin: 3px 3px 3px 4px;
  *margin: 1px 0 0 0;
}

ModStart's avatar
develop  
ModStart 已提交
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966
.edui-default .edui-autotypesetpicker-body button {
  -webkit-appearance: button;
  border: none;
  height: 20px;
  line-height: 20px;
  padding: 0 5px;
  border-radius: 3px;
  margin-left: -10px;
  color: #333;
  cursor: pointer;
}

S
develop  
server 已提交
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
/*自动排版弹出菜单*/
.edui-default .edui-cellalignpicker .edui-cellalignpicker-body {
  width: 70px;
  font-size: 12px;
  cursor: default;
}

.edui-default .edui-cellalignpicker-body table {
  border-collapse: separate;
  border-spacing: 0;
}

.edui-default .edui-cellalignpicker-body td {
  padding: 1px;
}

.edui-default .edui-cellalignpicker-body .edui-icon {
  height: 20px;
  width: 20px;
  padding: 1px;
ModStart's avatar
develop  
ModStart 已提交
1987
  background-image: data-uri("../images/table-cell-align.png");
S
develop  
server 已提交
1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
}

.edui-default .edui-cellalignpicker-body .edui-left {
  background-position: 0 0;
}

.edui-default .edui-cellalignpicker-body .edui-center {
  background-position: -25px 0;
}

.edui-default .edui-cellalignpicker-body .edui-right {
  background-position: -51px 0;
}

.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-left {
  background-position: -73px 0;
}

.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-center {
  background-position: -98px 0;
}

.edui-default .edui-cellalignpicker-body td.edui-state-hover .edui-right {
  background-position: -124px 0;
}

.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-left {
  background-position: -146px 0;
  background-color: #f1f4f5;
}

.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-center {
  background-position: -245px 0;
}

.edui-default .edui-cellalignpicker-body td.edui-cellalign-selected .edui-right {
  background-position: -271px 0;
}

/*分隔线*/
.edui-default .edui-toolbar .edui-separator {
  width: 2px;
  height: 20px;
  margin: 2px 4px 2px 3px;
ModStart's avatar
develop  
ModStart 已提交
2032
  background: data-uri("../images/icons.png") -181px 0;
S
develop  
server 已提交
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047
}

/*颜色按钮 */
.edui-default .edui-toolbar .edui-colorbutton .edui-colorlump {
  position: absolute;
  overflow: hidden;
  bottom: 6px;
  left: 6px;
  width: 18px;
  height: 4px;
}

/*表情按钮及弹出菜单*/
/*去除了表情的下拉箭头*/
.edui-default .edui-for-emotion .edui-icon {
ModStart's avatar
develop  
ModStart 已提交
2048 2049 2050
  &:before {
    content: "\e60e";
  }
S
develop  
server 已提交
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
}

.edui-default .edui-for-emotion .edui-popup-content iframe {
  width: 514px;
  height: 380px;
  overflow: hidden;
}

.edui-default .edui-for-emotion .edui-popup-content {
  position: relative;
  z-index: 555
}

.edui-default .edui-for-emotion .edui-splitborder {
  display: none
}

.edui-default .edui-for-emotion .edui-splitbutton-body .edui-arrow {
  width: 0
}

.edui-default .edui-toolbar .edui-for-emotion .edui-state-active .edui-splitborder {
  border-left: 1px solid transparent;
}

/*contextmenu*/
.edui-default .edui-hassubmenu .edui-arrow {
  height: 20px;
  width: 20px;
  float: right;
  background: url("../images/icons-all.gif") no-repeat 10px -233px;
}

.edui-default .edui-menu-body .edui-menuitem {
  padding: 1px;
}

.edui-default .edui-menuseparator {
  margin: 2px 0;
  height: 1px;
  overflow: hidden;
}

.edui-default .edui-menuseparator-inner {
  border-bottom: 1px solid #e2e3e3;
  margin-left: 29px;
  margin-right: 1px;
}

.edui-default .edui-menu-body .edui-state-hover {
  padding: 0 !important;
  background-color: #fff5d4;
  border: 1px solid #dcac6c;
}

/*弹出菜单*/
.edui-default .edui-shortcutmenu {
  padding: 2px;
  width: 190px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/*粘贴弹出菜单*/
.edui-default .edui-wordpastepop .edui-popup-content {
  border: none;
  padding: 0;
  width: 54px;
  height: 21px;
}

.edui-default .edui-pasteicon {
  width: 100%;
  height: 100%;
ModStart's avatar
develop  
ModStart 已提交
2127
  background-image: data-uri('../images/wordpaste.png');
S
develop  
server 已提交
2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
  background-position: 0 0;
}

.edui-default .edui-pasteicon.edui-state-opened {
  background-position: 0 -34px;
}

.edui-default .edui-pastecontainer {
  position: relative;
  visibility: hidden;
  width: 97px;
  background: #fff;
  border: 1px solid #ccc;
}

.edui-default .edui-pastecontainer .edui-title {
  font-weight: bold;
  background: #F8F8FF;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
  padding-left: 5px;
}

.edui-default .edui-pastecontainer .edui-button {
  overflow: hidden;
  margin: 3px 0;
}

.edui-default .edui-pastecontainer .edui-button .edui-richtxticon,
.edui-default .edui-pastecontainer .edui-button .edui-tagicon,
.edui-default .edui-pastecontainer .edui-button .edui-plaintxticon {
  float: left;
  cursor: pointer;
  width: 29px;
  height: 29px;
  margin-left: 5px;
ModStart's avatar
develop  
ModStart 已提交
2165
  background-image: data-uri('../images/wordpaste.png');
S
develop  
server 已提交
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197
  background-repeat: no-repeat;
}

.edui-default .edui-pastecontainer .edui-button .edui-richtxticon {
  margin-left: 0;
  background-position: -109px 0;
}

.edui-default .edui-pastecontainer .edui-button .edui-tagicon {
  background-position: -148px 1px;
}

.edui-default .edui-pastecontainer .edui-button .edui-plaintxticon {
  background-position: -72px 0;
}

.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-richtxticon {
  background-position: -109px -34px;
}

.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-tagicon {
  background-position: -148px -34px;
}

.edui-default .edui-pastecontainer .edui-button .edui-state-hover .edui-plaintxticon {
  background-position: -72px -34px;
}

.edui-default .edui-for-securitytemplatehome .edui-icon {
  background-position: -339px -40px;
}

ModStart's avatar
develop  
ModStart 已提交
2198 2199 2200
//.edui-default .edui-for-wechatcustomemotion .edui-icon {
//  background-position: -60px -20px;
//}
S
develop  
server 已提交
2201 2202 2203 2204

.editor-wechatcustomemotion {
  width: 34px *  12;
  padding: 10px;
ModStart's avatar
develop  
ModStart 已提交
2205

S
develop  
server 已提交
2206 2207 2208 2209 2210 2211 2212
  a.item {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid #EEE;
    text-align: center;
    cursor: pointer;
ModStart's avatar
develop  
ModStart 已提交
2213

S
develop  
server 已提交
2214 2215 2216
    &:hover {
      background: #F8F8F8;
    }
ModStart's avatar
develop  
ModStart 已提交
2217

S
develop  
server 已提交
2218 2219 2220 2221 2222 2223
    img {
      width: 24px;
      height: 24px;
      margin-top: 4px;
    }
  }
ModStart's avatar
develop  
ModStart 已提交
2224 2225
}

ModStart's avatar
develop  
ModStart 已提交
2226 2227
.CodeMirror pre {
  color: #333;
ModStart's avatar
develop  
ModStart 已提交
2228
  line-height: 1.1em;
ModStart's avatar
develop  
ModStart 已提交
2229
}
ModStart's avatar
develop  
ModStart 已提交
2230