| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810 | 
// ---------- begin 全局颜色配置 ------------/* 编辑器边框颜色 */@border-color: #ccc;/* 菜单颜色、上边框颜色 */@fore-color: #666;/* 菜单选中状态的颜色 */@selected-color: #1e88e5;/* input focus 时的颜色 */@focus-input-color: #1e88e5;/* 按钮颜色 */@button-color: #1e88e5;/* tab selected 状态下的颜色 */@selected-tab-color: #1e88e5;// ---------- end 全局颜色配置 ------------.wangEditor-container {    position: relative;    background-color: #fff;    border: 1px solid @border-color;    z-index: 1;    width: 100%;    a:focus,    button:focus{        outline:none;    }    &,* {        margin: 0;        padding: 0;        box-sizing: border-box;        line-height: 1;    }    img {        border: none;    }    .clearfix:after {        content: '';        display: table;        clear: both;    }    .clearfix {        *zoom: 1;    }    textarea {        border: none;        &:focus{            outline: none;         }    }    // 显示p head 高度的 tip    .height-tip {        position: absolute;        width: 3px;        background-color: #ccc;        left: 0;        transition: top .2s;    }    // 设置 img table 的 toolbar    .txt-toolbar {        position: absolute;        background-color: #fff;        padding: 3px 5px;        border-top: 2px solid @fore-color;        box-shadow: 1px 3px 3px #999;        // for IE8        border-left: 1px\9 solid\9 #ccc\9;        border-bottom: 1px\9 solid\9 #999\9;        border-right: 1px\9 solid\9 #999\9;        // 小三角        .tip-triangle {            display: block;            position: absolute;            width: 0;            height: 0;            border: 5px solid;            border-color: transparent transparent @fore-color transparent;            top: -12px;            left: 50%;            margin-left: -5px;        }        a {            color: @fore-color;            display: inline-block;            margin: 0 3px;            padding: 5px;            text-decoration: none;            border-radius: 3px;            &:hover {                background-color: #f1f1f1;            }        }    }    // 图品拖拽大小    .img-drag-point {        display: block;        position: absolute;        width: 12px;        height: 12px;        border-radius: 50%;        cursor: se-resize;        background-color: @fore-color;        margin-left: -6px;        margin-top: -6px;        box-shadow: 1px 1px 5px #999;    }    // 进度条    .wangEditor-upload-progress {        position: absolute;        height: 1px;        background: #1e88e5;        width: 0;        display: none;        -webkit-transition: width .5s;        -o-transition: width .5s;        transition: width .5s;    }}.wangEditor-fullscreen {    position: fixed;    top: 0;    bottom: 0;    left: 0;    right: 0;}.wangEditor-container {    .code-textarea {        resize: none;        width: 100%;        font-size: 14px;        line-height: 1.5;        font-family: 'Verdana';        color: #333;        padding: 0 15px 0 15px;    }}.wangEditor-menu-container {    width: 100%;    border-bottom: 1px solid #f1f1f1;    background-color: #fff;        a {        text-decoration: none;    }    // 菜单组    .menu-group {        float: left;        padding: 0 8px;        border-right: 1px solid #f1f1f1;    }    // 单个菜单容器    .menu-item {        float: left;        position: relative;        text-align: center;        height: 31px;        width: 35px;        &:hover {            background-color: #f1f1f1;        }        // 菜单        a {            display: block;            text-align: center;            color: @fore-color;            width: 100%;            padding: 8px 0;            font-size: 0.9em;        }         // 菜单选中状态        .selected {            color: @selected-color;        }        // 激活状态        .active {            background-color: #f1f1f1;        }        // 禁用状态        .disable {            opacity: 0.5;            filter: Alpha(opacity=50);        }    }    // tip提示    .menu-tip {        display: block;        position: absolute;        z-index: 20;        width: 60px;        text-align: center;        background-color: @fore-color;        color: #fff;        padding: 7px 0;        font-size: 12px;        top: 100%;        left: 50%;        margin-left: -30px;        border-radius: 2px;        box-shadow: 1px 1px 5px #999;        display: none;        /*// 小三角        .tip-triangle {            display: block;            position: absolute;            width: 0;            height: 0;            border:5px solid;            border-color: transparent transparent @fore-color transparent;            top: -10px;            left: 50%;            margin-left: -5px;        }*/    }    .menu-tip-40 {        width: 40px;        margin-left: -20px;    }    .menu-tip-50 {        width: 50px;        margin-left: -25px;    }}.wangEditor-menu-shadow {    /*border-bottom-width: 0;*/    border-bottom: 1px\9 solid\9 #f1f1f1\9;    box-shadow: 0 1px 3px #999;}.wangEditor-container {    .wangEditor-txt{        width: 100%;        text-align: left;        padding: 15px;        padding-top: 0;        margin-top: 5px;        overflow-y: auto;        p,h1,h2,h3,h4,h5 {            margin: 10px 0;            line-height: 1.8;            * {                line-height: 1.8;            }        }        ul, ol {            padding-left: 20px;        }        img {            cursor: pointer;        }        img.clicked {            box-shadow: 1px 1px 10px #999;        }        table.clicked {            box-shadow: 1px 1px 10px #999;        }        pre code {            line-height: 1.5;        }        &:focus{            outline: none;         }    }}.wangEditor-container {    .wangEditor-txt {        blockquote {            display: block;             border-left: 8px solid #d0e5f2;            padding: 5px 10px;            margin: 10px 0;             line-height: 1.4;             font-size: 100%;            background-color: #f1f1f1;        }        table {            border: none;            border-collapse: collapse;        }        table td,        table th {            border: 1px solid #999;            padding: 3px 5px;            min-width: 50px;            height: 20px;        }        pre {            border: 1px solid #ccc;             background-color: #f8f8f8;             padding: 10px;             margin: 5px 0px;            font-size: 0.8em;            border-radius: 3px;        }    }}.wangEditor-drop-list {    display: none;    position: absolute;    background-color: #fff;    overflow: hidden;    z-index: 10;    transition: height .7s;        border-top: 1px solid #f1f1f1;    box-shadow: 1px 3px 3px #999;    // for IE8    border-left: 1px\9 solid\9 #ccc\9;    border-bottom: 1px\9 solid\9 #999\9;    border-right: 1px\9 solid\9 #999\9;    a {        text-decoration: none;        display: block;        color: @fore-color;        padding: 3px 5px;        &:hover {            background-color: #f1f1f1;        }    }}.wangEditor-drop-panel,.txt-toolbar {    display: none;    position: absolute;    padding: 10px;    font-size: 14px;    /*border: 1px\9 solid\9 #cccccc\9;*/    background-color: #fff;    z-index: 10;        border-top: 2px solid @fore-color;    box-shadow: 1px 3px 3px #999;    // for IE8    border-left: 1px\9 solid\9 #ccc\9;    border-bottom: 1px\9 solid\9 #999\9;    border-right: 1px\9 solid\9 #999\9;    // 小三角    .tip-triangle {        display: block;        position: absolute;        width: 0;        height: 0;        border: 5px solid;        border-color: transparent transparent @fore-color transparent;        top: -12px;        left: 50%;        margin-left: -5px;    }    a {        text-decoration: none;    }    // 输入框    input[type=text] {        border: none;        border-bottom: 1px solid #ccc;        font-size: 14px;        height: 20px;        color: #333;        padding: 3px 0;        &:focus{            outline: none;            border-bottom: 2px solid @focus-input-color;        }    }    input[type=text].block {        display: block;        width: 100%;    }    textarea {        border: 1px solid #ccc;        &:focus {            outline: none;            border-color: @focus-input-color;        }    }    // 按钮    button {        font-size: 14px;        color: @button-color;        border: none;        padding: 10px;        background-color: #fff;        cursor: pointer;        border-radius: 3px;                &:hover {            background-color: #f1f1f1;        }        &:focus{            outline: none;         }    }    button.right {        float: right;        margin-left: 10px;    }    button.gray {        color: #999;    }    button.link {        padding: 5px 10px;        &:hover {            background-color: #fff;            text-decoration: underline;        }    }        // 颜色块    .color-item {        display: block;        float: left;        width: 25px;        height: 25px;        text-align: center;        padding: 2px;        border-radius: 2px;        text-decoration: underline;        &:hover {            background-color: #f1f1f1;        }    }    // 列表    .list-menu-item {        display: block;        float: left;        color: #333;        padding: 5px 5px;        border-radius: 2px;        &:hover {            background-color: #f1f1f1;        }    }    // 表格    table.choose-table {        border: none;        border-collapse: collapse;        td {            border: 1px solid #ccc;            width: 16px;            height: 12px;        }        td.active {            background-color: #ccc;            opacity: .5;            filter: Alpha(opacity=50);        }    }    // tab    .panel-tab {        .tab-container {            margin-bottom: 5px;            a {                display: inline-block;                color: #999;                text-align: center;                margin: 0 5px;                padding: 5px 5px;            }            a.selected {                color: @selected-tab-color;                border-bottom: 2px solid @selected-tab-color;            }        }        .content-container {            .content {                display: none;                a {                    display: inline-block;                    margin: 2px;                    padding: 2px;                    border-radius: 2px;                    &:hover {                        background-color: #f1f1f1;                    }                }            }            .selected {                display: block;            }        }        .emotion-content-container {            height: 200px;            overflow-y: auto;        }    }    // 上传图片    .upload-icon-container {        color: #ccc;        text-align: center;        margin: 20px 20px 15px 20px !important;        padding: 5px !important;        font-size: 65px;        cursor: pointer;        border: 2px dotted #f1f1f1;        display: block !important;        &:hover {            color: #666;            border-color: #ccc;        }    }}.wangEditor-modal {    position: absolute;    top: 50%;    left: 50%;    background-color: #fff;        border-top: 1px solid #f1f1f1;    box-shadow: 1px 3px 3px #999;    // for IE8    border-top: 1px\9 solid\9 #ccc\9;    border-left: 1px\9 solid\9 #ccc\9;    border-bottom: 1px\9 solid\9 #999\9;    border-right: 1px\9 solid\9 #999\9;    // 关闭按钮    .wangEditor-modal-close {        position: absolute;        top: 0;        right: 0;        margin-top: -25px;        margin-right: -25px;        font-size: 1.5em;        color: #666;        cursor: pointer;    }    }@font-face {    font-family: 'icomoon';    src:url('../fonts/icomoon.eot?-qdfu1s');    src:url('../fonts/icomoon.eot?#iefix-qdfu1s') format('embedded-opentype'),        url('../fonts/icomoon.ttf?-qdfu1s') format('truetype'),        url('../fonts/icomoon.woff?-qdfu1s') format('woff'),        url('../fonts/icomoon.svg?-qdfu1s#icomoon') format('svg');    font-weight: normal;    font-style: normal;}[class^="wangeditor-menu-img-"], [class*=" wangeditor-menu-img-"] {    font-family: 'icomoon';    speak: none;    font-style: normal;    font-weight: normal;    font-variant: normal;    text-transform: none;    line-height: 1;    /* Better Font Rendering =========== */    -webkit-font-smoothing: antialiased;    -moz-osx-font-smoothing: grayscale;}.wangeditor-menu-img-link:before {content: "\e800";}.wangeditor-menu-img-unlink:before {content: "\e801";}.wangeditor-menu-img-code:before {content: "\e802";}.wangeditor-menu-img-cancel:before {content: "\e803";}.wangeditor-menu-img-terminal:before {content: "\e804";}.wangeditor-menu-img-angle-down:before {content: "\e805";}.wangeditor-menu-img-font:before {content: "\e806";}.wangeditor-menu-img-bold:before {content: "\e807";}.wangeditor-menu-img-italic:before {content: "\e808";}.wangeditor-menu-img-header:before {content: "\e809";}.wangeditor-menu-img-align-left:before {content: "\e80a";}.wangeditor-menu-img-align-center:before {content: "\e80b";}.wangeditor-menu-img-align-right:before {content: "\e80c";}.wangeditor-menu-img-list-bullet:before {content: "\e80d";}.wangeditor-menu-img-indent-left:before {content: "\e80e";}.wangeditor-menu-img-indent-right:before {content: "\e80f";}.wangeditor-menu-img-list-numbered:before {content: "\e810";}.wangeditor-menu-img-underline:before {content: "\e811";}.wangeditor-menu-img-table:before {content: "\e812";}.wangeditor-menu-img-eraser:before {content: "\e813";}.wangeditor-menu-img-text-height:before {content: "\e814";}.wangeditor-menu-img-brush:before {content: "\e815";}.wangeditor-menu-img-pencil:before {content: "\e816";}.wangeditor-menu-img-minus:before {content: "\e817";}.wangeditor-menu-img-picture:before {content: "\e818";}.wangeditor-menu-img-file-image:before {content: "\e819";}.wangeditor-menu-img-cw:before {content: "\e81a";}.wangeditor-menu-img-ccw:before {content: "\e81b";}.wangeditor-menu-img-music:before {content: "\e911";}.wangeditor-menu-img-play:before {content: "\e912";}.wangeditor-menu-img-location:before {content: "\e947";}.wangeditor-menu-img-happy:before {content: "\e9df";}.wangeditor-menu-img-sigma:before {content: "\ea67";}.wangeditor-menu-img-enlarge2:before {content: "\e98b";}.wangeditor-menu-img-shrink2:before {content: "\e98c";}.wangeditor-menu-img-newspaper:before{content: "\e904";}.wangeditor-menu-img-camera:before{content: "\e90f";}.wangeditor-menu-img-video-camera:before{content: "\e914";}.wangeditor-menu-img-file-zip:before{content: "\e92b";}.wangeditor-menu-img-stack:before{content: "\e92e";}.wangeditor-menu-img-credit-card:before{content: "\e93f";}.wangeditor-menu-img-address-book:before{content: "\e944";}.wangeditor-menu-img-envelop:before{content: "\e945";}.wangeditor-menu-img-drawer:before{content: "\e95c";}.wangeditor-menu-img-download:before{content: "\e960";}.wangeditor-menu-img-upload:before{content: "\e961";}.wangeditor-menu-img-lock:before{content: "\e98f";}.wangeditor-menu-img-unlocked:before{content: "\e990";}.wangeditor-menu-img-wrench:before{content: "\e991";}.wangeditor-menu-img-eye:before{content: "\e9ce";}.wangeditor-menu-img-eye-blocked:before{content: "\e9d1";}.wangeditor-menu-img-command:before{content: "\ea4e";}.wangeditor-menu-img-font2:before{content: "\ea5c";}.wangeditor-menu-img-libreoffice:before{content: "\eade";}.wangeditor-menu-img-quotes-left:before{content: "\e977";}.wangeditor-menu-img-strikethrough:before{content: "\ea65";}.wangeditor-menu-img-desktop:before{content: "\f108";}.wangeditor-menu-img-tablet:before{content: "\f10a";}.wangeditor-menu-img-search-plus:before {    content: "\f00e";}.wangeditor-menu-img-search-minus:before {    content: "\f010";}.wangeditor-menu-img-trash-o:before {    content: "\f014";}.wangeditor-menu-img-align-justify:before {    content: "\f039";}.wangeditor-menu-img-arrows-v:before {    content: "\f07d";}.wangeditor-menu-img-sigma2:before {    content: "\ea68";}.wangeditor-menu-img-omega:before {    content: "\e900";}.wangeditor-menu-img-cancel-circle:before {    content: "\e901";}.hljs {  display: block;  overflow-x: auto;  padding: 0.5em;  color: #333;  background: #f8f8f8;  -webkit-text-size-adjust: none;}.hljs-comment,.diff .hljs-header {  color: #998;  font-style: italic;}.hljs-keyword,.css .rule .hljs-keyword,.hljs-winutils,.nginx .hljs-title,.hljs-subst,.hljs-request,.hljs-status {  color: #333;  font-weight: bold;}.hljs-number,.hljs-hexcolor,.ruby .hljs-constant {  color: #008080;}.hljs-string,.hljs-tag .hljs-value,.hljs-doctag,.tex .hljs-formula {  color: #d14;}.hljs-title,.hljs-id,.scss .hljs-preprocessor {  color: #900;  font-weight: bold;}.hljs-list .hljs-keyword,.hljs-subst {  font-weight: normal;}.hljs-class .hljs-title,.hljs-type,.vhdl .hljs-literal,.tex .hljs-command {  color: #458;  font-weight: bold;}.hljs-tag,.hljs-tag .hljs-title,.hljs-rule .hljs-property,.django .hljs-tag .hljs-keyword {  color: #000080;  font-weight: normal;}.hljs-attribute,.hljs-variable,.lisp .hljs-body,.hljs-name {  color: #008080;}.hljs-regexp {  color: #009926;}.hljs-symbol,.ruby .hljs-symbol .hljs-string,.lisp .hljs-keyword,.clojure .hljs-keyword,.scheme .hljs-keyword,.tex .hljs-special,.hljs-prompt {  color: #990073;}.hljs-built_in {  color: #0086b3;}.hljs-preprocessor,.hljs-pragma,.hljs-pi,.hljs-doctype,.hljs-shebang,.hljs-cdata {  color: #999;  font-weight: bold;}.hljs-deletion {  background: #fdd;}.hljs-addition {  background: #dfd;}.diff .hljs-change {  background: #0086b3;}.hljs-chunk {  color: #aaa;}
 |