identity-admin-ui 1.8.0 → 1.8.2
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/lib/cjs/index.css +906 -0
- package/lib/cjs/index.js +18 -13
- package/lib/cjs/types/components/DashboardFormFields/RichTextField.d.ts +10 -0
- package/lib/cjs/types/components/DashboardShowFields/Fields/RichText_II.d.ts +2 -0
- package/lib/cjs/types/components/DashboardShowFields/IShowField.d.ts +2 -0
- package/lib/cjs/types/components/hook-form/RHFRichText/RHFRichText.d.ts +7 -0
- package/lib/esm/index.css +906 -0
- package/lib/esm/index.js +18 -13
- package/lib/esm/types/components/DashboardFormFields/RichTextField.d.ts +10 -0
- package/lib/esm/types/components/DashboardShowFields/Fields/RichText_II.d.ts +2 -0
- package/lib/esm/types/components/DashboardShowFields/IShowField.d.ts +2 -0
- package/lib/esm/types/components/hook-form/RHFRichText/RHFRichText.d.ts +7 -0
- package/package.json +5 -1
package/lib/esm/index.css
CHANGED
|
@@ -5,6 +5,22 @@
|
|
|
5
5
|
Maintainer: @highlightjs/core-team
|
|
6
6
|
Version: 2021.09.0
|
|
7
7
|
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#ccc;background:#2d2d2d}.hljs ::selection,.hljs::selection{background-color:#515151;color:#ccc}.hljs-comment{color:#999}.hljs-tag{color:#b4b7b4}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#ccc}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#f2777a}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#f99157}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#fc6}.hljs-strong{font-weight:700;color:#fc6}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#9c9}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#6cc}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#69c}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#c9c}.hljs-emphasis{color:#c9c;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#a3685a}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
|
|
8
|
+
.editor {
|
|
9
|
+
padding-left: 20px;
|
|
10
|
+
padding-right: 20px;
|
|
11
|
+
}
|
|
12
|
+
.toolBar {
|
|
13
|
+
border-style: solid;
|
|
14
|
+
border-width: 0.1px;
|
|
15
|
+
border-radius: 10px;
|
|
16
|
+
border-color:lightgray;
|
|
17
|
+
}
|
|
18
|
+
.wrapper {
|
|
19
|
+
border-style: solid;
|
|
20
|
+
border-width: 0.1px;
|
|
21
|
+
border-radius: 10px;
|
|
22
|
+
border-color:lightgray;
|
|
23
|
+
}
|
|
8
24
|
/*!
|
|
9
25
|
* Quill Editor v1.3.7
|
|
10
26
|
* https://quilljs.com/
|
|
@@ -950,3 +966,893 @@
|
|
|
950
966
|
.ql-container.ql-snow {
|
|
951
967
|
border: 1px solid #ccc;
|
|
952
968
|
}
|
|
969
|
+
|
|
970
|
+
.rdw-option-wrapper {
|
|
971
|
+
border: 1px solid #F1F1F1;
|
|
972
|
+
padding: 5px;
|
|
973
|
+
min-width: 25px;
|
|
974
|
+
height: 20px;
|
|
975
|
+
border-radius: 2px;
|
|
976
|
+
margin: 0 4px;
|
|
977
|
+
display: flex;
|
|
978
|
+
justify-content: center;
|
|
979
|
+
align-items: center;
|
|
980
|
+
cursor: pointer;
|
|
981
|
+
background: white;
|
|
982
|
+
text-transform: capitalize;
|
|
983
|
+
}
|
|
984
|
+
.rdw-option-wrapper:hover {
|
|
985
|
+
box-shadow: 1px 1px 0px #BFBDBD;
|
|
986
|
+
}
|
|
987
|
+
.rdw-option-wrapper:active {
|
|
988
|
+
box-shadow: 1px 1px 0px #BFBDBD inset;
|
|
989
|
+
}
|
|
990
|
+
.rdw-option-active {
|
|
991
|
+
box-shadow: 1px 1px 0px #BFBDBD inset;
|
|
992
|
+
}
|
|
993
|
+
.rdw-option-disabled {
|
|
994
|
+
opacity: 0.3;
|
|
995
|
+
cursor: default;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.rdw-dropdown-wrapper {
|
|
999
|
+
height: 30px;
|
|
1000
|
+
background: white;
|
|
1001
|
+
cursor: pointer;
|
|
1002
|
+
border: 1px solid #F1F1F1;
|
|
1003
|
+
border-radius: 2px;
|
|
1004
|
+
margin: 0 3px;
|
|
1005
|
+
text-transform: capitalize;
|
|
1006
|
+
background: white;
|
|
1007
|
+
}
|
|
1008
|
+
.rdw-dropdown-wrapper:focus {
|
|
1009
|
+
outline: none;
|
|
1010
|
+
}
|
|
1011
|
+
.rdw-dropdown-wrapper:hover {
|
|
1012
|
+
box-shadow: 1px 1px 0px #BFBDBD;
|
|
1013
|
+
background-color: #FFFFFF;
|
|
1014
|
+
}
|
|
1015
|
+
.rdw-dropdown-wrapper:active {
|
|
1016
|
+
box-shadow: 1px 1px 0px #BFBDBD inset;
|
|
1017
|
+
}
|
|
1018
|
+
.rdw-dropdown-carettoopen {
|
|
1019
|
+
height: 0px;
|
|
1020
|
+
width: 0px;
|
|
1021
|
+
position: absolute;
|
|
1022
|
+
top: 35%;
|
|
1023
|
+
right: 10%;
|
|
1024
|
+
border-top: 6px solid black;
|
|
1025
|
+
border-left: 5px solid transparent;
|
|
1026
|
+
border-right: 5px solid transparent;
|
|
1027
|
+
}
|
|
1028
|
+
.rdw-dropdown-carettoclose {
|
|
1029
|
+
height: 0px;
|
|
1030
|
+
width: 0px;
|
|
1031
|
+
position: absolute;
|
|
1032
|
+
top: 35%;
|
|
1033
|
+
right: 10%;
|
|
1034
|
+
border-bottom: 6px solid black;
|
|
1035
|
+
border-left: 5px solid transparent;
|
|
1036
|
+
border-right: 5px solid transparent;
|
|
1037
|
+
}
|
|
1038
|
+
.rdw-dropdown-selectedtext {
|
|
1039
|
+
display: flex;
|
|
1040
|
+
position: relative;
|
|
1041
|
+
height: 100%;
|
|
1042
|
+
align-items: center;
|
|
1043
|
+
padding: 0 5px;
|
|
1044
|
+
}
|
|
1045
|
+
.rdw-dropdown-optionwrapper {
|
|
1046
|
+
z-index: 100;
|
|
1047
|
+
position: relative;
|
|
1048
|
+
border: 1px solid #F1F1F1;
|
|
1049
|
+
width: 98%;
|
|
1050
|
+
background: white;
|
|
1051
|
+
border-radius: 2px;
|
|
1052
|
+
margin: 0;
|
|
1053
|
+
padding: 0;
|
|
1054
|
+
max-height: 250px;
|
|
1055
|
+
overflow-y: scroll;
|
|
1056
|
+
}
|
|
1057
|
+
.rdw-dropdown-optionwrapper:hover {
|
|
1058
|
+
box-shadow: 1px 1px 0px #BFBDBD;
|
|
1059
|
+
background-color: #FFFFFF;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.rdw-dropdownoption-default {
|
|
1063
|
+
min-height: 25px;
|
|
1064
|
+
display: flex;
|
|
1065
|
+
align-items: center;
|
|
1066
|
+
padding: 0 5px;
|
|
1067
|
+
}
|
|
1068
|
+
.rdw-dropdownoption-highlighted {
|
|
1069
|
+
background: #F1F1F1;
|
|
1070
|
+
}
|
|
1071
|
+
.rdw-dropdownoption-active {
|
|
1072
|
+
background: #f5f5f5;
|
|
1073
|
+
}
|
|
1074
|
+
.rdw-dropdownoption-disabled {
|
|
1075
|
+
opacity: 0.3;
|
|
1076
|
+
cursor: default;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.rdw-inline-wrapper {
|
|
1080
|
+
display: flex;
|
|
1081
|
+
align-items: center;
|
|
1082
|
+
margin-bottom: 6px;
|
|
1083
|
+
flex-wrap: wrap
|
|
1084
|
+
}
|
|
1085
|
+
.rdw-inline-dropdown {
|
|
1086
|
+
width: 50px;
|
|
1087
|
+
}
|
|
1088
|
+
.rdw-inline-dropdownoption {
|
|
1089
|
+
height: 40px;
|
|
1090
|
+
display: flex;
|
|
1091
|
+
justify-content: center;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.rdw-block-wrapper {
|
|
1095
|
+
display: flex;
|
|
1096
|
+
align-items: center;
|
|
1097
|
+
margin-bottom: 6px;
|
|
1098
|
+
flex-wrap: wrap
|
|
1099
|
+
}
|
|
1100
|
+
.rdw-block-dropdown {
|
|
1101
|
+
width: 110px;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.rdw-fontsize-wrapper {
|
|
1105
|
+
display: flex;
|
|
1106
|
+
align-items: center;
|
|
1107
|
+
margin-bottom: 6px;
|
|
1108
|
+
flex-wrap: wrap
|
|
1109
|
+
}
|
|
1110
|
+
.rdw-fontsize-dropdown {
|
|
1111
|
+
min-width: 40px;
|
|
1112
|
+
}
|
|
1113
|
+
.rdw-fontsize-option {
|
|
1114
|
+
display: flex;
|
|
1115
|
+
justify-content: center;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.rdw-fontfamily-wrapper {
|
|
1119
|
+
display: flex;
|
|
1120
|
+
align-items: center;
|
|
1121
|
+
margin-bottom: 6px;
|
|
1122
|
+
flex-wrap: wrap
|
|
1123
|
+
}
|
|
1124
|
+
.rdw-fontfamily-dropdown {
|
|
1125
|
+
width: 115px;
|
|
1126
|
+
}
|
|
1127
|
+
.rdw-fontfamily-placeholder {
|
|
1128
|
+
white-space: nowrap;
|
|
1129
|
+
max-width: 90px;
|
|
1130
|
+
overflow: hidden;
|
|
1131
|
+
text-overflow: ellipsis;
|
|
1132
|
+
}
|
|
1133
|
+
.rdw-fontfamily-optionwrapper {
|
|
1134
|
+
width: 140px;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.rdw-list-wrapper {
|
|
1138
|
+
display: flex;
|
|
1139
|
+
align-items: center;
|
|
1140
|
+
margin-bottom: 6px;
|
|
1141
|
+
flex-wrap: wrap
|
|
1142
|
+
}
|
|
1143
|
+
.rdw-list-dropdown {
|
|
1144
|
+
width: 50px;
|
|
1145
|
+
z-index: 90;
|
|
1146
|
+
}
|
|
1147
|
+
.rdw-list-dropdownOption {
|
|
1148
|
+
height: 40px;
|
|
1149
|
+
display: flex;
|
|
1150
|
+
justify-content: center;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.rdw-text-align-wrapper {
|
|
1154
|
+
display: flex;
|
|
1155
|
+
align-items: center;
|
|
1156
|
+
margin-bottom: 6px;
|
|
1157
|
+
flex-wrap: wrap
|
|
1158
|
+
}
|
|
1159
|
+
.rdw-text-align-dropdown {
|
|
1160
|
+
width: 50px;
|
|
1161
|
+
z-index: 90;
|
|
1162
|
+
}
|
|
1163
|
+
.rdw-text-align-dropdownOption {
|
|
1164
|
+
height: 40px;
|
|
1165
|
+
display: flex;
|
|
1166
|
+
justify-content: center;
|
|
1167
|
+
}
|
|
1168
|
+
.rdw-right-aligned-block {
|
|
1169
|
+
text-align: right;
|
|
1170
|
+
}
|
|
1171
|
+
.rdw-left-aligned-block {
|
|
1172
|
+
text-align: left !important;
|
|
1173
|
+
}
|
|
1174
|
+
.rdw-center-aligned-block {
|
|
1175
|
+
text-align: center !important;
|
|
1176
|
+
}
|
|
1177
|
+
.rdw-justify-aligned-block {
|
|
1178
|
+
text-align: justify !important;
|
|
1179
|
+
}
|
|
1180
|
+
.rdw-right-aligned-block > div {
|
|
1181
|
+
display: inline-block;
|
|
1182
|
+
}
|
|
1183
|
+
.rdw-left-aligned-block > div {
|
|
1184
|
+
display: inline-block;
|
|
1185
|
+
}
|
|
1186
|
+
.rdw-center-aligned-block > div {
|
|
1187
|
+
display: inline-block;
|
|
1188
|
+
}
|
|
1189
|
+
.rdw-justify-aligned-block > div {
|
|
1190
|
+
display: inline-block;
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.rdw-colorpicker-wrapper {
|
|
1194
|
+
display: flex;
|
|
1195
|
+
align-items: center;
|
|
1196
|
+
margin-bottom: 6px;
|
|
1197
|
+
position: relative;
|
|
1198
|
+
flex-wrap: wrap
|
|
1199
|
+
}
|
|
1200
|
+
.rdw-colorpicker-modal {
|
|
1201
|
+
position: absolute;
|
|
1202
|
+
top: 35px;
|
|
1203
|
+
left: 5px;
|
|
1204
|
+
display: flex;
|
|
1205
|
+
flex-direction: column;
|
|
1206
|
+
width: 175px;
|
|
1207
|
+
height: 175px;
|
|
1208
|
+
border: 1px solid #F1F1F1;
|
|
1209
|
+
padding: 15px;
|
|
1210
|
+
border-radius: 2px;
|
|
1211
|
+
z-index: 100;
|
|
1212
|
+
background: white;
|
|
1213
|
+
box-shadow: 3px 3px 5px #BFBDBD;
|
|
1214
|
+
}
|
|
1215
|
+
.rdw-colorpicker-modal-header {
|
|
1216
|
+
display: flex;
|
|
1217
|
+
padding-bottom: 5px;
|
|
1218
|
+
}
|
|
1219
|
+
.rdw-colorpicker-modal-style-label {
|
|
1220
|
+
font-size: 15px;
|
|
1221
|
+
width: 50%;
|
|
1222
|
+
text-align: center;
|
|
1223
|
+
cursor: pointer;
|
|
1224
|
+
padding: 0 10px 5px;
|
|
1225
|
+
}
|
|
1226
|
+
.rdw-colorpicker-modal-style-label-active {
|
|
1227
|
+
border-bottom: 2px solid #0a66b7;
|
|
1228
|
+
}
|
|
1229
|
+
.rdw-colorpicker-modal-options {
|
|
1230
|
+
margin: 5px auto;
|
|
1231
|
+
display: flex;
|
|
1232
|
+
width: 100%;
|
|
1233
|
+
height: 100%;
|
|
1234
|
+
flex-wrap: wrap;
|
|
1235
|
+
overflow: scroll;
|
|
1236
|
+
}
|
|
1237
|
+
.rdw-colorpicker-cube {
|
|
1238
|
+
width: 22px;
|
|
1239
|
+
height: 22px;
|
|
1240
|
+
border: 1px solid #F1F1F1;
|
|
1241
|
+
}
|
|
1242
|
+
.rdw-colorpicker-option {
|
|
1243
|
+
margin: 3px;
|
|
1244
|
+
padding: 0;
|
|
1245
|
+
min-height: 20px;
|
|
1246
|
+
border: none;
|
|
1247
|
+
width: 22px;
|
|
1248
|
+
height: 22px;
|
|
1249
|
+
min-width: 22px;
|
|
1250
|
+
box-shadow: 1px 2px 1px #BFBDBD inset;
|
|
1251
|
+
}
|
|
1252
|
+
.rdw-colorpicker-option:hover {
|
|
1253
|
+
box-shadow: 1px 2px 1px #BFBDBD;
|
|
1254
|
+
}
|
|
1255
|
+
.rdw-colorpicker-option:active {
|
|
1256
|
+
box-shadow: -1px -2px 1px #BFBDBD;
|
|
1257
|
+
}
|
|
1258
|
+
.rdw-colorpicker-option-active {
|
|
1259
|
+
box-shadow: 0px 0px 2px 2px #BFBDBD;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.rdw-link-wrapper {
|
|
1263
|
+
display: flex;
|
|
1264
|
+
align-items: center;
|
|
1265
|
+
margin-bottom: 6px;
|
|
1266
|
+
position: relative;
|
|
1267
|
+
flex-wrap: wrap
|
|
1268
|
+
}
|
|
1269
|
+
.rdw-link-dropdown {
|
|
1270
|
+
width: 50px;
|
|
1271
|
+
}
|
|
1272
|
+
.rdw-link-dropdownOption {
|
|
1273
|
+
height: 40px;
|
|
1274
|
+
display: flex;
|
|
1275
|
+
justify-content: center;
|
|
1276
|
+
}
|
|
1277
|
+
.rdw-link-dropdownPlaceholder {
|
|
1278
|
+
margin-left: 8px;
|
|
1279
|
+
}
|
|
1280
|
+
.rdw-link-modal {
|
|
1281
|
+
position: absolute;
|
|
1282
|
+
top: 35px;
|
|
1283
|
+
left: 5px;
|
|
1284
|
+
display: flex;
|
|
1285
|
+
flex-direction: column;
|
|
1286
|
+
width: 235px;
|
|
1287
|
+
height: 205px;
|
|
1288
|
+
border: 1px solid #F1F1F1;
|
|
1289
|
+
padding: 15px;
|
|
1290
|
+
border-radius: 2px;
|
|
1291
|
+
z-index: 100;
|
|
1292
|
+
background: white;
|
|
1293
|
+
box-shadow: 3px 3px 5px #BFBDBD;
|
|
1294
|
+
}
|
|
1295
|
+
.rdw-link-modal-label {
|
|
1296
|
+
font-size: 15px;
|
|
1297
|
+
}
|
|
1298
|
+
.rdw-link-modal-input {
|
|
1299
|
+
margin-top: 5px;
|
|
1300
|
+
border-radius: 2px;
|
|
1301
|
+
border: 1px solid #F1F1F1;
|
|
1302
|
+
height: 25px;
|
|
1303
|
+
margin-bottom: 15px;
|
|
1304
|
+
padding: 0 5px;
|
|
1305
|
+
}
|
|
1306
|
+
.rdw-link-modal-input:focus {
|
|
1307
|
+
outline: none;
|
|
1308
|
+
}
|
|
1309
|
+
.rdw-link-modal-buttonsection {
|
|
1310
|
+
margin: 0 auto;
|
|
1311
|
+
}
|
|
1312
|
+
.rdw-link-modal-target-option {
|
|
1313
|
+
margin-bottom: 20px;
|
|
1314
|
+
}
|
|
1315
|
+
.rdw-link-modal-target-option > span {
|
|
1316
|
+
margin-left: 5px;
|
|
1317
|
+
}
|
|
1318
|
+
.rdw-link-modal-btn {
|
|
1319
|
+
margin-left: 10px;
|
|
1320
|
+
width: 75px;
|
|
1321
|
+
height: 30px;
|
|
1322
|
+
border: 1px solid #F1F1F1;
|
|
1323
|
+
border-radius: 2px;
|
|
1324
|
+
cursor: pointer;
|
|
1325
|
+
background: white;
|
|
1326
|
+
text-transform: capitalize;
|
|
1327
|
+
}
|
|
1328
|
+
.rdw-link-modal-btn:hover {
|
|
1329
|
+
box-shadow: 1px 1px 0px #BFBDBD;
|
|
1330
|
+
}
|
|
1331
|
+
.rdw-link-modal-btn:active {
|
|
1332
|
+
box-shadow: 1px 1px 0px #BFBDBD inset;
|
|
1333
|
+
}
|
|
1334
|
+
.rdw-link-modal-btn:focus {
|
|
1335
|
+
outline: none !important;
|
|
1336
|
+
}
|
|
1337
|
+
.rdw-link-modal-btn:disabled {
|
|
1338
|
+
background: #ece9e9;
|
|
1339
|
+
}
|
|
1340
|
+
.rdw-link-dropdownoption {
|
|
1341
|
+
height: 40px;
|
|
1342
|
+
display: flex;
|
|
1343
|
+
justify-content: center;
|
|
1344
|
+
}
|
|
1345
|
+
.rdw-history-dropdown {
|
|
1346
|
+
width: 50px;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.rdw-embedded-wrapper {
|
|
1350
|
+
display: flex;
|
|
1351
|
+
align-items: center;
|
|
1352
|
+
margin-bottom: 6px;
|
|
1353
|
+
position: relative;
|
|
1354
|
+
flex-wrap: wrap
|
|
1355
|
+
}
|
|
1356
|
+
.rdw-embedded-modal {
|
|
1357
|
+
position: absolute;
|
|
1358
|
+
top: 35px;
|
|
1359
|
+
left: 5px;
|
|
1360
|
+
display: flex;
|
|
1361
|
+
flex-direction: column;
|
|
1362
|
+
width: 235px;
|
|
1363
|
+
height: 180px;
|
|
1364
|
+
border: 1px solid #F1F1F1;
|
|
1365
|
+
padding: 15px;
|
|
1366
|
+
border-radius: 2px;
|
|
1367
|
+
z-index: 100;
|
|
1368
|
+
background: white;
|
|
1369
|
+
justify-content: space-between;
|
|
1370
|
+
box-shadow: 3px 3px 5px #BFBDBD;
|
|
1371
|
+
}
|
|
1372
|
+
.rdw-embedded-modal-header {
|
|
1373
|
+
font-size: 15px;
|
|
1374
|
+
display: flex;
|
|
1375
|
+
}
|
|
1376
|
+
.rdw-embedded-modal-header-option {
|
|
1377
|
+
width: 50%;
|
|
1378
|
+
cursor: pointer;
|
|
1379
|
+
display: flex;
|
|
1380
|
+
justify-content: center;
|
|
1381
|
+
align-items: center;
|
|
1382
|
+
flex-direction: column;
|
|
1383
|
+
}
|
|
1384
|
+
.rdw-embedded-modal-header-label {
|
|
1385
|
+
width: 95px;
|
|
1386
|
+
border: 1px solid #f1f1f1;
|
|
1387
|
+
margin-top: 5px;
|
|
1388
|
+
background: #6EB8D4;
|
|
1389
|
+
border-bottom: 2px solid #0a66b7;
|
|
1390
|
+
}
|
|
1391
|
+
.rdw-embedded-modal-link-section {
|
|
1392
|
+
display: flex;
|
|
1393
|
+
flex-direction: column;
|
|
1394
|
+
}
|
|
1395
|
+
.rdw-embedded-modal-link-input {
|
|
1396
|
+
width: 88%;
|
|
1397
|
+
height: 35px;
|
|
1398
|
+
margin: 10px 0;
|
|
1399
|
+
border: 1px solid #F1F1F1;
|
|
1400
|
+
border-radius: 2px;
|
|
1401
|
+
font-size: 15px;
|
|
1402
|
+
padding: 0 5px;
|
|
1403
|
+
}
|
|
1404
|
+
.rdw-embedded-modal-link-input-wrapper {
|
|
1405
|
+
display: flex;
|
|
1406
|
+
align-items: center;
|
|
1407
|
+
}
|
|
1408
|
+
.rdw-embedded-modal-link-input:focus {
|
|
1409
|
+
outline: none;
|
|
1410
|
+
}
|
|
1411
|
+
.rdw-embedded-modal-btn-section {
|
|
1412
|
+
display: flex;
|
|
1413
|
+
justify-content: center;
|
|
1414
|
+
}
|
|
1415
|
+
.rdw-embedded-modal-btn {
|
|
1416
|
+
margin: 0 3px;
|
|
1417
|
+
width: 75px;
|
|
1418
|
+
height: 30px;
|
|
1419
|
+
border: 1px solid #F1F1F1;
|
|
1420
|
+
border-radius: 2px;
|
|
1421
|
+
cursor: pointer;
|
|
1422
|
+
background: white;
|
|
1423
|
+
text-transform: capitalize;
|
|
1424
|
+
}
|
|
1425
|
+
.rdw-embedded-modal-btn:hover {
|
|
1426
|
+
box-shadow: 1px 1px 0px #BFBDBD;
|
|
1427
|
+
}
|
|
1428
|
+
.rdw-embedded-modal-btn:active {
|
|
1429
|
+
box-shadow: 1px 1px 0px #BFBDBD inset;
|
|
1430
|
+
}
|
|
1431
|
+
.rdw-embedded-modal-btn:focus {
|
|
1432
|
+
outline: none !important;
|
|
1433
|
+
}
|
|
1434
|
+
.rdw-embedded-modal-btn:disabled {
|
|
1435
|
+
background: #ece9e9;
|
|
1436
|
+
}
|
|
1437
|
+
.rdw-embedded-modal-size {
|
|
1438
|
+
align-items: center;
|
|
1439
|
+
display: flex;
|
|
1440
|
+
margin: 8px 0;
|
|
1441
|
+
justify-content: space-between;
|
|
1442
|
+
}
|
|
1443
|
+
.rdw-embedded-modal-size-input {
|
|
1444
|
+
width: 80%;
|
|
1445
|
+
height: 20px;
|
|
1446
|
+
border: 1px solid #F1F1F1;
|
|
1447
|
+
border-radius: 2px;
|
|
1448
|
+
font-size: 12px;
|
|
1449
|
+
}
|
|
1450
|
+
.rdw-embedded-modal-size-input:focus {
|
|
1451
|
+
outline: none;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.rdw-emoji-wrapper {
|
|
1455
|
+
display: flex;
|
|
1456
|
+
align-items: center;
|
|
1457
|
+
margin-bottom: 6px;
|
|
1458
|
+
position: relative;
|
|
1459
|
+
flex-wrap: wrap
|
|
1460
|
+
}
|
|
1461
|
+
.rdw-emoji-modal {
|
|
1462
|
+
overflow: auto;
|
|
1463
|
+
position: absolute;
|
|
1464
|
+
top: 35px;
|
|
1465
|
+
left: 5px;
|
|
1466
|
+
display: flex;
|
|
1467
|
+
flex-wrap: wrap;
|
|
1468
|
+
width: 235px;
|
|
1469
|
+
height: 180px;
|
|
1470
|
+
border: 1px solid #F1F1F1;
|
|
1471
|
+
padding: 15px;
|
|
1472
|
+
border-radius: 2px;
|
|
1473
|
+
z-index: 100;
|
|
1474
|
+
background: white;
|
|
1475
|
+
box-shadow: 3px 3px 5px #BFBDBD;
|
|
1476
|
+
}
|
|
1477
|
+
.rdw-emoji-icon {
|
|
1478
|
+
margin: 2.5px;
|
|
1479
|
+
height: 24px;
|
|
1480
|
+
width: 24px;
|
|
1481
|
+
cursor: pointer;
|
|
1482
|
+
font-size: 22px;
|
|
1483
|
+
display: flex;
|
|
1484
|
+
justify-content: center;
|
|
1485
|
+
align-items: center;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.rdw-spinner {
|
|
1489
|
+
display: flex;
|
|
1490
|
+
align-items: center;
|
|
1491
|
+
justify-content: center;
|
|
1492
|
+
height: 100%;
|
|
1493
|
+
width: 100%;
|
|
1494
|
+
}
|
|
1495
|
+
.rdw-spinner > div {
|
|
1496
|
+
width: 12px;
|
|
1497
|
+
height: 12px;
|
|
1498
|
+
background-color: #333;
|
|
1499
|
+
|
|
1500
|
+
border-radius: 100%;
|
|
1501
|
+
display: inline-block;
|
|
1502
|
+
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
1503
|
+
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
1504
|
+
}
|
|
1505
|
+
.rdw-spinner .rdw-bounce1 {
|
|
1506
|
+
-webkit-animation-delay: -0.32s;
|
|
1507
|
+
animation-delay: -0.32s;
|
|
1508
|
+
}
|
|
1509
|
+
.rdw-spinner .rdw-bounce2 {
|
|
1510
|
+
-webkit-animation-delay: -0.16s;
|
|
1511
|
+
animation-delay: -0.16s;
|
|
1512
|
+
}
|
|
1513
|
+
@-webkit-keyframes sk-bouncedelay {
|
|
1514
|
+
0%, 80%, 100% { -webkit-transform: scale(0) }
|
|
1515
|
+
40% { -webkit-transform: scale(1.0) }
|
|
1516
|
+
}
|
|
1517
|
+
@keyframes sk-bouncedelay {
|
|
1518
|
+
0%, 80%, 100% {
|
|
1519
|
+
-webkit-transform: scale(0);
|
|
1520
|
+
transform: scale(0);
|
|
1521
|
+
} 40% {
|
|
1522
|
+
-webkit-transform: scale(1.0);
|
|
1523
|
+
transform: scale(1.0);
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
.rdw-image-wrapper {
|
|
1528
|
+
display: flex;
|
|
1529
|
+
align-items: center;
|
|
1530
|
+
margin-bottom: 6px;
|
|
1531
|
+
position: relative;
|
|
1532
|
+
flex-wrap: wrap
|
|
1533
|
+
}
|
|
1534
|
+
.rdw-image-modal {
|
|
1535
|
+
position: absolute;
|
|
1536
|
+
top: 35px;
|
|
1537
|
+
left: 5px;
|
|
1538
|
+
display: flex;
|
|
1539
|
+
flex-direction: column;
|
|
1540
|
+
width: 235px;
|
|
1541
|
+
border: 1px solid #F1F1F1;
|
|
1542
|
+
padding: 15px;
|
|
1543
|
+
border-radius: 2px;
|
|
1544
|
+
z-index: 100;
|
|
1545
|
+
background: white;
|
|
1546
|
+
box-shadow: 3px 3px 5px #BFBDBD;
|
|
1547
|
+
}
|
|
1548
|
+
.rdw-image-modal-header {
|
|
1549
|
+
font-size: 15px;
|
|
1550
|
+
margin: 10px 0;
|
|
1551
|
+
display: flex;
|
|
1552
|
+
}
|
|
1553
|
+
.rdw-image-modal-header-option {
|
|
1554
|
+
width: 50%;
|
|
1555
|
+
cursor: pointer;
|
|
1556
|
+
display: flex;
|
|
1557
|
+
justify-content: center;
|
|
1558
|
+
align-items: center;
|
|
1559
|
+
flex-direction: column;
|
|
1560
|
+
}
|
|
1561
|
+
.rdw-image-modal-header-label {
|
|
1562
|
+
width: 80px;
|
|
1563
|
+
background: #f1f1f1;
|
|
1564
|
+
border: 1px solid #f1f1f1;
|
|
1565
|
+
margin-top: 5px;
|
|
1566
|
+
}
|
|
1567
|
+
.rdw-image-modal-header-label-highlighted {
|
|
1568
|
+
background: #6EB8D4;
|
|
1569
|
+
border-bottom: 2px solid #0a66b7;
|
|
1570
|
+
}
|
|
1571
|
+
.rdw-image-modal-upload-option {
|
|
1572
|
+
width: 100%;
|
|
1573
|
+
color: gray;
|
|
1574
|
+
cursor: pointer;
|
|
1575
|
+
display: flex;
|
|
1576
|
+
border: none;
|
|
1577
|
+
font-size: 15px;
|
|
1578
|
+
align-items: center;
|
|
1579
|
+
justify-content: center;
|
|
1580
|
+
background-color: #f1f1f1;
|
|
1581
|
+
outline: 2px dashed gray;
|
|
1582
|
+
outline-offset: -10px;
|
|
1583
|
+
margin: 10px 0;
|
|
1584
|
+
padding: 9px 0;
|
|
1585
|
+
}
|
|
1586
|
+
.rdw-image-modal-upload-option-highlighted {
|
|
1587
|
+
outline: 2px dashed #0a66b7;
|
|
1588
|
+
}
|
|
1589
|
+
.rdw-image-modal-upload-option-label {
|
|
1590
|
+
cursor: pointer;
|
|
1591
|
+
height: 100%;
|
|
1592
|
+
width: 100%;
|
|
1593
|
+
display: flex;
|
|
1594
|
+
justify-content: center;
|
|
1595
|
+
align-items: center;
|
|
1596
|
+
padding: 15px;
|
|
1597
|
+
}
|
|
1598
|
+
.rdw-image-modal-upload-option-label span{
|
|
1599
|
+
padding: 0 20px;
|
|
1600
|
+
}
|
|
1601
|
+
.rdw-image-modal-upload-option-image-preview {
|
|
1602
|
+
max-width: 100%;
|
|
1603
|
+
max-height: 200px;
|
|
1604
|
+
}
|
|
1605
|
+
.rdw-image-modal-upload-option-input {
|
|
1606
|
+
width: 0.1px;
|
|
1607
|
+
height: 0.1px;
|
|
1608
|
+
opacity: 0;
|
|
1609
|
+
overflow: hidden;
|
|
1610
|
+
position: absolute;
|
|
1611
|
+
z-index: -1;
|
|
1612
|
+
}
|
|
1613
|
+
.rdw-image-modal-url-section {
|
|
1614
|
+
display: flex;
|
|
1615
|
+
align-items: center;
|
|
1616
|
+
}
|
|
1617
|
+
.rdw-image-modal-url-input {
|
|
1618
|
+
width: 90%;
|
|
1619
|
+
height: 35px;
|
|
1620
|
+
margin: 15px 0 12px;
|
|
1621
|
+
border: 1px solid #F1F1F1;
|
|
1622
|
+
border-radius: 2px;
|
|
1623
|
+
font-size: 15px;
|
|
1624
|
+
padding: 0 5px;
|
|
1625
|
+
}
|
|
1626
|
+
.rdw-image-modal-btn-section {
|
|
1627
|
+
margin: 10px auto 0;
|
|
1628
|
+
}
|
|
1629
|
+
.rdw-image-modal-url-input:focus {
|
|
1630
|
+
outline: none;
|
|
1631
|
+
}
|
|
1632
|
+
.rdw-image-modal-btn {
|
|
1633
|
+
margin: 0 5px;
|
|
1634
|
+
width: 75px;
|
|
1635
|
+
height: 30px;
|
|
1636
|
+
border: 1px solid #F1F1F1;
|
|
1637
|
+
border-radius: 2px;
|
|
1638
|
+
cursor: pointer;
|
|
1639
|
+
background: white;
|
|
1640
|
+
text-transform: capitalize;
|
|
1641
|
+
}
|
|
1642
|
+
.rdw-image-modal-btn:hover {
|
|
1643
|
+
box-shadow: 1px 1px 0px #BFBDBD;
|
|
1644
|
+
}
|
|
1645
|
+
.rdw-image-modal-btn:active {
|
|
1646
|
+
box-shadow: 1px 1px 0px #BFBDBD inset;
|
|
1647
|
+
}
|
|
1648
|
+
.rdw-image-modal-btn:focus {
|
|
1649
|
+
outline: none !important;
|
|
1650
|
+
}
|
|
1651
|
+
.rdw-image-modal-btn:disabled {
|
|
1652
|
+
background: #ece9e9;
|
|
1653
|
+
}
|
|
1654
|
+
.rdw-image-modal-spinner {
|
|
1655
|
+
position: absolute;
|
|
1656
|
+
top: -3px;
|
|
1657
|
+
left: 0;
|
|
1658
|
+
width: 100%;
|
|
1659
|
+
height: 100%;
|
|
1660
|
+
opacity: 0.5;
|
|
1661
|
+
}
|
|
1662
|
+
.rdw-image-modal-alt-input {
|
|
1663
|
+
width: 70%;
|
|
1664
|
+
height: 20px;
|
|
1665
|
+
border: 1px solid #F1F1F1;
|
|
1666
|
+
border-radius: 2px;
|
|
1667
|
+
font-size: 12px;
|
|
1668
|
+
margin-left: 5px;
|
|
1669
|
+
}
|
|
1670
|
+
.rdw-image-modal-alt-input:focus {
|
|
1671
|
+
outline: none;
|
|
1672
|
+
}
|
|
1673
|
+
.rdw-image-modal-alt-lbl {
|
|
1674
|
+
font-size: 12px;
|
|
1675
|
+
}
|
|
1676
|
+
.rdw-image-modal-size {
|
|
1677
|
+
align-items: center;
|
|
1678
|
+
display: flex;
|
|
1679
|
+
margin: 8px 0;
|
|
1680
|
+
justify-content: space-between;
|
|
1681
|
+
}
|
|
1682
|
+
.rdw-image-modal-size-input {
|
|
1683
|
+
width: 40%;
|
|
1684
|
+
height: 20px;
|
|
1685
|
+
border: 1px solid #F1F1F1;
|
|
1686
|
+
border-radius: 2px;
|
|
1687
|
+
font-size: 12px;
|
|
1688
|
+
}
|
|
1689
|
+
.rdw-image-modal-size-input:focus {
|
|
1690
|
+
outline: none;
|
|
1691
|
+
}
|
|
1692
|
+
.rdw-image-mandatory-sign {
|
|
1693
|
+
color: red;
|
|
1694
|
+
margin-left: 3px;
|
|
1695
|
+
margin-right: 3px;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.rdw-remove-wrapper {
|
|
1699
|
+
display: flex;
|
|
1700
|
+
align-items: center;
|
|
1701
|
+
margin-bottom: 6px;
|
|
1702
|
+
position: relative;
|
|
1703
|
+
flex-wrap: wrap
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
.rdw-history-wrapper {
|
|
1707
|
+
display: flex;
|
|
1708
|
+
align-items: center;
|
|
1709
|
+
margin-bottom: 6px;
|
|
1710
|
+
flex-wrap: wrap
|
|
1711
|
+
}
|
|
1712
|
+
.rdw-history-dropdownoption {
|
|
1713
|
+
height: 40px;
|
|
1714
|
+
display: flex;
|
|
1715
|
+
justify-content: center;
|
|
1716
|
+
}
|
|
1717
|
+
.rdw-history-dropdown {
|
|
1718
|
+
width: 50px;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
.rdw-link-decorator-wrapper {
|
|
1722
|
+
position: relative;
|
|
1723
|
+
}
|
|
1724
|
+
.rdw-link-decorator-icon {
|
|
1725
|
+
position: absolute;
|
|
1726
|
+
left: 40%;
|
|
1727
|
+
top: 0;
|
|
1728
|
+
cursor: pointer;
|
|
1729
|
+
background-color: white;
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.rdw-mention-link {
|
|
1733
|
+
text-decoration: none;
|
|
1734
|
+
color: #1236ff;
|
|
1735
|
+
background-color: #f0fbff;
|
|
1736
|
+
padding: 1px 2px;
|
|
1737
|
+
border-radius: 2px;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
.rdw-suggestion-wrapper {
|
|
1741
|
+
position: relative;
|
|
1742
|
+
}
|
|
1743
|
+
.rdw-suggestion-dropdown {
|
|
1744
|
+
position: absolute;
|
|
1745
|
+
display: flex;
|
|
1746
|
+
flex-direction: column;
|
|
1747
|
+
border: 1px solid #F1F1F1;
|
|
1748
|
+
min-width: 100px;
|
|
1749
|
+
max-height: 150px;
|
|
1750
|
+
overflow: auto;
|
|
1751
|
+
background: white;
|
|
1752
|
+
z-index: 100;
|
|
1753
|
+
}
|
|
1754
|
+
.rdw-suggestion-option {
|
|
1755
|
+
padding: 7px 5px;
|
|
1756
|
+
border-bottom: 1px solid #f1f1f1;
|
|
1757
|
+
}
|
|
1758
|
+
.rdw-suggestion-option-active {
|
|
1759
|
+
background-color: #F1F1F1;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.rdw-hashtag-link {
|
|
1763
|
+
text-decoration: none;
|
|
1764
|
+
color: #1236ff;
|
|
1765
|
+
background-color: #f0fbff;
|
|
1766
|
+
padding: 1px 2px;
|
|
1767
|
+
border-radius: 2px;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.rdw-image-alignment-options-popup {
|
|
1771
|
+
position: absolute;
|
|
1772
|
+
background: white;
|
|
1773
|
+
display: flex;
|
|
1774
|
+
padding: 5px 2px;
|
|
1775
|
+
border-radius: 2px;
|
|
1776
|
+
border: 1px solid #F1F1F1;
|
|
1777
|
+
width: 105px;
|
|
1778
|
+
cursor: pointer;
|
|
1779
|
+
z-index: 100;
|
|
1780
|
+
}
|
|
1781
|
+
.rdw-alignment-option-left {
|
|
1782
|
+
justify-content: flex-start;
|
|
1783
|
+
}
|
|
1784
|
+
.rdw-image-alignment-option {
|
|
1785
|
+
height: 15px;
|
|
1786
|
+
width: 15px;
|
|
1787
|
+
min-width: 15px;
|
|
1788
|
+
}
|
|
1789
|
+
.rdw-image-alignment {
|
|
1790
|
+
position: relative;
|
|
1791
|
+
}
|
|
1792
|
+
.rdw-image-imagewrapper {
|
|
1793
|
+
position: relative;
|
|
1794
|
+
}
|
|
1795
|
+
.rdw-image-center {
|
|
1796
|
+
display: flex;
|
|
1797
|
+
justify-content: center;
|
|
1798
|
+
}
|
|
1799
|
+
.rdw-image-left {
|
|
1800
|
+
display: flex;
|
|
1801
|
+
}
|
|
1802
|
+
.rdw-image-right {
|
|
1803
|
+
display: flex;
|
|
1804
|
+
justify-content: flex-end;
|
|
1805
|
+
}
|
|
1806
|
+
.rdw-image-alignment-options-popup-right {
|
|
1807
|
+
right: 0;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.rdw-editor-main {
|
|
1811
|
+
height: 100%;
|
|
1812
|
+
overflow: auto;
|
|
1813
|
+
box-sizing: border-box;
|
|
1814
|
+
}
|
|
1815
|
+
.rdw-editor-toolbar {
|
|
1816
|
+
padding: 6px 5px 0;
|
|
1817
|
+
border-radius: 2px;
|
|
1818
|
+
border: 1px solid #F1F1F1;
|
|
1819
|
+
display: flex;
|
|
1820
|
+
justify-content: flex-start;
|
|
1821
|
+
background: white;
|
|
1822
|
+
flex-wrap: wrap;
|
|
1823
|
+
font-size: 15px;
|
|
1824
|
+
margin-bottom: 5px;
|
|
1825
|
+
user-select: none;
|
|
1826
|
+
}
|
|
1827
|
+
.public-DraftStyleDefault-block {
|
|
1828
|
+
margin: 1em 0;
|
|
1829
|
+
}
|
|
1830
|
+
.rdw-editor-wrapper:focus {
|
|
1831
|
+
outline: none;
|
|
1832
|
+
}
|
|
1833
|
+
.rdw-editor-wrapper {
|
|
1834
|
+
box-sizing: content-box;
|
|
1835
|
+
}
|
|
1836
|
+
.rdw-editor-main blockquote {
|
|
1837
|
+
border-left: 5px solid #f1f1f1;
|
|
1838
|
+
padding-left: 5px;
|
|
1839
|
+
}
|
|
1840
|
+
.rdw-editor-main pre {
|
|
1841
|
+
background: #f1f1f1;
|
|
1842
|
+
border-radius: 3px;
|
|
1843
|
+
padding: 1px 10px;
|
|
1844
|
+
}
|
|
1845
|
+
/**
|
|
1846
|
+
* Draft v0.9.1
|
|
1847
|
+
*
|
|
1848
|
+
* Copyright (c) 2013-present, Facebook, Inc.
|
|
1849
|
+
* All rights reserved.
|
|
1850
|
+
*
|
|
1851
|
+
* This source code is licensed under the BSD-style license found in the
|
|
1852
|
+
* LICENSE file in the root directory of this source tree. An additional grant
|
|
1853
|
+
* of patent rights can be found in the PATENTS file in the same directory.
|
|
1854
|
+
*/
|
|
1855
|
+
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
|
|
1856
|
+
|
|
1857
|
+
|
|
1858
|
+
/*# sourceMappingURL=react-draft-wysiwyg.css.map*/
|