funuicss 3.3.8 → 3.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/css/fun.css CHANGED
@@ -6861,3 +6861,1908 @@ background-color: rgba(0, 0, 0, 0.2);
6861
6861
 
6862
6862
 
6863
6863
 
6864
+
6865
+
6866
+
6867
+
6868
+
6869
+
6870
+
6871
+
6872
+
6873
+
6874
+
6875
+ /* Text Area */
6876
+
6877
+ .ql-container {
6878
+ box-sizing: border-box;
6879
+ font-family: Helvetica, Arial, sans-serif;
6880
+ font-size: 13px;
6881
+ height: 100%;
6882
+ margin: 0px;
6883
+ position: relative;
6884
+ }
6885
+ .ql-container.ql-disabled .ql-tooltip {
6886
+ visibility: hidden;
6887
+ }
6888
+ .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
6889
+ pointer-events: none;
6890
+ }
6891
+ .ql-clipboard {
6892
+ left: -100000px;
6893
+ height: 1px;
6894
+ overflow-y: hidden;
6895
+ position: absolute;
6896
+ top: 50%;
6897
+ }
6898
+ .ql-clipboard p {
6899
+ margin: 0;
6900
+ padding: 0;
6901
+ }
6902
+ .ql-editor {
6903
+ box-sizing: border-box;
6904
+ line-height: 1.42;
6905
+ height: 100%;
6906
+ outline: none;
6907
+ overflow-y: auto;
6908
+ padding: 12px 15px;
6909
+ tab-size: 4;
6910
+ -moz-tab-size: 4;
6911
+ text-align: left;
6912
+ white-space: pre-wrap;
6913
+ word-wrap: break-word;
6914
+ }
6915
+ .ql-editor > * {
6916
+ cursor: text;
6917
+ }
6918
+ .ql-editor p,
6919
+ .ql-editor ol,
6920
+ .ql-editor ul,
6921
+ .ql-editor pre,
6922
+ .ql-editor blockquote,
6923
+ .ql-editor h1,
6924
+ .ql-editor h2,
6925
+ .ql-editor h3,
6926
+ .ql-editor h4,
6927
+ .ql-editor h5,
6928
+ .ql-editor h6 {
6929
+ margin: 0;
6930
+ padding: 0;
6931
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
6932
+ }
6933
+ .ql-editor ol,
6934
+ .ql-editor ul {
6935
+ padding-left: 1.5em;
6936
+ }
6937
+ .ql-editor ol > li,
6938
+ .ql-editor ul > li {
6939
+ list-style-type: none;
6940
+ }
6941
+ .ql-editor ul > li::before {
6942
+ content: '\2022';
6943
+ }
6944
+ .ql-editor ul[data-checked=true],
6945
+ .ql-editor ul[data-checked=false] {
6946
+ pointer-events: none;
6947
+ }
6948
+ .ql-editor ul[data-checked=true] > li *,
6949
+ .ql-editor ul[data-checked=false] > li * {
6950
+ pointer-events: all;
6951
+ }
6952
+ .ql-editor ul[data-checked=true] > li::before,
6953
+ .ql-editor ul[data-checked=false] > li::before {
6954
+ color: #777;
6955
+ cursor: pointer;
6956
+ pointer-events: all;
6957
+ }
6958
+ .ql-editor ul[data-checked=true] > li::before {
6959
+ content: '\2611';
6960
+ }
6961
+ .ql-editor ul[data-checked=false] > li::before {
6962
+ content: '\2610';
6963
+ }
6964
+ .ql-editor li::before {
6965
+ display: inline-block;
6966
+ white-space: nowrap;
6967
+ width: 1.2em;
6968
+ }
6969
+ .ql-editor li:not(.ql-direction-rtl)::before {
6970
+ margin-left: -1.5em;
6971
+ margin-right: 0.3em;
6972
+ text-align: right;
6973
+ }
6974
+ .ql-editor li.ql-direction-rtl::before {
6975
+ margin-left: 0.3em;
6976
+ margin-right: -1.5em;
6977
+ }
6978
+ .ql-editor ol li:not(.ql-direction-rtl),
6979
+ .ql-editor ul li:not(.ql-direction-rtl) {
6980
+ padding-left: 1.5em;
6981
+ }
6982
+ .ql-editor ol li.ql-direction-rtl,
6983
+ .ql-editor ul li.ql-direction-rtl {
6984
+ padding-right: 1.5em;
6985
+ }
6986
+ .ql-editor ol li {
6987
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
6988
+ counter-increment: list-0;
6989
+ }
6990
+ .ql-editor ol li:before {
6991
+ content: counter(list-0, decimal) '. ';
6992
+ }
6993
+ .ql-editor ol li.ql-indent-1 {
6994
+ counter-increment: list-1;
6995
+ }
6996
+ .ql-editor ol li.ql-indent-1:before {
6997
+ content: counter(list-1, lower-alpha) '. ';
6998
+ }
6999
+ .ql-editor ol li.ql-indent-1 {
7000
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
7001
+ }
7002
+ .ql-editor ol li.ql-indent-2 {
7003
+ counter-increment: list-2;
7004
+ }
7005
+ .ql-editor ol li.ql-indent-2:before {
7006
+ content: counter(list-2, lower-roman) '. ';
7007
+ }
7008
+ .ql-editor ol li.ql-indent-2 {
7009
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
7010
+ }
7011
+ .ql-editor ol li.ql-indent-3 {
7012
+ counter-increment: list-3;
7013
+ }
7014
+ .ql-editor ol li.ql-indent-3:before {
7015
+ content: counter(list-3, decimal) '. ';
7016
+ }
7017
+ .ql-editor ol li.ql-indent-3 {
7018
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
7019
+ }
7020
+ .ql-editor ol li.ql-indent-4 {
7021
+ counter-increment: list-4;
7022
+ }
7023
+ .ql-editor ol li.ql-indent-4:before {
7024
+ content: counter(list-4, lower-alpha) '. ';
7025
+ }
7026
+ .ql-editor ol li.ql-indent-4 {
7027
+ counter-reset: list-5 list-6 list-7 list-8 list-9;
7028
+ }
7029
+ .ql-editor ol li.ql-indent-5 {
7030
+ counter-increment: list-5;
7031
+ }
7032
+ .ql-editor ol li.ql-indent-5:before {
7033
+ content: counter(list-5, lower-roman) '. ';
7034
+ }
7035
+ .ql-editor ol li.ql-indent-5 {
7036
+ counter-reset: list-6 list-7 list-8 list-9;
7037
+ }
7038
+ .ql-editor ol li.ql-indent-6 {
7039
+ counter-increment: list-6;
7040
+ }
7041
+ .ql-editor ol li.ql-indent-6:before {
7042
+ content: counter(list-6, decimal) '. ';
7043
+ }
7044
+ .ql-editor ol li.ql-indent-6 {
7045
+ counter-reset: list-7 list-8 list-9;
7046
+ }
7047
+ .ql-editor ol li.ql-indent-7 {
7048
+ counter-increment: list-7;
7049
+ }
7050
+ .ql-editor ol li.ql-indent-7:before {
7051
+ content: counter(list-7, lower-alpha) '. ';
7052
+ }
7053
+ .ql-editor ol li.ql-indent-7 {
7054
+ counter-reset: list-8 list-9;
7055
+ }
7056
+ .ql-editor ol li.ql-indent-8 {
7057
+ counter-increment: list-8;
7058
+ }
7059
+ .ql-editor ol li.ql-indent-8:before {
7060
+ content: counter(list-8, lower-roman) '. ';
7061
+ }
7062
+ .ql-editor ol li.ql-indent-8 {
7063
+ counter-reset: list-9;
7064
+ }
7065
+ .ql-editor ol li.ql-indent-9 {
7066
+ counter-increment: list-9;
7067
+ }
7068
+ .ql-editor ol li.ql-indent-9:before {
7069
+ content: counter(list-9, decimal) '. ';
7070
+ }
7071
+ .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
7072
+ padding-left: 3em;
7073
+ }
7074
+ .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
7075
+ padding-left: 4.5em;
7076
+ }
7077
+ .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
7078
+ padding-right: 3em;
7079
+ }
7080
+ .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
7081
+ padding-right: 4.5em;
7082
+ }
7083
+ .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
7084
+ padding-left: 6em;
7085
+ }
7086
+ .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
7087
+ padding-left: 7.5em;
7088
+ }
7089
+ .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
7090
+ padding-right: 6em;
7091
+ }
7092
+ .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
7093
+ padding-right: 7.5em;
7094
+ }
7095
+ .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
7096
+ padding-left: 9em;
7097
+ }
7098
+ .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
7099
+ padding-left: 10.5em;
7100
+ }
7101
+ .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
7102
+ padding-right: 9em;
7103
+ }
7104
+ .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
7105
+ padding-right: 10.5em;
7106
+ }
7107
+ .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
7108
+ padding-left: 12em;
7109
+ }
7110
+ .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
7111
+ padding-left: 13.5em;
7112
+ }
7113
+ .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
7114
+ padding-right: 12em;
7115
+ }
7116
+ .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
7117
+ padding-right: 13.5em;
7118
+ }
7119
+ .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
7120
+ padding-left: 15em;
7121
+ }
7122
+ .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
7123
+ padding-left: 16.5em;
7124
+ }
7125
+ .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
7126
+ padding-right: 15em;
7127
+ }
7128
+ .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
7129
+ padding-right: 16.5em;
7130
+ }
7131
+ .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
7132
+ padding-left: 18em;
7133
+ }
7134
+ .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
7135
+ padding-left: 19.5em;
7136
+ }
7137
+ .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
7138
+ padding-right: 18em;
7139
+ }
7140
+ .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
7141
+ padding-right: 19.5em;
7142
+ }
7143
+ .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
7144
+ padding-left: 21em;
7145
+ }
7146
+ .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
7147
+ padding-left: 22.5em;
7148
+ }
7149
+ .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
7150
+ padding-right: 21em;
7151
+ }
7152
+ .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
7153
+ padding-right: 22.5em;
7154
+ }
7155
+ .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
7156
+ padding-left: 24em;
7157
+ }
7158
+ .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
7159
+ padding-left: 25.5em;
7160
+ }
7161
+ .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
7162
+ padding-right: 24em;
7163
+ }
7164
+ .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
7165
+ padding-right: 25.5em;
7166
+ }
7167
+ .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
7168
+ padding-left: 27em;
7169
+ }
7170
+ .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
7171
+ padding-left: 28.5em;
7172
+ }
7173
+ .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
7174
+ padding-right: 27em;
7175
+ }
7176
+ .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
7177
+ padding-right: 28.5em;
7178
+ }
7179
+ .ql-editor .ql-video {
7180
+ display: block;
7181
+ max-width: 100%;
7182
+ }
7183
+ .ql-editor .ql-video.ql-align-center {
7184
+ margin: 0 auto;
7185
+ }
7186
+ .ql-editor .ql-video.ql-align-right {
7187
+ margin: 0 0 0 auto;
7188
+ }
7189
+ .ql-editor .ql-bg-black {
7190
+ background-color: #000;
7191
+ }
7192
+ .ql-editor .ql-bg-red {
7193
+ background-color: #e60000;
7194
+ }
7195
+ .ql-editor .ql-bg-orange {
7196
+ background-color: #f90;
7197
+ }
7198
+ .ql-editor .ql-bg-yellow {
7199
+ background-color: #ff0;
7200
+ }
7201
+ .ql-editor .ql-bg-green {
7202
+ background-color: #008a00;
7203
+ }
7204
+ .ql-editor .ql-bg-blue {
7205
+ background-color: #06c;
7206
+ }
7207
+ .ql-editor .ql-bg-purple {
7208
+ background-color: #93f;
7209
+ }
7210
+ .ql-editor .ql-color-white {
7211
+ color: #fff;
7212
+ }
7213
+ .ql-editor .ql-color-red {
7214
+ color: #e60000;
7215
+ }
7216
+ .ql-editor .ql-color-orange {
7217
+ color: #f90;
7218
+ }
7219
+ .ql-editor .ql-color-yellow {
7220
+ color: #ff0;
7221
+ }
7222
+ .ql-editor .ql-color-green {
7223
+ color: #008a00;
7224
+ }
7225
+ .ql-editor .ql-color-blue {
7226
+ color: #06c;
7227
+ }
7228
+ .ql-editor .ql-color-purple {
7229
+ color: #93f;
7230
+ }
7231
+ .ql-editor .ql-font-serif {
7232
+ font-family: Georgia, Times New Roman, serif;
7233
+ }
7234
+ .ql-editor .ql-font-monospace {
7235
+ font-family: Monaco, Courier New, monospace;
7236
+ }
7237
+ .ql-editor .ql-size-small {
7238
+ font-size: 0.75em;
7239
+ }
7240
+ .ql-editor .ql-size-large {
7241
+ font-size: 1.5em;
7242
+ }
7243
+ .ql-editor .ql-size-huge {
7244
+ font-size: 2.5em;
7245
+ }
7246
+ .ql-editor .ql-direction-rtl {
7247
+ direction: rtl;
7248
+ text-align: inherit;
7249
+ }
7250
+ .ql-editor .ql-align-center {
7251
+ text-align: center;
7252
+ }
7253
+ .ql-editor .ql-align-justify {
7254
+ text-align: justify;
7255
+ }
7256
+ .ql-editor .ql-align-right {
7257
+ text-align: right;
7258
+ }
7259
+ .ql-editor.ql-blank::before {
7260
+ color: rgba(0,0,0,0.6);
7261
+ content: attr(data-placeholder);
7262
+ font-style: italic;
7263
+ left: 15px;
7264
+ pointer-events: none;
7265
+ position: absolute;
7266
+ right: 15px;
7267
+ }
7268
+ .ql-bubble.ql-toolbar:after,
7269
+ .ql-bubble .ql-toolbar:after {
7270
+ clear: both;
7271
+ content: '';
7272
+ display: table;
7273
+ }
7274
+ .ql-bubble.ql-toolbar button,
7275
+ .ql-bubble .ql-toolbar button {
7276
+ background: none;
7277
+ border: none;
7278
+ cursor: pointer;
7279
+ display: inline-block;
7280
+ float: left;
7281
+ height: 24px;
7282
+ padding: 3px 5px;
7283
+ width: 28px;
7284
+ }
7285
+ .ql-bubble.ql-toolbar button svg,
7286
+ .ql-bubble .ql-toolbar button svg {
7287
+ float: left;
7288
+ height: 100%;
7289
+ }
7290
+ .ql-bubble.ql-toolbar button:active:hover,
7291
+ .ql-bubble .ql-toolbar button:active:hover {
7292
+ outline: none;
7293
+ }
7294
+ .ql-bubble.ql-toolbar input.ql-image[type=file],
7295
+ .ql-bubble .ql-toolbar input.ql-image[type=file] {
7296
+ display: none;
7297
+ }
7298
+ .ql-bubble.ql-toolbar button:hover,
7299
+ .ql-bubble .ql-toolbar button:hover,
7300
+ .ql-bubble.ql-toolbar button:focus,
7301
+ .ql-bubble .ql-toolbar button:focus,
7302
+ .ql-bubble.ql-toolbar button.ql-active,
7303
+ .ql-bubble .ql-toolbar button.ql-active,
7304
+ .ql-bubble.ql-toolbar .ql-picker-label:hover,
7305
+ .ql-bubble .ql-toolbar .ql-picker-label:hover,
7306
+ .ql-bubble.ql-toolbar .ql-picker-label.ql-active,
7307
+ .ql-bubble .ql-toolbar .ql-picker-label.ql-active,
7308
+ .ql-bubble.ql-toolbar .ql-picker-item:hover,
7309
+ .ql-bubble .ql-toolbar .ql-picker-item:hover,
7310
+ .ql-bubble.ql-toolbar .ql-picker-item.ql-selected,
7311
+ .ql-bubble .ql-toolbar .ql-picker-item.ql-selected {
7312
+ color: #fff;
7313
+ }
7314
+ .ql-bubble.ql-toolbar button:hover .ql-fill,
7315
+ .ql-bubble .ql-toolbar button:hover .ql-fill,
7316
+ .ql-bubble.ql-toolbar button:focus .ql-fill,
7317
+ .ql-bubble .ql-toolbar button:focus .ql-fill,
7318
+ .ql-bubble.ql-toolbar button.ql-active .ql-fill,
7319
+ .ql-bubble .ql-toolbar button.ql-active .ql-fill,
7320
+ .ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,
7321
+ .ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,
7322
+ .ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,
7323
+ .ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,
7324
+ .ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,
7325
+ .ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,
7326
+ .ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
7327
+ .ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
7328
+ .ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,
7329
+ .ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,
7330
+ .ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,
7331
+ .ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,
7332
+ .ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,
7333
+ .ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,
7334
+ .ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
7335
+ .ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
7336
+ .ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
7337
+ .ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
7338
+ .ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
7339
+ .ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
7340
+ .ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
7341
+ .ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
7342
+ fill: #fff;
7343
+ }
7344
+ .ql-bubble.ql-toolbar button:hover .ql-stroke,
7345
+ .ql-bubble .ql-toolbar button:hover .ql-stroke,
7346
+ .ql-bubble.ql-toolbar button:focus .ql-stroke,
7347
+ .ql-bubble .ql-toolbar button:focus .ql-stroke,
7348
+ .ql-bubble.ql-toolbar button.ql-active .ql-stroke,
7349
+ .ql-bubble .ql-toolbar button.ql-active .ql-stroke,
7350
+ .ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,
7351
+ .ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,
7352
+ .ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
7353
+ .ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
7354
+ .ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,
7355
+ .ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,
7356
+ .ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
7357
+ .ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
7358
+ .ql-bubble.ql-toolbar button:hover .ql-stroke-miter,
7359
+ .ql-bubble .ql-toolbar button:hover .ql-stroke-miter,
7360
+ .ql-bubble.ql-toolbar button:focus .ql-stroke-miter,
7361
+ .ql-bubble .ql-toolbar button:focus .ql-stroke-miter,
7362
+ .ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,
7363
+ .ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,
7364
+ .ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
7365
+ .ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
7366
+ .ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
7367
+ .ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
7368
+ .ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
7369
+ .ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
7370
+ .ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
7371
+ .ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
7372
+ stroke: #fff;
7373
+ }
7374
+ @media (pointer: coarse) {
7375
+ .ql-bubble.ql-toolbar button:hover:not(.ql-active),
7376
+ .ql-bubble .ql-toolbar button:hover:not(.ql-active) {
7377
+ color: #ccc;
7378
+ }
7379
+ .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,
7380
+ .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,
7381
+ .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
7382
+ .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
7383
+ fill: #ccc;
7384
+ }
7385
+ .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
7386
+ .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
7387
+ .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
7388
+ .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
7389
+ stroke: #ccc;
7390
+ }
7391
+ }
7392
+ .ql-bubble {
7393
+ box-sizing: border-box;
7394
+ }
7395
+ .ql-bubble * {
7396
+ box-sizing: border-box;
7397
+ }
7398
+ .ql-bubble .ql-hidden {
7399
+ display: none;
7400
+ }
7401
+ .ql-bubble .ql-out-bottom,
7402
+ .ql-bubble .ql-out-top {
7403
+ visibility: hidden;
7404
+ }
7405
+ .ql-bubble .ql-tooltip {
7406
+ position: absolute;
7407
+ transform: translateY(10px);
7408
+ }
7409
+ .ql-bubble .ql-tooltip a {
7410
+ cursor: pointer;
7411
+ text-decoration: none;
7412
+ }
7413
+ .ql-bubble .ql-tooltip.ql-flip {
7414
+ transform: translateY(-10px);
7415
+ }
7416
+ .ql-bubble .ql-formats {
7417
+ display: inline-block;
7418
+ vertical-align: middle;
7419
+ }
7420
+ .ql-bubble .ql-formats:after {
7421
+ clear: both;
7422
+ content: '';
7423
+ display: table;
7424
+ }
7425
+ .ql-bubble .ql-stroke {
7426
+ fill: none;
7427
+ stroke: #ccc;
7428
+ stroke-linecap: round;
7429
+ stroke-linejoin: round;
7430
+ stroke-width: 2;
7431
+ }
7432
+ .ql-bubble .ql-stroke-miter {
7433
+ fill: none;
7434
+ stroke: #ccc;
7435
+ stroke-miterlimit: 10;
7436
+ stroke-width: 2;
7437
+ }
7438
+ .ql-bubble .ql-fill,
7439
+ .ql-bubble .ql-stroke.ql-fill {
7440
+ fill: #ccc;
7441
+ }
7442
+ .ql-bubble .ql-empty {
7443
+ fill: none;
7444
+ }
7445
+ .ql-bubble .ql-even {
7446
+ fill-rule: evenodd;
7447
+ }
7448
+ .ql-bubble .ql-thin,
7449
+ .ql-bubble .ql-stroke.ql-thin {
7450
+ stroke-width: 1;
7451
+ }
7452
+ .ql-bubble .ql-transparent {
7453
+ opacity: 0.4;
7454
+ }
7455
+ .ql-bubble .ql-direction svg:last-child {
7456
+ display: none;
7457
+ }
7458
+ .ql-bubble .ql-direction.ql-active svg:last-child {
7459
+ display: inline;
7460
+ }
7461
+ .ql-bubble .ql-direction.ql-active svg:first-child {
7462
+ display: none;
7463
+ }
7464
+ .ql-bubble .ql-editor h1 {
7465
+ font-size: 2em;
7466
+ }
7467
+ .ql-bubble .ql-editor h2 {
7468
+ font-size: 1.5em;
7469
+ }
7470
+ .ql-bubble .ql-editor h3 {
7471
+ font-size: 1.17em;
7472
+ }
7473
+ .ql-bubble .ql-editor h4 {
7474
+ font-size: 1em;
7475
+ }
7476
+ .ql-bubble .ql-editor h5 {
7477
+ font-size: 0.83em;
7478
+ }
7479
+ .ql-bubble .ql-editor h6 {
7480
+ font-size: 0.67em;
7481
+ }
7482
+ .ql-bubble .ql-editor a {
7483
+ text-decoration: underline;
7484
+ }
7485
+ .ql-bubble .ql-editor blockquote {
7486
+ border-left: 4px solid #ccc;
7487
+ margin-bottom: 5px;
7488
+ margin-top: 5px;
7489
+ padding-left: 16px;
7490
+ }
7491
+ .ql-bubble .ql-editor code,
7492
+ .ql-bubble .ql-editor pre {
7493
+ background-color: #f0f0f0;
7494
+ border-radius: 3px;
7495
+ }
7496
+ .ql-bubble .ql-editor pre {
7497
+ white-space: pre-wrap;
7498
+ margin-bottom: 5px;
7499
+ margin-top: 5px;
7500
+ padding: 5px 10px;
7501
+ }
7502
+ .ql-bubble .ql-editor code {
7503
+ font-size: 85%;
7504
+ padding: 2px 4px;
7505
+ }
7506
+ .ql-bubble .ql-editor pre.ql-syntax {
7507
+ background-color: #23241f;
7508
+ color: #f8f8f2;
7509
+ overflow: visible;
7510
+ }
7511
+ .ql-bubble .ql-editor img {
7512
+ max-width: 100%;
7513
+ }
7514
+ .ql-bubble .ql-picker {
7515
+ color: #ccc;
7516
+ display: inline-block;
7517
+ float: left;
7518
+ font-size: 14px;
7519
+ font-weight: 500;
7520
+ height: 24px;
7521
+ position: relative;
7522
+ vertical-align: middle;
7523
+ }
7524
+ .ql-bubble .ql-picker-label {
7525
+ cursor: pointer;
7526
+ display: inline-block;
7527
+ height: 100%;
7528
+ padding-left: 8px;
7529
+ padding-right: 2px;
7530
+ position: relative;
7531
+ width: 100%;
7532
+ }
7533
+ .ql-bubble .ql-picker-label::before {
7534
+ display: inline-block;
7535
+ line-height: 22px;
7536
+ }
7537
+ .ql-bubble .ql-picker-options {
7538
+ background-color: #444;
7539
+ display: none;
7540
+ min-width: 100%;
7541
+ padding: 4px 8px;
7542
+ position: absolute;
7543
+ white-space: nowrap;
7544
+ }
7545
+ .ql-bubble .ql-picker-options .ql-picker-item {
7546
+ cursor: pointer;
7547
+ display: block;
7548
+ padding-bottom: 5px;
7549
+ padding-top: 5px;
7550
+ }
7551
+ .ql-bubble .ql-picker.ql-expanded .ql-picker-label {
7552
+ color: #777;
7553
+ z-index: 2;
7554
+ }
7555
+ .ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill {
7556
+ fill: #777;
7557
+ }
7558
+ .ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
7559
+ stroke: #777;
7560
+ }
7561
+ .ql-bubble .ql-picker.ql-expanded .ql-picker-options {
7562
+ display: block;
7563
+ margin-top: -1px;
7564
+ top: 100%;
7565
+ z-index: 1;
7566
+ }
7567
+ .ql-bubble .ql-color-picker,
7568
+ .ql-bubble .ql-icon-picker {
7569
+ width: 28px;
7570
+ }
7571
+ .ql-bubble .ql-color-picker .ql-picker-label,
7572
+ .ql-bubble .ql-icon-picker .ql-picker-label {
7573
+ padding: 2px 4px;
7574
+ }
7575
+ .ql-bubble .ql-color-picker .ql-picker-label svg,
7576
+ .ql-bubble .ql-icon-picker .ql-picker-label svg {
7577
+ right: 4px;
7578
+ }
7579
+ .ql-bubble .ql-icon-picker .ql-picker-options {
7580
+ padding: 4px 0px;
7581
+ }
7582
+ .ql-bubble .ql-icon-picker .ql-picker-item {
7583
+ height: 24px;
7584
+ width: 24px;
7585
+ padding: 2px 4px;
7586
+ }
7587
+ .ql-bubble .ql-color-picker .ql-picker-options {
7588
+ padding: 3px 5px;
7589
+ width: 152px;
7590
+ }
7591
+ .ql-bubble .ql-color-picker .ql-picker-item {
7592
+ border: 1px solid transparent;
7593
+ float: left;
7594
+ height: 16px;
7595
+ margin: 2px;
7596
+ padding: 0px;
7597
+ width: 16px;
7598
+ }
7599
+ .ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
7600
+ position: absolute;
7601
+ margin-top: -9px;
7602
+ right: 0;
7603
+ top: 50%;
7604
+ width: 18px;
7605
+ }
7606
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
7607
+ .ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
7608
+ .ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
7609
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
7610
+ .ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
7611
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
7612
+ content: attr(data-label);
7613
+ }
7614
+ .ql-bubble .ql-picker.ql-header {
7615
+ width: 98px;
7616
+ }
7617
+ .ql-bubble .ql-picker.ql-header .ql-picker-label::before,
7618
+ .ql-bubble .ql-picker.ql-header .ql-picker-item::before {
7619
+ content: 'Normal';
7620
+ }
7621
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
7622
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
7623
+ content: 'Heading 1';
7624
+ }
7625
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
7626
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
7627
+ content: 'Heading 2';
7628
+ }
7629
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
7630
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
7631
+ content: 'Heading 3';
7632
+ }
7633
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
7634
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
7635
+ content: 'Heading 4';
7636
+ }
7637
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
7638
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
7639
+ content: 'Heading 5';
7640
+ }
7641
+ .ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
7642
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
7643
+ content: 'Heading 6';
7644
+ }
7645
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
7646
+ font-size: 2em;
7647
+ }
7648
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
7649
+ font-size: 1.5em;
7650
+ }
7651
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
7652
+ font-size: 1.17em;
7653
+ }
7654
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
7655
+ font-size: 1em;
7656
+ }
7657
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
7658
+ font-size: 0.83em;
7659
+ }
7660
+ .ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
7661
+ font-size: 0.67em;
7662
+ }
7663
+ .ql-bubble .ql-picker.ql-font {
7664
+ width: 108px;
7665
+ }
7666
+ .ql-bubble .ql-picker.ql-font .ql-picker-label::before,
7667
+ .ql-bubble .ql-picker.ql-font .ql-picker-item::before {
7668
+ content: 'Sans Serif';
7669
+ }
7670
+ .ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
7671
+ .ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
7672
+ content: 'Serif';
7673
+ }
7674
+ .ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
7675
+ .ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
7676
+ content: 'Monospace';
7677
+ }
7678
+ .ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
7679
+ font-family: Georgia, Times New Roman, serif;
7680
+ }
7681
+ .ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
7682
+ font-family: Monaco, Courier New, monospace;
7683
+ }
7684
+ .ql-bubble .ql-picker.ql-size {
7685
+ width: 98px;
7686
+ }
7687
+ .ql-bubble .ql-picker.ql-size .ql-picker-label::before,
7688
+ .ql-bubble .ql-picker.ql-size .ql-picker-item::before {
7689
+ content: 'Normal';
7690
+ }
7691
+ .ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
7692
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
7693
+ content: 'Small';
7694
+ }
7695
+ .ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
7696
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
7697
+ content: 'Large';
7698
+ }
7699
+ .ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
7700
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
7701
+ content: 'Huge';
7702
+ }
7703
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
7704
+ font-size: 10px;
7705
+ }
7706
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
7707
+ font-size: 18px;
7708
+ }
7709
+ .ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
7710
+ font-size: 32px;
7711
+ }
7712
+ .ql-bubble .ql-color-picker.ql-background .ql-picker-item {
7713
+ background-color: #fff;
7714
+ }
7715
+ .ql-bubble .ql-color-picker.ql-color .ql-picker-item {
7716
+ background-color: #000;
7717
+ }
7718
+ .ql-bubble .ql-toolbar .ql-formats {
7719
+ margin: 8px 12px 8px 0px;
7720
+ }
7721
+ .ql-bubble .ql-toolbar .ql-formats:first-child {
7722
+ margin-left: 12px;
7723
+ }
7724
+ .ql-bubble .ql-color-picker svg {
7725
+ margin: 1px;
7726
+ }
7727
+ .ql-bubble .ql-color-picker .ql-picker-item.ql-selected,
7728
+ .ql-bubble .ql-color-picker .ql-picker-item:hover {
7729
+ border-color: #fff;
7730
+ }
7731
+ .ql-bubble .ql-tooltip {
7732
+ background-color: #444;
7733
+ border-radius: 25px;
7734
+ color: #fff;
7735
+ z-index: 5 !important;
7736
+
7737
+
7738
+ }
7739
+ .ql-bubble .ql-tooltip-arrow {
7740
+ border-left: 6px solid transparent;
7741
+ border-right: 6px solid transparent;
7742
+ content: " ";
7743
+ display: block;
7744
+ left: 50%;
7745
+ margin-left: -6px;
7746
+ position: absolute;
7747
+ }
7748
+ .ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow {
7749
+ border-bottom: 6px solid #444;
7750
+ top: -6px;
7751
+ }
7752
+ .ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow {
7753
+ border-top: 6px solid #444;
7754
+ bottom: -6px;
7755
+ }
7756
+ .ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor {
7757
+ display: block;
7758
+ }
7759
+ .ql-bubble .ql-tooltip.ql-editing .ql-formats {
7760
+ visibility: hidden;
7761
+ }
7762
+ .ql-bubble .ql-tooltip-editor {
7763
+ display: none;
7764
+ }
7765
+ .ql-bubble .ql-tooltip-editor input[type=text] {
7766
+ background: transparent;
7767
+ border: none;
7768
+ color: #fff;
7769
+ font-size: 13px;
7770
+ height: 100%;
7771
+ outline: none;
7772
+ padding: 10px 20px;
7773
+ position: absolute;
7774
+ width: 100%;
7775
+ }
7776
+ .ql-bubble .ql-tooltip-editor a {
7777
+ top: 10px;
7778
+ position: absolute;
7779
+ right: 20px;
7780
+ }
7781
+ .ql-bubble .ql-tooltip-editor a:before {
7782
+ color: #ccc;
7783
+ content: "\D7";
7784
+ font-size: 16px;
7785
+ font-weight: bold;
7786
+ }
7787
+ .ql-container.ql-bubble:not(.ql-disabled) a {
7788
+ position: relative;
7789
+ white-space: nowrap;
7790
+ }
7791
+ .ql-container.ql-bubble:not(.ql-disabled) a::before {
7792
+ background-color: #444;
7793
+ border-radius: 15px;
7794
+ top: -5px;
7795
+ font-size: 12px;
7796
+ color: #fff;
7797
+ content: attr(href);
7798
+ font-weight: normal;
7799
+ overflow: hidden;
7800
+ padding: 5px 15px;
7801
+ text-decoration: none;
7802
+ z-index: 1;
7803
+ }
7804
+ .ql-container.ql-bubble:not(.ql-disabled) a::after {
7805
+ border-top: 6px solid #444;
7806
+ border-left: 6px solid transparent;
7807
+ border-right: 6px solid transparent;
7808
+ top: 0;
7809
+ content: " ";
7810
+ height: 0;
7811
+ width: 0;
7812
+ }
7813
+ .ql-container.ql-bubble:not(.ql-disabled) a::before,
7814
+ .ql-container.ql-bubble:not(.ql-disabled) a::after {
7815
+ left: 0;
7816
+ margin-left: 50%;
7817
+ position: absolute;
7818
+ transform: translate(-50%, -100%);
7819
+ transition: visibility 0s ease 200ms;
7820
+ visibility: hidden;
7821
+ }
7822
+ .ql-container.ql-bubble:not(.ql-disabled) a:hover::before,
7823
+ .ql-container.ql-bubble:not(.ql-disabled) a:hover::after {
7824
+ visibility: visible;
7825
+ }
7826
+
7827
+
7828
+
7829
+
7830
+ /* text editor snow */
7831
+ .ql-container {
7832
+ box-sizing: border-box;
7833
+ font-size: 13px;
7834
+ height: 100%;
7835
+ margin: 0px;
7836
+ position: relative;
7837
+ }
7838
+ .ql-container.ql-disabled .ql-tooltip {
7839
+ visibility: hidden;
7840
+ }
7841
+ .ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
7842
+ pointer-events: none;
7843
+ }
7844
+ .ql-clipboard {
7845
+ left: -100000px;
7846
+ height: 1px;
7847
+ overflow-y: hidden;
7848
+ position: absolute;
7849
+ top: 50%;
7850
+ }
7851
+ .ql-clipboard p {
7852
+ margin: 0;
7853
+ padding: 0;
7854
+ }
7855
+ .ql-editor {
7856
+ box-sizing: border-box;
7857
+ line-height: 1.42;
7858
+ height: 100%;
7859
+ outline: none;
7860
+ overflow-y: auto;
7861
+ padding: 12px 15px;
7862
+ tab-size: 4;
7863
+ -moz-tab-size: 4;
7864
+ text-align: left;
7865
+ white-space: pre-wrap;
7866
+ word-wrap: break-word;
7867
+ }
7868
+ .ql-editor > * {
7869
+ cursor: text;
7870
+ }
7871
+ .ql-editor p,
7872
+ .ql-editor ol,
7873
+ .ql-editor ul,
7874
+ .ql-editor pre,
7875
+ .ql-editor blockquote,
7876
+ .ql-editor h1,
7877
+ .ql-editor h2,
7878
+ .ql-editor h3,
7879
+ .ql-editor h4,
7880
+ .ql-editor h5,
7881
+ .ql-editor h6 {
7882
+ margin: 0;
7883
+ padding: 0;
7884
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
7885
+ }
7886
+ .ql-editor ol,
7887
+ .ql-editor ul {
7888
+ padding-left: 1.5em;
7889
+ }
7890
+ .ql-editor ol > li,
7891
+ .ql-editor ul > li {
7892
+ list-style-type: none;
7893
+ }
7894
+ .ql-editor ul > li::before {
7895
+ content: '\2022';
7896
+ }
7897
+ .ql-editor ul[data-checked=true],
7898
+ .ql-editor ul[data-checked=false] {
7899
+ pointer-events: none;
7900
+ }
7901
+ .ql-editor ul[data-checked=true] > li *,
7902
+ .ql-editor ul[data-checked=false] > li * {
7903
+ pointer-events: all;
7904
+ }
7905
+ .ql-editor ul[data-checked=true] > li::before,
7906
+ .ql-editor ul[data-checked=false] > li::before {
7907
+ color: #777;
7908
+ cursor: pointer;
7909
+ pointer-events: all;
7910
+ }
7911
+ .ql-editor ul[data-checked=true] > li::before {
7912
+ content: '\2611';
7913
+ }
7914
+ .ql-editor ul[data-checked=false] > li::before {
7915
+ content: '\2610';
7916
+ }
7917
+ .ql-editor li::before {
7918
+ display: inline-block;
7919
+ white-space: nowrap;
7920
+ width: 1.2em;
7921
+ }
7922
+ .ql-editor li:not(.ql-direction-rtl)::before {
7923
+ margin-left: -1.5em;
7924
+ margin-right: 0.3em;
7925
+ text-align: right;
7926
+ }
7927
+ .ql-editor li.ql-direction-rtl::before {
7928
+ margin-left: 0.3em;
7929
+ margin-right: -1.5em;
7930
+ }
7931
+ .ql-editor ol li:not(.ql-direction-rtl),
7932
+ .ql-editor ul li:not(.ql-direction-rtl) {
7933
+ padding-left: 1.5em;
7934
+ }
7935
+ .ql-editor ol li.ql-direction-rtl,
7936
+ .ql-editor ul li.ql-direction-rtl {
7937
+ padding-right: 1.5em;
7938
+ }
7939
+ .ql-editor ol li {
7940
+ counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
7941
+ counter-increment: list-0;
7942
+ }
7943
+ .ql-editor ol li:before {
7944
+ content: counter(list-0, decimal) '. ';
7945
+ }
7946
+ .ql-editor ol li.ql-indent-1 {
7947
+ counter-increment: list-1;
7948
+ }
7949
+ .ql-editor ol li.ql-indent-1:before {
7950
+ content: counter(list-1, lower-alpha) '. ';
7951
+ }
7952
+ .ql-editor ol li.ql-indent-1 {
7953
+ counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
7954
+ }
7955
+ .ql-editor ol li.ql-indent-2 {
7956
+ counter-increment: list-2;
7957
+ }
7958
+ .ql-editor ol li.ql-indent-2:before {
7959
+ content: counter(list-2, lower-roman) '. ';
7960
+ }
7961
+ .ql-editor ol li.ql-indent-2 {
7962
+ counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
7963
+ }
7964
+ .ql-editor ol li.ql-indent-3 {
7965
+ counter-increment: list-3;
7966
+ }
7967
+ .ql-editor ol li.ql-indent-3:before {
7968
+ content: counter(list-3, decimal) '. ';
7969
+ }
7970
+ .ql-editor ol li.ql-indent-3 {
7971
+ counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
7972
+ }
7973
+ .ql-editor ol li.ql-indent-4 {
7974
+ counter-increment: list-4;
7975
+ }
7976
+ .ql-editor ol li.ql-indent-4:before {
7977
+ content: counter(list-4, lower-alpha) '. ';
7978
+ }
7979
+ .ql-editor ol li.ql-indent-4 {
7980
+ counter-reset: list-5 list-6 list-7 list-8 list-9;
7981
+ }
7982
+ .ql-editor ol li.ql-indent-5 {
7983
+ counter-increment: list-5;
7984
+ }
7985
+ .ql-editor ol li.ql-indent-5:before {
7986
+ content: counter(list-5, lower-roman) '. ';
7987
+ }
7988
+ .ql-editor ol li.ql-indent-5 {
7989
+ counter-reset: list-6 list-7 list-8 list-9;
7990
+ }
7991
+ .ql-editor ol li.ql-indent-6 {
7992
+ counter-increment: list-6;
7993
+ }
7994
+ .ql-editor ol li.ql-indent-6:before {
7995
+ content: counter(list-6, decimal) '. ';
7996
+ }
7997
+ .ql-editor ol li.ql-indent-6 {
7998
+ counter-reset: list-7 list-8 list-9;
7999
+ }
8000
+ .ql-editor ol li.ql-indent-7 {
8001
+ counter-increment: list-7;
8002
+ }
8003
+ .ql-editor ol li.ql-indent-7:before {
8004
+ content: counter(list-7, lower-alpha) '. ';
8005
+ }
8006
+ .ql-editor ol li.ql-indent-7 {
8007
+ counter-reset: list-8 list-9;
8008
+ }
8009
+ .ql-editor ol li.ql-indent-8 {
8010
+ counter-increment: list-8;
8011
+ }
8012
+ .ql-editor ol li.ql-indent-8:before {
8013
+ content: counter(list-8, lower-roman) '. ';
8014
+ }
8015
+ .ql-editor ol li.ql-indent-8 {
8016
+ counter-reset: list-9;
8017
+ }
8018
+ .ql-editor ol li.ql-indent-9 {
8019
+ counter-increment: list-9;
8020
+ }
8021
+ .ql-editor ol li.ql-indent-9:before {
8022
+ content: counter(list-9, decimal) '. ';
8023
+ }
8024
+ .ql-editor .ql-indent-1:not(.ql-direction-rtl) {
8025
+ padding-left: 3em;
8026
+ }
8027
+ .ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
8028
+ padding-left: 4.5em;
8029
+ }
8030
+ .ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
8031
+ padding-right: 3em;
8032
+ }
8033
+ .ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
8034
+ padding-right: 4.5em;
8035
+ }
8036
+ .ql-editor .ql-indent-2:not(.ql-direction-rtl) {
8037
+ padding-left: 6em;
8038
+ }
8039
+ .ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
8040
+ padding-left: 7.5em;
8041
+ }
8042
+ .ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
8043
+ padding-right: 6em;
8044
+ }
8045
+ .ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
8046
+ padding-right: 7.5em;
8047
+ }
8048
+ .ql-editor .ql-indent-3:not(.ql-direction-rtl) {
8049
+ padding-left: 9em;
8050
+ }
8051
+ .ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
8052
+ padding-left: 10.5em;
8053
+ }
8054
+ .ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
8055
+ padding-right: 9em;
8056
+ }
8057
+ .ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
8058
+ padding-right: 10.5em;
8059
+ }
8060
+ .ql-editor .ql-indent-4:not(.ql-direction-rtl) {
8061
+ padding-left: 12em;
8062
+ }
8063
+ .ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
8064
+ padding-left: 13.5em;
8065
+ }
8066
+ .ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
8067
+ padding-right: 12em;
8068
+ }
8069
+ .ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
8070
+ padding-right: 13.5em;
8071
+ }
8072
+ .ql-editor .ql-indent-5:not(.ql-direction-rtl) {
8073
+ padding-left: 15em;
8074
+ }
8075
+ .ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
8076
+ padding-left: 16.5em;
8077
+ }
8078
+ .ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
8079
+ padding-right: 15em;
8080
+ }
8081
+ .ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
8082
+ padding-right: 16.5em;
8083
+ }
8084
+ .ql-editor .ql-indent-6:not(.ql-direction-rtl) {
8085
+ padding-left: 18em;
8086
+ }
8087
+ .ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
8088
+ padding-left: 19.5em;
8089
+ }
8090
+ .ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
8091
+ padding-right: 18em;
8092
+ }
8093
+ .ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
8094
+ padding-right: 19.5em;
8095
+ }
8096
+ .ql-editor .ql-indent-7:not(.ql-direction-rtl) {
8097
+ padding-left: 21em;
8098
+ }
8099
+ .ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
8100
+ padding-left: 22.5em;
8101
+ }
8102
+ .ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
8103
+ padding-right: 21em;
8104
+ }
8105
+ .ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
8106
+ padding-right: 22.5em;
8107
+ }
8108
+ .ql-editor .ql-indent-8:not(.ql-direction-rtl) {
8109
+ padding-left: 24em;
8110
+ }
8111
+ .ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
8112
+ padding-left: 25.5em;
8113
+ }
8114
+ .ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
8115
+ padding-right: 24em;
8116
+ }
8117
+ .ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
8118
+ padding-right: 25.5em;
8119
+ }
8120
+ .ql-editor .ql-indent-9:not(.ql-direction-rtl) {
8121
+ padding-left: 27em;
8122
+ }
8123
+ .ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
8124
+ padding-left: 28.5em;
8125
+ }
8126
+ .ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
8127
+ padding-right: 27em;
8128
+ }
8129
+ .ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
8130
+ padding-right: 28.5em;
8131
+ }
8132
+ .ql-editor .ql-video {
8133
+ display: block;
8134
+ max-width: 100%;
8135
+ }
8136
+ .ql-editor .ql-video.ql-align-center {
8137
+ margin: 0 auto;
8138
+ }
8139
+ .ql-editor .ql-video.ql-align-right {
8140
+ margin: 0 0 0 auto;
8141
+ }
8142
+ .ql-editor .ql-bg-black {
8143
+ background-color: #000;
8144
+ }
8145
+ .ql-editor .ql-bg-red {
8146
+ background-color: #e60000;
8147
+ }
8148
+ .ql-editor .ql-bg-orange {
8149
+ background-color: #f90;
8150
+ }
8151
+ .ql-editor .ql-bg-yellow {
8152
+ background-color: #ff0;
8153
+ }
8154
+ .ql-editor .ql-bg-green {
8155
+ background-color: #008a00;
8156
+ }
8157
+ .ql-editor .ql-bg-blue {
8158
+ background-color: #06c;
8159
+ }
8160
+ .ql-editor .ql-bg-purple {
8161
+ background-color: #93f;
8162
+ }
8163
+ .ql-editor .ql-color-white {
8164
+ color: #fff;
8165
+ }
8166
+ .ql-editor .ql-color-red {
8167
+ color: #e60000;
8168
+ }
8169
+ .ql-editor .ql-color-orange {
8170
+ color: #f90;
8171
+ }
8172
+ .ql-editor .ql-color-yellow {
8173
+ color: #ff0;
8174
+ }
8175
+ .ql-editor .ql-color-green {
8176
+ color: #008a00;
8177
+ }
8178
+ .ql-editor .ql-color-blue {
8179
+ color: #06c;
8180
+ }
8181
+ .ql-editor .ql-color-purple {
8182
+ color: #93f;
8183
+ }
8184
+ .ql-editor .ql-font-serif {
8185
+ font-family: Georgia, Times New Roman, serif;
8186
+ }
8187
+ .ql-editor .ql-font-monospace {
8188
+ font-family: Monaco, Courier New, monospace;
8189
+ }
8190
+ .ql-editor .ql-size-small {
8191
+ font-size: 0.75em;
8192
+ }
8193
+ .ql-editor .ql-size-large {
8194
+ font-size: 1.5em;
8195
+ }
8196
+ .ql-editor .ql-size-huge {
8197
+ font-size: 2.5em;
8198
+ }
8199
+ .ql-editor .ql-direction-rtl {
8200
+ direction: rtl;
8201
+ text-align: inherit;
8202
+ }
8203
+ .ql-editor .ql-align-center {
8204
+ text-align: center;
8205
+ }
8206
+ .ql-editor .ql-align-justify {
8207
+ text-align: justify;
8208
+ }
8209
+ .ql-editor .ql-align-right {
8210
+ text-align: right;
8211
+ }
8212
+ .ql-editor.ql-blank::before {
8213
+ color: rgba(0,0,0,0.6);
8214
+ content: attr(data-placeholder);
8215
+ font-style: italic;
8216
+ left: 15px;
8217
+ pointer-events: none;
8218
+ position: absolute;
8219
+ right: 15px;
8220
+ }
8221
+ .ql-snow.ql-toolbar:after,
8222
+ .ql-snow .ql-toolbar:after {
8223
+ clear: both;
8224
+ content: '';
8225
+ display: table;
8226
+ }
8227
+ .ql-snow.ql-toolbar button,
8228
+ .ql-snow .ql-toolbar button {
8229
+ background: none;
8230
+ border: none;
8231
+ cursor: pointer;
8232
+ display: inline-block;
8233
+ float: left;
8234
+ height: 24px;
8235
+ padding: 3px 5px;
8236
+ width: 28px;
8237
+ }
8238
+ .ql-snow.ql-toolbar button svg,
8239
+ .ql-snow .ql-toolbar button svg {
8240
+ float: left;
8241
+ height: 100%;
8242
+ }
8243
+ .ql-snow.ql-toolbar button:active:hover,
8244
+ .ql-snow .ql-toolbar button:active:hover {
8245
+ outline: none;
8246
+ }
8247
+ .ql-snow.ql-toolbar input.ql-image[type=file],
8248
+ .ql-snow .ql-toolbar input.ql-image[type=file] {
8249
+ display: none;
8250
+ }
8251
+ .ql-snow.ql-toolbar button:hover,
8252
+ .ql-snow .ql-toolbar button:hover,
8253
+ .ql-snow.ql-toolbar button:focus,
8254
+ .ql-snow .ql-toolbar button:focus,
8255
+ .ql-snow.ql-toolbar button.ql-active,
8256
+ .ql-snow .ql-toolbar button.ql-active,
8257
+ .ql-snow.ql-toolbar .ql-picker-label:hover,
8258
+ .ql-snow .ql-toolbar .ql-picker-label:hover,
8259
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active,
8260
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active,
8261
+ .ql-snow.ql-toolbar .ql-picker-item:hover,
8262
+ .ql-snow .ql-toolbar .ql-picker-item:hover,
8263
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected,
8264
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
8265
+ color: #06c;
8266
+ }
8267
+ .ql-snow.ql-toolbar button:hover .ql-fill,
8268
+ .ql-snow .ql-toolbar button:hover .ql-fill,
8269
+ .ql-snow.ql-toolbar button:focus .ql-fill,
8270
+ .ql-snow .ql-toolbar button:focus .ql-fill,
8271
+ .ql-snow.ql-toolbar button.ql-active .ql-fill,
8272
+ .ql-snow .ql-toolbar button.ql-active .ql-fill,
8273
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
8274
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
8275
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
8276
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
8277
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
8278
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
8279
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
8280
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
8281
+ .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
8282
+ .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
8283
+ .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
8284
+ .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
8285
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
8286
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
8287
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
8288
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
8289
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
8290
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
8291
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
8292
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
8293
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
8294
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
8295
+ fill: #06c;
8296
+ }
8297
+ .ql-snow.ql-toolbar button:hover .ql-stroke,
8298
+ .ql-snow .ql-toolbar button:hover .ql-stroke,
8299
+ .ql-snow.ql-toolbar button:focus .ql-stroke,
8300
+ .ql-snow .ql-toolbar button:focus .ql-stroke,
8301
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke,
8302
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke,
8303
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
8304
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
8305
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
8306
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
8307
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
8308
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
8309
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
8310
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
8311
+ .ql-snow.ql-toolbar button:hover .ql-stroke-miter,
8312
+ .ql-snow .ql-toolbar button:hover .ql-stroke-miter,
8313
+ .ql-snow.ql-toolbar button:focus .ql-stroke-miter,
8314
+ .ql-snow .ql-toolbar button:focus .ql-stroke-miter,
8315
+ .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
8316
+ .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
8317
+ .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
8318
+ .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
8319
+ .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
8320
+ .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
8321
+ .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
8322
+ .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
8323
+ .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
8324
+ .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
8325
+ stroke: #06c;
8326
+ }
8327
+ @media (pointer: coarse) {
8328
+ .ql-snow.ql-toolbar button:hover:not(.ql-active),
8329
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) {
8330
+ color: #444;
8331
+ }
8332
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
8333
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
8334
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
8335
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
8336
+ fill: #444;
8337
+ }
8338
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
8339
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
8340
+ .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
8341
+ .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
8342
+ stroke: #444;
8343
+ }
8344
+ }
8345
+ .ql-snow {
8346
+ box-sizing: border-box;
8347
+ }
8348
+ .ql-snow * {
8349
+ box-sizing: border-box;
8350
+ }
8351
+ .ql-snow .ql-hidden {
8352
+ display: none;
8353
+ }
8354
+ .ql-snow .ql-out-bottom,
8355
+ .ql-snow .ql-out-top {
8356
+ visibility: hidden;
8357
+ }
8358
+ .ql-snow .ql-tooltip {
8359
+ position: absolute;
8360
+ transform: translateY(10px);
8361
+ }
8362
+ .ql-snow .ql-tooltip a {
8363
+ cursor: pointer;
8364
+ text-decoration: none;
8365
+ }
8366
+ .ql-snow .ql-tooltip.ql-flip {
8367
+ transform: translateY(-10px);
8368
+ }
8369
+ .ql-snow .ql-formats {
8370
+ display: inline-block;
8371
+ vertical-align: middle;
8372
+ }
8373
+ .ql-snow .ql-formats:after {
8374
+ clear: both;
8375
+ content: '';
8376
+ display: table;
8377
+ }
8378
+ .ql-snow .ql-stroke {
8379
+ fill: none;
8380
+ stroke: #444;
8381
+ stroke-linecap: round;
8382
+ stroke-linejoin: round;
8383
+ stroke-width: 2;
8384
+ }
8385
+ .ql-snow .ql-stroke-miter {
8386
+ fill: none;
8387
+ stroke: #444;
8388
+ stroke-miterlimit: 10;
8389
+ stroke-width: 2;
8390
+ }
8391
+ .ql-snow .ql-fill,
8392
+ .ql-snow .ql-stroke.ql-fill {
8393
+ fill: #444;
8394
+ }
8395
+ .ql-snow .ql-empty {
8396
+ fill: none;
8397
+ }
8398
+ .ql-snow .ql-even {
8399
+ fill-rule: evenodd;
8400
+ }
8401
+ .ql-snow .ql-thin,
8402
+ .ql-snow .ql-stroke.ql-thin {
8403
+ stroke-width: 1;
8404
+ }
8405
+ .ql-snow .ql-transparent {
8406
+ opacity: 0.4;
8407
+ }
8408
+ .ql-snow .ql-direction svg:last-child {
8409
+ display: none;
8410
+ }
8411
+ .ql-snow .ql-direction.ql-active svg:last-child {
8412
+ display: inline;
8413
+ }
8414
+ .ql-snow .ql-direction.ql-active svg:first-child {
8415
+ display: none;
8416
+ }
8417
+ .ql-snow .ql-editor h1 {
8418
+ font-size: 2em;
8419
+ }
8420
+ .ql-snow .ql-editor h2 {
8421
+ font-size: 1.5em;
8422
+ }
8423
+ .ql-snow .ql-editor h3 {
8424
+ font-size: 1.17em;
8425
+ }
8426
+ .ql-snow .ql-editor h4 {
8427
+ font-size: 1em;
8428
+ }
8429
+ .ql-snow .ql-editor h5 {
8430
+ font-size: 0.83em;
8431
+ }
8432
+ .ql-snow .ql-editor h6 {
8433
+ font-size: 0.67em;
8434
+ }
8435
+ .ql-snow .ql-editor a {
8436
+ text-decoration: underline;
8437
+ }
8438
+ .ql-snow .ql-editor blockquote {
8439
+ border-left: 4px solid #ccc;
8440
+ margin-bottom: 5px;
8441
+ margin-top: 5px;
8442
+ padding-left: 16px;
8443
+ }
8444
+ .ql-snow .ql-editor code,
8445
+ .ql-snow .ql-editor pre {
8446
+ background-color: #f0f0f0;
8447
+ border-radius: 3px;
8448
+ }
8449
+ .ql-snow .ql-editor pre {
8450
+ white-space: pre-wrap;
8451
+ margin-bottom: 5px;
8452
+ margin-top: 5px;
8453
+ padding: 5px 10px;
8454
+ }
8455
+ .ql-snow .ql-editor code {
8456
+ font-size: 85%;
8457
+ padding: 2px 4px;
8458
+ }
8459
+ .ql-snow .ql-editor pre.ql-syntax {
8460
+ background-color: #23241f;
8461
+ color: #f8f8f2;
8462
+ overflow: visible;
8463
+ }
8464
+ .ql-snow .ql-editor img {
8465
+ max-width: 100%;
8466
+ }
8467
+ .ql-snow .ql-picker {
8468
+ color: #444;
8469
+ display: inline-block;
8470
+ float: left;
8471
+ font-size: 14px;
8472
+ font-weight: 500;
8473
+ height: 24px;
8474
+ position: relative;
8475
+ vertical-align: middle;
8476
+ }
8477
+ .ql-snow .ql-picker-label {
8478
+ cursor: pointer;
8479
+ display: inline-block;
8480
+ height: 100%;
8481
+ padding-left: 8px;
8482
+ padding-right: 2px;
8483
+ position: relative;
8484
+ width: 100%;
8485
+ }
8486
+ .ql-snow .ql-picker-label::before {
8487
+ display: inline-block;
8488
+ line-height: 22px;
8489
+ }
8490
+ .ql-snow .ql-picker-options {
8491
+ background-color: #fff;
8492
+ display: none;
8493
+ min-width: 100%;
8494
+ padding: 4px 8px;
8495
+ position: absolute;
8496
+ white-space: nowrap;
8497
+ }
8498
+ .ql-snow .ql-picker-options .ql-picker-item {
8499
+ cursor: pointer;
8500
+ display: block;
8501
+ padding-bottom: 5px;
8502
+ padding-top: 5px;
8503
+ }
8504
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label {
8505
+ color: #ccc;
8506
+ z-index: 2;
8507
+ }
8508
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
8509
+ fill: #ccc;
8510
+ }
8511
+ .ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
8512
+ stroke: #ccc;
8513
+ }
8514
+ .ql-snow .ql-picker.ql-expanded .ql-picker-options {
8515
+ display: block;
8516
+ margin-top: -1px;
8517
+ top: 100%;
8518
+ z-index: 1;
8519
+ }
8520
+ .ql-snow .ql-color-picker,
8521
+ .ql-snow .ql-icon-picker {
8522
+ width: 28px;
8523
+ }
8524
+ .ql-snow .ql-color-picker .ql-picker-label,
8525
+ .ql-snow .ql-icon-picker .ql-picker-label {
8526
+ padding: 2px 4px;
8527
+ }
8528
+ .ql-snow .ql-color-picker .ql-picker-label svg,
8529
+ .ql-snow .ql-icon-picker .ql-picker-label svg {
8530
+ right: 4px;
8531
+ }
8532
+ .ql-snow .ql-icon-picker .ql-picker-options {
8533
+ padding: 4px 0px;
8534
+ }
8535
+ .ql-snow .ql-icon-picker .ql-picker-item {
8536
+ height: 24px;
8537
+ width: 24px;
8538
+ padding: 2px 4px;
8539
+ }
8540
+ .ql-snow .ql-color-picker .ql-picker-options {
8541
+ padding: 3px 5px;
8542
+ width: 152px;
8543
+ }
8544
+ .ql-snow .ql-color-picker .ql-picker-item {
8545
+ border: 1px solid transparent;
8546
+ float: left;
8547
+ height: 16px;
8548
+ margin: 2px;
8549
+ padding: 0px;
8550
+ width: 16px;
8551
+ }
8552
+ .ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
8553
+ position: absolute;
8554
+ margin-top: -9px;
8555
+ right: 0;
8556
+ top: 50%;
8557
+ width: 18px;
8558
+ }
8559
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
8560
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
8561
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
8562
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
8563
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
8564
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
8565
+ content: attr(data-label);
8566
+ }
8567
+ .ql-snow .ql-picker.ql-header {
8568
+ width: 98px;
8569
+ }
8570
+ .ql-snow .ql-picker.ql-header .ql-picker-label::before,
8571
+ .ql-snow .ql-picker.ql-header .ql-picker-item::before {
8572
+ content: 'Normal';
8573
+ }
8574
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
8575
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
8576
+ content: 'Heading 1';
8577
+ }
8578
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
8579
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
8580
+ content: 'Heading 2';
8581
+ }
8582
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
8583
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
8584
+ content: 'Heading 3';
8585
+ }
8586
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
8587
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
8588
+ content: 'Heading 4';
8589
+ }
8590
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
8591
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
8592
+ content: 'Heading 5';
8593
+ }
8594
+ .ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
8595
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
8596
+ content: 'Heading 6';
8597
+ }
8598
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
8599
+ font-size: 2em;
8600
+ }
8601
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
8602
+ font-size: 1.5em;
8603
+ }
8604
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
8605
+ font-size: 1.17em;
8606
+ }
8607
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
8608
+ font-size: 1em;
8609
+ }
8610
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
8611
+ font-size: 0.83em;
8612
+ }
8613
+ .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
8614
+ font-size: 0.67em;
8615
+ }
8616
+ .ql-snow .ql-picker.ql-font {
8617
+ width: 108px;
8618
+ }
8619
+ .ql-snow .ql-picker.ql-font .ql-picker-label::before,
8620
+ .ql-snow .ql-picker.ql-font .ql-picker-item::before {
8621
+ content: 'Sans Serif';
8622
+ }
8623
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
8624
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
8625
+ content: 'Serif';
8626
+ }
8627
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
8628
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
8629
+ content: 'Monospace';
8630
+ }
8631
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
8632
+ font-family: Georgia, Times New Roman, serif;
8633
+ }
8634
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
8635
+ font-family: Monaco, Courier New, monospace;
8636
+ }
8637
+ .ql-snow .ql-picker.ql-size {
8638
+ width: 98px;
8639
+ }
8640
+ .ql-snow .ql-picker.ql-size .ql-picker-label::before,
8641
+ .ql-snow .ql-picker.ql-size .ql-picker-item::before {
8642
+ content: 'Normal';
8643
+ }
8644
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
8645
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
8646
+ content: 'Small';
8647
+ }
8648
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
8649
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
8650
+ content: 'Large';
8651
+ }
8652
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
8653
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
8654
+ content: 'Huge';
8655
+ }
8656
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
8657
+ font-size: 10px;
8658
+ }
8659
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
8660
+ font-size: 18px;
8661
+ }
8662
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
8663
+ font-size: 32px;
8664
+ }
8665
+ .ql-snow .ql-color-picker.ql-background .ql-picker-item {
8666
+ background-color: #fff;
8667
+ }
8668
+ .ql-snow .ql-color-picker.ql-color .ql-picker-item {
8669
+ background-color: #000;
8670
+ }
8671
+ .ql-toolbar.ql-snow {
8672
+ border: 1px solid #ccc;
8673
+ box-sizing: border-box;
8674
+ font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
8675
+ padding: 8px;
8676
+ }
8677
+ .ql-toolbar.ql-snow .ql-formats {
8678
+ margin-right: 15px;
8679
+ }
8680
+ .ql-toolbar.ql-snow .ql-picker-label {
8681
+ border: 1px solid transparent;
8682
+ }
8683
+ .ql-toolbar.ql-snow .ql-picker-options {
8684
+ border: 1px solid transparent;
8685
+ box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
8686
+ }
8687
+ .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
8688
+ border-color: #ccc;
8689
+ }
8690
+ .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
8691
+ border-color: #ccc;
8692
+ }
8693
+ .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
8694
+ .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
8695
+ border-color: #000;
8696
+ }
8697
+ .ql-toolbar.ql-snow + .ql-container.ql-snow {
8698
+ border-top: 0px;
8699
+ }
8700
+ .ql-snow .ql-tooltip {
8701
+ background-color: #fff;
8702
+ border: 1px solid #ccc;
8703
+ box-shadow: 0px 0px 5px #ddd;
8704
+ color: #444;
8705
+ padding: 5px 12px;
8706
+ white-space: nowrap;
8707
+ }
8708
+ .ql-snow .ql-tooltip::before {
8709
+ content: "Visit URL:";
8710
+ line-height: 26px;
8711
+ margin-right: 8px;
8712
+ }
8713
+ .ql-snow .ql-tooltip input[type=text] {
8714
+ display: none;
8715
+ border: 1px solid #ccc;
8716
+ font-size: 13px;
8717
+ height: 26px;
8718
+ margin: 0px;
8719
+ padding: 3px 5px;
8720
+ width: 170px;
8721
+ }
8722
+ .ql-snow .ql-tooltip a.ql-preview {
8723
+ display: inline-block;
8724
+ max-width: 200px;
8725
+ overflow-x: hidden;
8726
+ text-overflow: ellipsis;
8727
+ vertical-align: top;
8728
+ }
8729
+ .ql-snow .ql-tooltip a.ql-action::after {
8730
+ border-right: 1px solid #ccc;
8731
+ content: 'Edit';
8732
+ margin-left: 16px;
8733
+ padding-right: 8px;
8734
+ }
8735
+ .ql-snow .ql-tooltip a.ql-remove::before {
8736
+ content: 'Remove';
8737
+ margin-left: 8px;
8738
+ }
8739
+ .ql-snow .ql-tooltip a {
8740
+ line-height: 26px;
8741
+ }
8742
+ .ql-snow .ql-tooltip.ql-editing a.ql-preview,
8743
+ .ql-snow .ql-tooltip.ql-editing a.ql-remove {
8744
+ display: none;
8745
+ }
8746
+ .ql-snow .ql-tooltip.ql-editing input[type=text] {
8747
+ display: inline-block;
8748
+ }
8749
+ .ql-snow .ql-tooltip.ql-editing a.ql-action::after {
8750
+ border-right: 0px;
8751
+ content: 'Save';
8752
+ padding-right: 0px;
8753
+ }
8754
+ .ql-snow .ql-tooltip[data-mode=link]::before {
8755
+ content: "Enter link:";
8756
+ }
8757
+ .ql-snow .ql-tooltip[data-mode=formula]::before {
8758
+ content: "Enter formula:";
8759
+ }
8760
+ .ql-snow .ql-tooltip[data-mode=video]::before {
8761
+ content: "Enter video:";
8762
+ }
8763
+ .ql-snow a {
8764
+ color: #06c;
8765
+ }
8766
+ .ql-container.ql-snow {
8767
+ border: 1px solid #ccc;
8768
+ }