funuicss 3.3.8 → 3.3.10

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