simple-frame-unit 1.0.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.
Files changed (260) hide show
  1. package/.env.dev +14 -0
  2. package/CHANGELOG.md +9 -0
  3. package/README.md +24 -0
  4. package/dist/ed-frame-vue.common.1.js +11046 -0
  5. package/dist/ed-frame-vue.common.1.js.map +1 -0
  6. package/dist/ed-frame-vue.common.2.js +1715 -0
  7. package/dist/ed-frame-vue.common.2.js.map +1 -0
  8. package/dist/ed-frame-vue.common.js +53427 -0
  9. package/dist/ed-frame-vue.common.js.map +1 -0
  10. package/dist/ed-frame-vue.umd.1.js +11046 -0
  11. package/dist/ed-frame-vue.umd.1.js.map +1 -0
  12. package/dist/ed-frame-vue.umd.2.js +1715 -0
  13. package/dist/ed-frame-vue.umd.2.js.map +1 -0
  14. package/dist/ed-frame-vue.umd.js +53437 -0
  15. package/dist/ed-frame-vue.umd.js.map +1 -0
  16. package/dist/ed-frame-vue.umd.min.1.js +17 -0
  17. package/dist/ed-frame-vue.umd.min.1.js.map +1 -0
  18. package/dist/ed-frame-vue.umd.min.2.js +4 -0
  19. package/dist/ed-frame-vue.umd.min.2.js.map +1 -0
  20. package/dist/ed-frame-vue.umd.min.js +470 -0
  21. package/dist/ed-frame-vue.umd.min.js.map +1 -0
  22. package/import.easydata.js +46 -0
  23. package/lib/CHANGELOG.md +18 -0
  24. package/lib/README.md +27 -0
  25. package/lib/api/ds/index.js +124 -0
  26. package/lib/api/easyData.js +90 -0
  27. package/lib/api/easyform/easyForm.js +32 -0
  28. package/lib/api/index.js +61 -0
  29. package/lib/api/interface/index.js +32 -0
  30. package/lib/api/system.js +20 -0
  31. package/lib/index.js +80 -0
  32. package/lib/packages/BasicTemplate/EasyDataTemplate.vue +189 -0
  33. package/lib/packages/BasicTemplate/Props.js +64 -0
  34. package/lib/packages/BasicTemplate/components/TemplateComp.vue +263 -0
  35. package/lib/packages/BasicTemplate/components/TemplateViews.vue +292 -0
  36. package/lib/packages/BasicTemplate/hooks/business.js +74 -0
  37. package/lib/packages/BasicTemplate/hooks/getFormData.js +89 -0
  38. package/lib/packages/BasicTemplate/hooks/queryFormData.js +194 -0
  39. package/lib/packages/BasicTemplate/hooks/submitForm.js +53 -0
  40. package/lib/packages/BasicTemplate/hooks/useEmits.js +15 -0
  41. package/lib/packages/BasicTemplate/hooks/validate.js +42 -0
  42. package/lib/packages/EasyDataForm/EasyDataForm.vue +597 -0
  43. package/lib/packages/EasyDataForm/Props.js +22 -0
  44. package/lib/packages/EasyDataForm/components/FormItem.vue +228 -0
  45. package/lib/packages/EasyDataForm/hooks/useChosePopup.js +85 -0
  46. package/lib/packages/EasyDataForm/hooks/useEmits.js +19 -0
  47. package/lib/packages/EasyDataForm/hooks/useForm.js +169 -0
  48. package/lib/packages/EasyDataForm/hooks/useUpload.js +168 -0
  49. package/lib/packages/EasyDataList/EasyDataList.vue +348 -0
  50. package/lib/packages/EasyDataList/Props.js +116 -0
  51. package/lib/packages/EasyDataList/components/BasicModal.vue +150 -0
  52. package/lib/packages/EasyDataList/components/FormAction.vue +63 -0
  53. package/lib/packages/EasyDataList/hooks/useEmits.js +30 -0
  54. package/lib/packages/EasyDataList/hooks/useForm.js +62 -0
  55. package/lib/packages/EasyDataList/hooks/useTable.js +314 -0
  56. package/lib/packages/EasyDataTable/EasyDataTable.vue +233 -0
  57. package/lib/packages/EasyDataView/EasyDataView.vue +105 -0
  58. package/lib/packages/EdRichPreview/index.js +32 -0
  59. package/lib/packages/EdRichText/index.vue +167 -0
  60. package/lib/packages/EdRichText/replaceUrl.js +49 -0
  61. package/lib/packages/components/FileView.vue +97 -0
  62. package/lib/packages/index.js +11 -0
  63. package/lib/packages/mixins/EasyDataMixins.js +133 -0
  64. package/lib/packages/mixins/useTable.jsx +130 -0
  65. package/lib/pages/DataSource/index.js +8 -0
  66. package/lib/pages/DataSource/src/components/ControlViews/BaseProps.js +103 -0
  67. package/lib/pages/DataSource/src/components/ControlViews/control.js +1089 -0
  68. package/lib/pages/DataSource/src/components/ControlViews/index.vue +301 -0
  69. package/lib/pages/DataSource/src/components/TableOperationModal.vue +225 -0
  70. package/lib/pages/DataSource/src/components/TablePropsModal.vue +367 -0
  71. package/lib/pages/DataSource/src/components/ViewPropsModal.vue +737 -0
  72. package/lib/pages/DataSource/src/components/modal/ChooseDict.vue +119 -0
  73. package/lib/pages/DataSource/src/hooks/useTable.js +138 -0
  74. package/lib/pages/DataSource/src/index.vue +431 -0
  75. package/lib/pages/Interface/index.js +8 -0
  76. package/lib/pages/Interface/src/components/InterfaceCall.vue +73 -0
  77. package/lib/pages/Interface/src/components/InterfaceDepend.vue +299 -0
  78. package/lib/pages/Interface/src/components/InterfaceFee.vue +131 -0
  79. package/lib/pages/Interface/src/components/InterfaceMessage.vue +878 -0
  80. package/lib/pages/Interface/src/components/InterfaceMock.vue +203 -0
  81. package/lib/pages/Interface/src/components/InterfaceParam.vue +308 -0
  82. package/lib/pages/Interface/src/components/InterfaceRepeat.vue +281 -0
  83. package/lib/pages/Interface/src/components/InterfaceVariable.vue +31 -0
  84. package/lib/pages/Interface/src/index.vue +216 -0
  85. package/lib/pages/Template/index.js +8 -0
  86. package/lib/pages/Template/src/components/DefineModal.vue +524 -0
  87. package/lib/pages/Template/src/components/TemplatePreview.vue +109 -0
  88. package/lib/pages/Template/src/components/model/AddDialog.vue +60 -0
  89. package/lib/pages/Template/src/components/model/TemplatePreview2.vue +101 -0
  90. package/lib/pages/Template/src/hooks/index.js +3 -0
  91. package/lib/pages/Template/src/hooks/useEmits.js +64 -0
  92. package/lib/pages/Template/src/index.vue +124 -0
  93. package/lib/popup/index.js +8 -0
  94. package/lib/popup/src/DataSourceChoose.vue +44 -0
  95. package/lib/popup/src/DataSourceViewIdChoose.vue +67 -0
  96. package/lib/popup/src/DictChoose.vue +104 -0
  97. package/lib/popup/src/InterfaceChoose.vue +46 -0
  98. package/lib/popup/src/OrgChoose.vue +121 -0
  99. package/lib/popup/src/RoleChoose.vue +101 -0
  100. package/lib/popup/src/TemplateChoose.vue +43 -0
  101. package/lib/popup/src/UserChoose.vue +161 -0
  102. package/lib/popup//347/273/204/344/273/266/345/274/200/345/217/221/350/247/204/350/214/203.md +25 -0
  103. package/lib/style/custom.scss +126 -0
  104. package/lib/style/deep.scss +109 -0
  105. package/lib/style/index.scss +4 -0
  106. package/lib/utils/MapLoader.js +48 -0
  107. package/lib/utils/dateUtils.js +58 -0
  108. package/lib/utils/index.js +8 -0
  109. package/lib/utils/setting.js +25 -0
  110. package/lib/utils/sortable/index.js +3784 -0
  111. package/lib/utils/useBusiness.js +212 -0
  112. package/lib/utils/utils.js +588 -0
  113. package/package.json +77 -0
  114. package/src/App.vue +12 -0
  115. package/src/assets/Vue.png +0 -0
  116. package/src/assets/avatar.png +0 -0
  117. package/src/assets/images/bg.png +0 -0
  118. package/src/assets/images/logo-bills.png +0 -0
  119. package/src/assets/images/pic.png +0 -0
  120. package/src/assets/images/weplus-logo.png +0 -0
  121. package/src/assets/marker.png +0 -0
  122. package/src/assets/styles/common.scss +359 -0
  123. package/src/assets/styles/ele-docs.css +3278 -0
  124. package/src/assets/styles/fonts/icomoon.eot +0 -0
  125. package/src/assets/styles/fonts/icomoon.svg +14 -0
  126. package/src/assets/styles/fonts/icomoon.ttf +0 -0
  127. package/src/assets/styles/fonts/icomoon.woff +0 -0
  128. package/src/assets/styles/fonts/style.css +39 -0
  129. package/src/assets/styles/higtlightEle.css +84 -0
  130. package/src/assets/svg/code.svg +7 -0
  131. package/src/assets/svg/password.svg +1 -0
  132. package/src/components/Popups/DiyCompDictChoose.vue +112 -0
  133. package/src/components/Popups/index.js +28 -0
  134. package/src/components/ed-base-vue/global/variable.js +8 -0
  135. package/src/components/ed-base-vue/index.js +81 -0
  136. package/src/components/ed-base-vue/package/EdCard/index.js +7 -0
  137. package/src/components/ed-base-vue/package/EdCard/src/index.vue +87 -0
  138. package/src/components/ed-base-vue/package/EdCodeEditor/index.js +8 -0
  139. package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/AceConfig.js +71 -0
  140. package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/Editor.vue +137 -0
  141. package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/Toolbar.vue +68 -0
  142. package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/index.vue +119 -0
  143. package/src/components/ed-base-vue/package/EdCodeEditor/src/AceEditor/webpack-resolver.js +51 -0
  144. package/src/components/ed-base-vue/package/EdCodeEditor/src/Codemirror/Toolbar.vue +57 -0
  145. package/src/components/ed-base-vue/package/EdCodeEditor/src/Codemirror/config.js +64 -0
  146. package/src/components/ed-base-vue/package/EdCodeEditor/src/Codemirror/index.vue +309 -0
  147. package/src/components/ed-base-vue/package/EdCodeEditor/src/EdCodeEditor.vue +238 -0
  148. package/src/components/ed-base-vue/package/EdDate/index.js +8 -0
  149. package/src/components/ed-base-vue/package/EdDate/src/index.js +50 -0
  150. package/src/components/ed-base-vue/package/EdDescriptions/index.js +8 -0
  151. package/src/components/ed-base-vue/package/EdDescriptions/src/EdDescriptions.vue +46 -0
  152. package/src/components/ed-base-vue/package/EdDescriptions/src/EdDescriptionsItem.js +20 -0
  153. package/src/components/ed-base-vue/package/EdDescriptions/src/Props.js +20 -0
  154. package/src/components/ed-base-vue/package/EdDialog/index.js +8 -0
  155. package/src/components/ed-base-vue/package/EdDialog/src/EdDialog.vue +138 -0
  156. package/src/components/ed-base-vue/package/EdDialog/src/Props.js +91 -0
  157. package/src/components/ed-base-vue/package/EdDialog/src/components/DialogFooter.vue +42 -0
  158. package/src/components/ed-base-vue/package/EdDialog/src/components/DialogWrapper.vue +53 -0
  159. package/src/components/ed-base-vue/package/EdDrawer/index.js +8 -0
  160. package/src/components/ed-base-vue/package/EdDrawer/src/DrawerFooter.vue +41 -0
  161. package/src/components/ed-base-vue/package/EdDrawer/src/EdDrawer.vue +150 -0
  162. package/src/components/ed-base-vue/package/EdDrawer/src/props.js +71 -0
  163. package/src/components/ed-base-vue/package/EdFlow/index.js +8 -0
  164. package/src/components/ed-base-vue/package/EdFlow/src/EdFlowItem.vue +733 -0
  165. package/src/components/ed-base-vue/package/EdFlow/src/index.vue +148 -0
  166. package/src/components/ed-base-vue/package/EdForm/index.js +8 -0
  167. package/src/components/ed-base-vue/package/EdForm/src/EdForm.vue +172 -0
  168. package/src/components/ed-base-vue/package/EdForm/src/Props.js +33 -0
  169. package/src/components/ed-base-vue/package/EdForm/src/components/EdFormItem.vue +34 -0
  170. package/src/components/ed-base-vue/package/EdIcons/index.js +8 -0
  171. package/src/components/ed-base-vue/package/EdIcons/src/hooks/Icons.js +406 -0
  172. package/src/components/ed-base-vue/package/EdIcons/src/hooks/Icons1.js +830 -0
  173. package/src/components/ed-base-vue/package/EdIcons/src/index.vue +13 -0
  174. package/src/components/ed-base-vue/package/EdImage/index.js +8 -0
  175. package/src/components/ed-base-vue/package/EdImage/src/index.vue +28 -0
  176. package/src/components/ed-base-vue/package/EdInputArray/index.js +8 -0
  177. package/src/components/ed-base-vue/package/EdInputArray/src/Props.js +26 -0
  178. package/src/components/ed-base-vue/package/EdInputArray/src/index.vue +97 -0
  179. package/src/components/ed-base-vue/package/EdInputColor/index.js +8 -0
  180. package/src/components/ed-base-vue/package/EdInputColor/src/InputColor.vue +81 -0
  181. package/src/components/ed-base-vue/package/EdInputMap/index.js +9 -0
  182. package/src/components/ed-base-vue/package/EdInputMap/src/EdInputMap.vue +246 -0
  183. package/src/components/ed-base-vue/package/EdInputMap/src/EdInputMapProps.js +6 -0
  184. package/src/components/ed-base-vue/package/EdInputPop/index.js +13 -0
  185. package/src/components/ed-base-vue/package/EdInputPop/src/EdInputPop.vue +144 -0
  186. package/src/components/ed-base-vue/package/EdInputPop/src/Props.js +48 -0
  187. package/src/components/ed-base-vue/package/EdInputTable/index.js +8 -0
  188. package/src/components/ed-base-vue/package/EdInputTable/src/EdInputTable.vue +368 -0
  189. package/src/components/ed-base-vue/package/EdInputTable/src/Fetch.js +40 -0
  190. package/src/components/ed-base-vue/package/EdJsonEditor/index.js +13 -0
  191. package/src/components/ed-base-vue/package/EdJsonEditor/src/EdJsonEditor.vue +198 -0
  192. package/src/components/ed-base-vue/package/EdJsonEditor/src/assets/img/jsoneditor-icons.svg +749 -0
  193. package/src/components/ed-base-vue/package/EdJsonEditor/src/assets/jsoneditor.css +2031 -0
  194. package/src/components/ed-base-vue/package/EdJsonEditor/src/assets/plus.svg +1 -0
  195. package/src/components/ed-base-vue/package/EdJsonEditor/src/hooks.js +63 -0
  196. package/src/components/ed-base-vue/package/EdJsonViewer/index.js +8 -0
  197. package/src/components/ed-base-vue/package/EdJsonViewer/src/EdJsonViewer.vue +44 -0
  198. package/src/components/ed-base-vue/package/EdLable/index.js +8 -0
  199. package/src/components/ed-base-vue/package/EdLable/src/index.vue +34 -0
  200. package/src/components/ed-base-vue/package/EdLink/index.js +8 -0
  201. package/src/components/ed-base-vue/package/EdLink/src/index.vue +43 -0
  202. package/src/components/ed-base-vue/package/EdMarkEditor/index.js +15 -0
  203. package/src/components/ed-base-vue/package/EdMarkEditor/src/EdMarkEditor.vue +368 -0
  204. package/src/components/ed-base-vue/package/EdMarkEditor/src/extra-function.js +538 -0
  205. package/src/components/ed-base-vue/package/EdMarkEditor/src/highlight.js +95 -0
  206. package/src/components/ed-base-vue/package/EdTable/index.js +8 -0
  207. package/src/components/ed-base-vue/package/EdTable/src/EdTable.vue +240 -0
  208. package/src/components/ed-base-vue/package/EdTable/src/Props.js +97 -0
  209. package/src/components/ed-base-vue/package/EdTable/src/components/TableColumnItem.js +24 -0
  210. package/src/components/ed-base-vue/package/EdTable/src/components/TablePagination.vue +73 -0
  211. package/src/components/ed-base-vue/package/EdTableEditor/index.js +8 -0
  212. package/src/components/ed-base-vue/package/EdTableEditor/src/EdTableEditor.vue +282 -0
  213. package/src/components/ed-base-vue/package/EdTableEditor/src/Props.js +107 -0
  214. package/src/components/ed-base-vue/package/EdTableEditor/src/hooks/validate.js +90 -0
  215. package/src/components/ed-base-vue/package/EdUpload/index.js +8 -0
  216. package/src/components/ed-base-vue/package/EdUpload/src/Props.js +90 -0
  217. package/src/components/ed-base-vue/package/EdUpload/src/index.vue +88 -0
  218. package/src/components/ed-base-vue/package/EdViewer/index.js +8 -0
  219. package/src/components/ed-base-vue/package/EdViewer/src/EdViewer.vue +310 -0
  220. package/src/components/ed-base-vue/package/EdWangEditor/index.js +14 -0
  221. package/src/components/ed-base-vue/package/EdWangEditor/src/EdWangEditor.vue +127 -0
  222. package/src/components/ed-base-vue/package/ExtendSlot.js +12 -0
  223. package/src/components/ed-base-vue/package/OptionSlot.js +65 -0
  224. package/src/components/ed-base-vue/plugin/Message/index.js +2 -0
  225. package/src/components/ed-base-vue/plugin/Message/src/main.js +91 -0
  226. package/src/components/ed-base-vue/plugin/Message/src/main.vue +253 -0
  227. package/src/components/ed-base-vue/plugin/print/index.js +156 -0
  228. package/src/components/ed-base-vue/plugin/sortable/index.js +3784 -0
  229. package/src/components/ed-base-vue/style/custom.scss +107 -0
  230. package/src/components/ed-base-vue/style/deep.scss +100 -0
  231. package/src/components/ed-base-vue/style/index.scss +4 -0
  232. package/src/components/ed-base-vue/tools/date-format.js +315 -0
  233. package/src/components/ed-base-vue/tools/utils.js +124 -0
  234. package/src/layouts/components/AppMain.vue +17 -0
  235. package/src/layouts/components/Header.vue +256 -0
  236. package/src/layouts/components/Logo.vue +56 -0
  237. package/src/layouts/components/Navbar.vue +169 -0
  238. package/src/layouts/components/SideBar.vue +107 -0
  239. package/src/layouts/components/index.js +5 -0
  240. package/src/layouts/index.vue +57 -0
  241. package/src/main.js +42 -0
  242. package/src/request/config.js +6 -0
  243. package/src/request/index.js +85 -0
  244. package/src/request/request.js +147 -0
  245. package/src/router/index.js +65 -0
  246. package/src/router/modules/baseRouter.js +43 -0
  247. package/src/router/modules/easydata.js +49 -0
  248. package/src/views/base/BaseRichPreview.vue +23 -0
  249. package/src/views/base/BaseRichText.vue +28 -0
  250. package/src/views/base/EdFormView.vue +54 -0
  251. package/src/views/base/EdTable.vue +98 -0
  252. package/src/views/base/inputTable.vue +103 -0
  253. package/src/views/easydata/Interface.vue +3 -0
  254. package/src/views/easydata/dataSource.vue +13 -0
  255. package/src/views/easydata/dataSourceView.vue +71 -0
  256. package/src/views/easydata/templateDemo.vue +89 -0
  257. package/src/views/easydata/templateInfo.vue +13 -0
  258. package/src/views/index.vue +17 -0
  259. package/src/views/login.vue +208 -0
  260. package/src/views/redirect.vue +15 -0
@@ -0,0 +1,2031 @@
1
+ .jsoneditor input,
2
+ .jsoneditor input:not([type]),
3
+ .jsoneditor input[type=text],
4
+ .jsoneditor input[type=search],
5
+ .jsoneditor-modal input,
6
+ .jsoneditor-modal input:not([type]),
7
+ .jsoneditor-modal input[type=text],
8
+ .jsoneditor-modal input[type=search] {
9
+ height: auto;
10
+ border: inherit;
11
+ box-shadow: none;
12
+ font-size: inherit;
13
+ box-sizing: inherit;
14
+ padding: inherit;
15
+ font-family: inherit;
16
+ transition: none;
17
+ line-height: inherit;
18
+ }
19
+
20
+ .jsoneditor input:focus,
21
+ .jsoneditor input:not([type]):focus,
22
+ .jsoneditor input[type=text]:focus,
23
+ .jsoneditor input[type=search]:focus,
24
+ .jsoneditor-modal input:focus,
25
+ .jsoneditor-modal input:not([type]):focus,
26
+ .jsoneditor-modal input[type=text]:focus,
27
+ .jsoneditor-modal input[type=search]:focus {
28
+ border: inherit;
29
+ box-shadow: inherit;
30
+ }
31
+
32
+ .jsoneditor textarea,
33
+ .jsoneditor-modal textarea {
34
+ height: inherit;
35
+ }
36
+
37
+ .jsoneditor select,
38
+ .jsoneditor-modal select {
39
+ display: inherit;
40
+ height: inherit;
41
+ }
42
+
43
+ .jsoneditor label,
44
+ .jsoneditor-modal label {
45
+ font-size: inherit;
46
+ font-weight: inherit;
47
+ color: inherit;
48
+ }
49
+
50
+ .jsoneditor table,
51
+ .jsoneditor-modal table {
52
+ border-collapse: collapse;
53
+ width: auto;
54
+ }
55
+
56
+ .jsoneditor td,
57
+ .jsoneditor th,
58
+ .jsoneditor-modal td,
59
+ .jsoneditor-modal th {
60
+ padding: 0;
61
+ display: table-cell;
62
+ text-align: left;
63
+ vertical-align: inherit;
64
+ border-radius: inherit;
65
+ }
66
+
67
+ .jsoneditor .autocomplete.dropdown {
68
+ position: absolute;
69
+ background: #ffffff;
70
+ box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
71
+ border: 1px solid #d3d3d3;
72
+ overflow-x: hidden;
73
+ overflow-y: auto;
74
+ cursor: default;
75
+ margin: 0;
76
+ padding: 5px;
77
+ text-align: left;
78
+ outline: 0;
79
+ font-family: consolas, menlo, monaco, "Ubuntu Mono", "source-code-pro", monospace;
80
+ font-size: 14px;
81
+ }
82
+
83
+ .jsoneditor .autocomplete.dropdown .item {
84
+ color: #1a1a1a;
85
+ }
86
+
87
+ .jsoneditor .autocomplete.dropdown .item.hover {
88
+ background-color: #ebebeb;
89
+ }
90
+
91
+ .jsoneditor .autocomplete.hint {
92
+ color: #a1a1a1;
93
+ top: 4px;
94
+ left: 4px;
95
+ }
96
+
97
+ .jsoneditor-contextmenu-root {
98
+ position: relative;
99
+ width: 0;
100
+ height: 0;
101
+ }
102
+
103
+ .jsoneditor-contextmenu {
104
+ position: absolute;
105
+ box-sizing: content-box;
106
+ z-index: 2;
107
+ }
108
+
109
+ .jsoneditor-contextmenu .jsoneditor-menu {
110
+ position: relative;
111
+ left: 0;
112
+ top: 0;
113
+ width: 128px;
114
+ height: auto;
115
+ background: #ffffff;
116
+ border: 1px solid #d3d3d3;
117
+ box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
118
+ list-style: none;
119
+ margin: 0;
120
+ padding: 0;
121
+ }
122
+
123
+ .jsoneditor-contextmenu .jsoneditor-menu button {
124
+ position: relative;
125
+ padding: 0 8px 0 0;
126
+ margin: 0;
127
+ width: 128px;
128
+ height: auto;
129
+ border: none;
130
+ cursor: pointer;
131
+ color: #4d4d4d;
132
+ background: transparent;
133
+ font-size: 14px;
134
+ font-family: arial, sans-serif;
135
+ box-sizing: border-box;
136
+ text-align: left;
137
+ }
138
+
139
+ .jsoneditor-contextmenu .jsoneditor-menu button::-moz-focus-inner {
140
+ padding: 0;
141
+ border: 0;
142
+ }
143
+
144
+ .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-default {
145
+ width: 96px;
146
+ }
147
+
148
+ .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-expand {
149
+ float: right;
150
+ width: 32px;
151
+ height: 24px;
152
+ border-left: 1px solid #e5e5e5;
153
+ }
154
+
155
+ .jsoneditor-contextmenu .jsoneditor-menu li {
156
+ overflow: hidden;
157
+ }
158
+
159
+ .jsoneditor-contextmenu .jsoneditor-menu li ul {
160
+ display: none;
161
+ position: relative;
162
+ left: -10px;
163
+ top: 0;
164
+ border: none;
165
+ box-shadow: inset 0 0 10px rgba(128, 128, 128, 0.5);
166
+ padding: 0 10px;
167
+ -webkit-transition: all 0.3s ease-out;
168
+ -moz-transition: all 0.3s ease-out;
169
+ -o-transition: all 0.3s ease-out;
170
+ transition: all 0.3s ease-out;
171
+ }
172
+
173
+ .jsoneditor-contextmenu .jsoneditor-menu li ul .jsoneditor-icon {
174
+ margin-left: 24px;
175
+ }
176
+
177
+ .jsoneditor-contextmenu .jsoneditor-menu li ul li button {
178
+ padding-left: 24px;
179
+ animation: all ease-in-out 1s;
180
+ }
181
+
182
+ .jsoneditor-contextmenu .jsoneditor-menu li button .jsoneditor-expand {
183
+ position: absolute;
184
+ top: 0;
185
+ right: 0;
186
+ width: 24px;
187
+ height: 24px;
188
+ padding: 0;
189
+ margin: 0 4px 0 0;
190
+ background-image: url("./img/jsoneditor-icons.svg");
191
+ background-position: 0 -72px;
192
+ }
193
+
194
+ .jsoneditor-contextmenu .jsoneditor-icon {
195
+ position: absolute;
196
+ top: 0;
197
+ left: 0;
198
+ width: 24px;
199
+ height: 24px;
200
+ border: none;
201
+ padding: 0;
202
+ margin: 0;
203
+ background-image: url("./img/jsoneditor-icons.svg");
204
+ }
205
+
206
+ .jsoneditor-contextmenu .jsoneditor-text {
207
+ padding: 4px 0 4px 24px;
208
+ word-wrap: break-word;
209
+ }
210
+
211
+ .jsoneditor-contextmenu .jsoneditor-text.jsoneditor-right-margin {
212
+ padding-right: 24px;
213
+ }
214
+
215
+ .jsoneditor-contextmenu .jsoneditor-separator {
216
+ height: 0;
217
+ border-top: 1px solid #e5e5e5;
218
+ padding-top: 5px;
219
+ margin-top: 5px;
220
+ }
221
+
222
+ .jsoneditor-contextmenu button.jsoneditor-remove .jsoneditor-icon {
223
+ background-position: -24px 0;
224
+ }
225
+
226
+ .jsoneditor-contextmenu button.jsoneditor-append .jsoneditor-icon {
227
+ background-position: 0 0;
228
+ }
229
+
230
+ .jsoneditor-contextmenu button.jsoneditor-insert .jsoneditor-icon {
231
+ background-position: 0 0;
232
+ }
233
+
234
+ .jsoneditor-contextmenu button.jsoneditor-duplicate .jsoneditor-icon {
235
+ background-position: -48px 0;
236
+ }
237
+
238
+ .jsoneditor-contextmenu button.jsoneditor-sort-asc .jsoneditor-icon {
239
+ background-position: -168px 0;
240
+ }
241
+
242
+ .jsoneditor-contextmenu button.jsoneditor-sort-desc .jsoneditor-icon {
243
+ background-position: -192px 0;
244
+ }
245
+
246
+ .jsoneditor-contextmenu button.jsoneditor-transform .jsoneditor-icon {
247
+ background-position: -216px 0;
248
+ }
249
+
250
+ .jsoneditor-contextmenu button.jsoneditor-extract .jsoneditor-icon {
251
+ background-position: 0 -24px;
252
+ }
253
+
254
+ .jsoneditor-contextmenu button.jsoneditor-type-string .jsoneditor-icon {
255
+ background-position: -144px 0;
256
+ }
257
+
258
+ .jsoneditor-contextmenu button.jsoneditor-type-auto .jsoneditor-icon {
259
+ background-position: -120px 0;
260
+ }
261
+
262
+ .jsoneditor-contextmenu button.jsoneditor-type-object .jsoneditor-icon {
263
+ background-position: -72px 0;
264
+ }
265
+
266
+ .jsoneditor-contextmenu button.jsoneditor-type-array .jsoneditor-icon {
267
+ background-position: -96px 0;
268
+ }
269
+
270
+ .jsoneditor-contextmenu button.jsoneditor-type-modes .jsoneditor-icon {
271
+ background-image: none;
272
+ width: 6px;
273
+ }
274
+
275
+ .jsoneditor-contextmenu ul,
276
+ .jsoneditor-contextmenu li {
277
+ box-sizing: content-box;
278
+ position: relative;
279
+ }
280
+
281
+ .jsoneditor-contextmenu .jsoneditor-menu button:hover,
282
+ .jsoneditor-contextmenu .jsoneditor-menu button:focus {
283
+ color: #1a1a1a;
284
+ background-color: #f5f5f5;
285
+ outline: none;
286
+ }
287
+
288
+ .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected,
289
+ .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:hover,
290
+ .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:focus {
291
+ color: #ffffff;
292
+ background-color: #ee422e;
293
+ }
294
+
295
+ .jsoneditor-contextmenu .jsoneditor-menu li ul li button:hover,
296
+ .jsoneditor-contextmenu .jsoneditor-menu li ul li button:focus {
297
+ background-color: #f5f5f5;
298
+ }
299
+
300
+ .jsoneditor-modal {
301
+ max-width: 95%;
302
+ border-radius: 2px !important;
303
+ padding: 45px 15px 15px 15px !important;
304
+ box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
305
+ color: #4d4d4d;
306
+ line-height: 1.3em;
307
+ }
308
+
309
+ .jsoneditor-modal.jsoneditor-modal-transform {
310
+ width: 600px !important;
311
+ }
312
+
313
+ .jsoneditor-modal .pico-modal-header {
314
+ position: absolute;
315
+ box-sizing: border-box;
316
+ top: 0;
317
+ left: 0;
318
+ width: 100%;
319
+ padding: 0 10px;
320
+ height: 30px;
321
+ line-height: 30px;
322
+ font-family: arial, sans-serif;
323
+ font-size: 11pt;
324
+ background: #1890ff;
325
+ color: #ffffff;
326
+ }
327
+
328
+ .jsoneditor-modal table {
329
+ width: 100%;
330
+ }
331
+
332
+ .jsoneditor-modal table td {
333
+ padding: 3px 0;
334
+ }
335
+
336
+ .jsoneditor-modal table td.jsoneditor-modal-input {
337
+ text-align: right;
338
+ padding-right: 0;
339
+ white-space: nowrap;
340
+ }
341
+
342
+ .jsoneditor-modal table td.jsoneditor-modal-actions {
343
+ padding-top: 15px;
344
+ }
345
+
346
+ .jsoneditor-modal table th {
347
+ vertical-align: middle;
348
+ }
349
+
350
+ .jsoneditor-modal p:first-child {
351
+ margin-top: 0;
352
+ }
353
+
354
+ .jsoneditor-modal a {
355
+ color: #1890ff;
356
+ }
357
+
358
+ .jsoneditor-modal .jsoneditor-jmespath-block {
359
+ margin-bottom: 10px;
360
+ }
361
+
362
+ .jsoneditor-modal .pico-close {
363
+ background: none !important;
364
+ font-size: 24px !important;
365
+ top: 7px !important;
366
+ right: 7px !important;
367
+ color: #ffffff;
368
+ }
369
+
370
+ .jsoneditor-modal input {
371
+ padding: 4px;
372
+ }
373
+
374
+ .jsoneditor-modal input[type=text] {
375
+ cursor: inherit;
376
+ }
377
+
378
+ .jsoneditor-modal input[disabled] {
379
+ background: #d3d3d3;
380
+ color: #808080;
381
+ }
382
+
383
+ .jsoneditor-modal .jsoneditor-select-wrapper {
384
+ position: relative;
385
+ display: inline-block;
386
+ }
387
+
388
+ .jsoneditor-modal .jsoneditor-select-wrapper:after {
389
+ content: "";
390
+ width: 0;
391
+ height: 0;
392
+ border-left: 5px solid transparent;
393
+ border-right: 5px solid transparent;
394
+ border-top: 6px solid #666;
395
+ position: absolute;
396
+ right: 8px;
397
+ top: 14px;
398
+ pointer-events: none;
399
+ }
400
+
401
+ .jsoneditor-modal select {
402
+ padding: 3px 24px 3px 10px;
403
+ min-width: 180px;
404
+ max-width: 350px;
405
+ -webkit-appearance: none;
406
+ -moz-appearance: none;
407
+ appearance: none;
408
+ text-indent: 0;
409
+ text-overflow: "";
410
+ font-size: 14px;
411
+ line-height: 1.5em;
412
+ }
413
+
414
+ .jsoneditor-modal select::-ms-expand {
415
+ display: none;
416
+ }
417
+
418
+ .jsoneditor-modal .jsoneditor-button-group input {
419
+ padding: 4px 10px;
420
+ margin: 0;
421
+ border-radius: 0;
422
+ border-left-style: none;
423
+ }
424
+
425
+ .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-first {
426
+ border-top-left-radius: 3px;
427
+ border-bottom-left-radius: 3px;
428
+ border-left-style: solid;
429
+ }
430
+
431
+ .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-last {
432
+ border-top-right-radius: 3px;
433
+ border-bottom-right-radius: 3px;
434
+ }
435
+
436
+ .jsoneditor-modal .jsoneditor-transform-preview {
437
+ background: #f5f5f5;
438
+ height: 200px;
439
+ }
440
+
441
+ .jsoneditor-modal .jsoneditor-transform-preview.jsoneditor-error {
442
+ color: #ee422e;
443
+ }
444
+
445
+ .jsoneditor-modal .jsoneditor-jmespath-wizard {
446
+ line-height: 1.2em;
447
+ width: 100%;
448
+ padding: 0;
449
+ border-radius: 3px;
450
+ }
451
+
452
+ .jsoneditor-modal .jsoneditor-jmespath-label {
453
+ font-weight: bold;
454
+ color: dodgerblue;
455
+ margin-top: 20px;
456
+ margin-bottom: 5px;
457
+ }
458
+
459
+ .jsoneditor-modal .jsoneditor-jmespath-wizard-table {
460
+ width: 100%;
461
+ border-collapse: collapse;
462
+ }
463
+
464
+ .jsoneditor-modal .jsoneditor-jmespath-wizard-label {
465
+ font-style: italic;
466
+ margin: 4px 0 2px 0;
467
+ }
468
+
469
+ .jsoneditor-modal .jsoneditor-inline {
470
+ position: relative;
471
+ display: inline-block;
472
+ width: 100%;
473
+ padding-top: 2px;
474
+ padding-bottom: 2px;
475
+ }
476
+
477
+ .jsoneditor-modal .jsoneditor-inline:not(:last-child) {
478
+ padding-right: 2px;
479
+ }
480
+
481
+ .jsoneditor-modal .jsoneditor-jmespath-filter {
482
+ display: flex;
483
+ flex-wrap: wrap;
484
+ }
485
+
486
+ .jsoneditor-modal .jsoneditor-jmespath-filter-field {
487
+ width: 180px;
488
+ }
489
+
490
+ .jsoneditor-modal .jsoneditor-jmespath-filter-relation {
491
+ width: 100px;
492
+ }
493
+
494
+ .jsoneditor-modal .jsoneditor-jmespath-filter-value {
495
+ min-width: 180px;
496
+ flex: 1;
497
+ }
498
+
499
+ .jsoneditor-modal .jsoneditor-jmespath-sort-field {
500
+ width: 170px;
501
+ }
502
+
503
+ .jsoneditor-modal .jsoneditor-jmespath-sort-order {
504
+ width: 150px;
505
+ }
506
+
507
+ .jsoneditor-modal .jsoneditor-jmespath-select-fields {
508
+ width: 100%;
509
+ }
510
+
511
+ .jsoneditor-modal .selectr-selected {
512
+ border-color: #d3d3d3;
513
+ padding: 4px 28px 4px 8px;
514
+ }
515
+
516
+ .jsoneditor-modal .selectr-selected .selectr-tag {
517
+ background-color: #1890ff;
518
+ border-radius: 5px;
519
+ }
520
+
521
+ .jsoneditor-modal table th,
522
+ .jsoneditor-modal table td {
523
+ text-align: left;
524
+ vertical-align: middle;
525
+ font-weight: normal;
526
+ color: #4d4d4d;
527
+ border-spacing: 0;
528
+ border-collapse: collapse;
529
+ }
530
+
531
+ .jsoneditor-modal select,
532
+ .jsoneditor-modal textarea,
533
+ .jsoneditor-modal input,
534
+ .jsoneditor-modal input[type=text],
535
+ .jsoneditor-modal input[type=text]:focus,
536
+ .jsoneditor-modal #query {
537
+ background: #ffffff;
538
+ border: 1px solid #d3d3d3;
539
+ color: #4d4d4d;
540
+ border-radius: 3px;
541
+ padding: 4px;
542
+ }
543
+
544
+ .jsoneditor-modal textarea,
545
+ .jsoneditor-modal #query {
546
+ border-radius: unset;
547
+ }
548
+
549
+ .jsoneditor-modal,
550
+ .jsoneditor-modal table td,
551
+ .jsoneditor-modal table th,
552
+ .jsoneditor-modal select,
553
+ .jsoneditor-modal option,
554
+ .jsoneditor-modal textarea,
555
+ .jsoneditor-modal input,
556
+ .jsoneditor-modal input[type=text],
557
+ .jsoneditor-modal #query {
558
+ font-size: 10.5pt;
559
+ font-family: arial, sans-serif;
560
+ }
561
+
562
+ .jsoneditor-modal #query,
563
+ .jsoneditor-modal .jsoneditor-transform-preview {
564
+ font-family: consolas, menlo, monaco, "Ubuntu Mono", "source-code-pro", monospace;
565
+ font-size: 14px;
566
+ width: 100%;
567
+ box-sizing: border-box;
568
+ }
569
+
570
+ .jsoneditor-modal input[type=button],
571
+ .jsoneditor-modal input[type=submit] {
572
+ background: #f5f5f5;
573
+ padding: 4px 20px;
574
+ }
575
+
576
+ .jsoneditor-modal select,
577
+ .jsoneditor-modal input {
578
+ cursor: pointer;
579
+ }
580
+
581
+ .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-asc input.jsoneditor-button-asc,
582
+ .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-desc input.jsoneditor-button-desc {
583
+ background: #1890ff;
584
+ border-color: #1890ff;
585
+ color: #ffffff;
586
+ }
587
+
588
+ .jsoneditor {
589
+ color: #1a1a1a;
590
+ border: thin solid #1890ff;
591
+ -moz-box-sizing: border-box;
592
+ -webkit-box-sizing: border-box;
593
+ box-sizing: border-box;
594
+ width: 100%;
595
+ height: 100%;
596
+ position: relative;
597
+ padding: 0;
598
+ line-height: 100%;
599
+ }
600
+
601
+ div.jsoneditor-field,
602
+ div.jsoneditor-value,
603
+ div.jsoneditor-readonly,
604
+ div.jsoneditor-default {
605
+ border: 1px solid transparent;
606
+ min-height: 16px;
607
+ min-width: 32px;
608
+ line-height: 16px;
609
+ padding: 2px;
610
+ margin: 1px;
611
+ word-wrap: break-word;
612
+ float: left;
613
+ }
614
+
615
+ div.jsoneditor-field p,
616
+ div.jsoneditor-value p {
617
+ margin: 0;
618
+ }
619
+
620
+ div.jsoneditor-value {
621
+ word-break: break-word;
622
+ }
623
+
624
+ div.jsoneditor-value.jsoneditor-empty::after {
625
+ content: "value";
626
+ }
627
+
628
+ div.jsoneditor-value.jsoneditor-string {
629
+ color: #006000;
630
+ }
631
+
632
+ div.jsoneditor-value.jsoneditor-number {
633
+ color: #ee422e;
634
+ }
635
+
636
+ div.jsoneditor-value.jsoneditor-boolean {
637
+ color: #ff8c00;
638
+ }
639
+
640
+ div.jsoneditor-value.jsoneditor-null {
641
+ color: #004ed0;
642
+ }
643
+
644
+ div.jsoneditor-value.jsoneditor-color-value {
645
+ color: #1a1a1a;
646
+ }
647
+
648
+ div.jsoneditor-value.jsoneditor-invalid {
649
+ color: #1a1a1a;
650
+ }
651
+
652
+ div.jsoneditor-readonly {
653
+ min-width: 16px;
654
+ color: #808080;
655
+ }
656
+
657
+ div.jsoneditor-empty {
658
+ border-color: #d3d3d3;
659
+ border-style: dashed;
660
+ border-radius: 2px;
661
+ }
662
+
663
+ div.jsoneditor-field.jsoneditor-empty::after {
664
+ content: "field";
665
+ }
666
+
667
+ div.jsoneditor td {
668
+ vertical-align: top;
669
+ }
670
+
671
+ div.jsoneditor td.jsoneditor-separator {
672
+ padding: 3px 0;
673
+ vertical-align: top;
674
+ color: #808080;
675
+ }
676
+
677
+ div.jsoneditor td.jsoneditor-tree {
678
+ vertical-align: top;
679
+ }
680
+
681
+ div.jsoneditor.busy pre.jsoneditor-preview {
682
+ background: #f5f5f5;
683
+ color: #808080;
684
+ }
685
+
686
+ div.jsoneditor.busy div.jsoneditor-busy {
687
+ display: inherit;
688
+ }
689
+
690
+ div.jsoneditor code.jsoneditor-preview {
691
+ background: none;
692
+ }
693
+
694
+ div.jsoneditor.jsoneditor-mode-preview pre.jsoneditor-preview {
695
+ width: 100%;
696
+ height: 100%;
697
+ box-sizing: border-box;
698
+ overflow: auto;
699
+ padding: 2px;
700
+ margin: 0;
701
+ white-space: pre-wrap;
702
+ word-break: break-all;
703
+ }
704
+
705
+ div.jsoneditor-default {
706
+ color: #808080;
707
+ padding-left: 10px;
708
+ }
709
+
710
+ div.jsoneditor-tree {
711
+ width: 100%;
712
+ height: 100%;
713
+ position: relative;
714
+ overflow: auto;
715
+ background: #ffffff;
716
+ }
717
+
718
+ div.jsoneditor-tree button.jsoneditor-button {
719
+ width: 24px;
720
+ height: 24px;
721
+ padding: 0;
722
+ margin: 0;
723
+ border: none;
724
+ cursor: pointer;
725
+ background-color: transparent;
726
+ background-image: url("./img/jsoneditor-icons.svg");
727
+ }
728
+
729
+ div.jsoneditor-tree button.jsoneditor-button:focus {
730
+ background-color: #f5f5f5;
731
+ outline: #e5e5e5 solid 1px;
732
+ }
733
+
734
+ div.jsoneditor-tree button.jsoneditor-collapsed {
735
+ background-position: 0 -48px;
736
+ }
737
+
738
+ div.jsoneditor-tree button.jsoneditor-expanded {
739
+ background-position: 0 -72px;
740
+ }
741
+
742
+ div.jsoneditor-tree button.jsoneditor-contextmenu-button {
743
+ background-position: -48px -72px;
744
+ }
745
+
746
+ div.jsoneditor-tree button.jsoneditor-invisible {
747
+ visibility: hidden;
748
+ background: none;
749
+ }
750
+
751
+ div.jsoneditor-tree button.jsoneditor-dragarea {
752
+ background-image: url("./img/jsoneditor-icons.svg");
753
+ background-position: -72px -72px;
754
+ cursor: move;
755
+ }
756
+
757
+ div.jsoneditor-tree *:focus {
758
+ outline: none;
759
+ }
760
+
761
+ div.jsoneditor-tree div.jsoneditor-show-more {
762
+ display: inline-block;
763
+ padding: 3px 4px;
764
+ margin: 2px 0;
765
+ background-color: #e5e5e5;
766
+ border-radius: 3px;
767
+ color: #808080;
768
+ font-family: arial, sans-serif;
769
+ font-size: 14px;
770
+ }
771
+
772
+ div.jsoneditor-tree div.jsoneditor-show-more a {
773
+ display: inline-block;
774
+ color: #808080;
775
+ }
776
+
777
+ div.jsoneditor-tree div.jsoneditor-color {
778
+ display: inline-block;
779
+ width: 12px;
780
+ height: 12px;
781
+ margin: 4px;
782
+ border: 1px solid #808080;
783
+ cursor: pointer;
784
+ }
785
+
786
+ div.jsoneditor-tree div.jsoneditor-color.jsoneditor-color-readonly {
787
+ cursor: inherit;
788
+ }
789
+
790
+ div.jsoneditor-tree div.jsoneditor-date {
791
+ background: #a1a1a1;
792
+ color: #ffffff;
793
+ font-family: arial, sans-serif;
794
+ border-radius: 3px;
795
+ display: inline-block;
796
+ padding: 3px;
797
+ margin: 0 3px;
798
+ }
799
+
800
+ div.jsoneditor-tree table.jsoneditor-tree {
801
+ border-collapse: collapse;
802
+ border-spacing: 0;
803
+ width: 100%;
804
+ }
805
+
806
+ div.jsoneditor-tree .jsoneditor-button {
807
+ display: block;
808
+ }
809
+
810
+ div.jsoneditor-tree .jsoneditor-button.jsoneditor-schema-error {
811
+ width: 24px;
812
+ height: 24px;
813
+ padding: 0;
814
+ margin: 0 4px 0 0;
815
+ background-image: url("./img/jsoneditor-icons.svg");
816
+ background-position: -168px -48px;
817
+ background-color: transparent;
818
+ }
819
+
820
+ div.jsoneditor-outer {
821
+ position: static;
822
+ width: 100%;
823
+ height: 100%;
824
+ margin: 0;
825
+ padding: 0;
826
+ -moz-box-sizing: border-box;
827
+ -webkit-box-sizing: border-box;
828
+ box-sizing: border-box;
829
+ }
830
+
831
+ div.jsoneditor-outer.has-nav-bar {
832
+ margin-top: -26px;
833
+ padding-top: 26px;
834
+ }
835
+
836
+ div.jsoneditor-outer.has-nav-bar.has-main-menu-bar {
837
+ margin-top: -61px;
838
+ padding-top: 61px;
839
+ }
840
+
841
+ div.jsoneditor-outer.has-status-bar {
842
+ margin-bottom: -26px;
843
+ padding-bottom: 26px;
844
+ }
845
+
846
+ div.jsoneditor-outer.has-main-menu-bar {
847
+ margin-top: -35px;
848
+ padding-top: 35px;
849
+ }
850
+
851
+ div.jsoneditor-busy {
852
+ position: absolute;
853
+ top: 15%;
854
+ left: 0;
855
+ box-sizing: border-box;
856
+ width: 100%;
857
+ text-align: center;
858
+ display: none;
859
+ }
860
+
861
+ div.jsoneditor-busy span {
862
+ background-color: #ffffab;
863
+ border: 1px solid #ffee00;
864
+ border-radius: 3px;
865
+ padding: 5px 15px;
866
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
867
+ }
868
+
869
+ div.jsoneditor-field.jsoneditor-empty::after,
870
+ div.jsoneditor-value.jsoneditor-empty::after {
871
+ pointer-events: none;
872
+ color: #d3d3d3;
873
+ font-size: 8pt;
874
+ }
875
+
876
+ div.jsoneditor-value.jsoneditor-url,
877
+ a.jsoneditor-value.jsoneditor-url {
878
+ color: #006000;
879
+ text-decoration: underline;
880
+ }
881
+
882
+ a.jsoneditor-value.jsoneditor-url {
883
+ display: inline-block;
884
+ padding: 2px;
885
+ margin: 2px;
886
+ }
887
+
888
+ a.jsoneditor-value.jsoneditor-url:hover,
889
+ a.jsoneditor-value.jsoneditor-url:focus {
890
+ color: #ee422e;
891
+ }
892
+
893
+ div.jsoneditor-field[contenteditable=true]:focus,
894
+ div.jsoneditor-field[contenteditable=true]:hover,
895
+ div.jsoneditor-value[contenteditable=true]:focus,
896
+ div.jsoneditor-value[contenteditable=true]:hover,
897
+ div.jsoneditor-field.jsoneditor-highlight,
898
+ div.jsoneditor-value.jsoneditor-highlight {
899
+ background-color: #ffffab;
900
+ border: 1px solid #ffee00;
901
+ border-radius: 2px;
902
+ }
903
+
904
+ div.jsoneditor-field.jsoneditor-highlight-active,
905
+ div.jsoneditor-field.jsoneditor-highlight-active:focus,
906
+ div.jsoneditor-field.jsoneditor-highlight-active:hover,
907
+ div.jsoneditor-value.jsoneditor-highlight-active,
908
+ div.jsoneditor-value.jsoneditor-highlight-active:focus,
909
+ div.jsoneditor-value.jsoneditor-highlight-active:hover {
910
+ background-color: #ffee00;
911
+ border: 1px solid #ffc700;
912
+ border-radius: 2px;
913
+ }
914
+
915
+ div.jsoneditor-value.jsoneditor-object,
916
+ div.jsoneditor-value.jsoneditor-array {
917
+ min-width: 16px;
918
+ }
919
+
920
+ div.jsoneditor-tree button.jsoneditor-contextmenu-button:hover,
921
+ div.jsoneditor-tree button.jsoneditor-contextmenu-button:focus,
922
+ div.jsoneditor-tree button.jsoneditor-contextmenu-button.jsoneditor-selected,
923
+ tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button {
924
+ background-position: -48px -48px;
925
+ }
926
+
927
+ div.jsoneditor-tree div.jsoneditor-show-more a:hover,
928
+ div.jsoneditor-tree div.jsoneditor-show-more a:focus {
929
+ color: #ee422e;
930
+ }
931
+
932
+ textarea.jsoneditor-text,
933
+ .ace-jsoneditor {
934
+ min-height: 150px;
935
+ }
936
+
937
+ textarea.jsoneditor-text.ace_editor,
938
+ .ace-jsoneditor.ace_editor {
939
+ font-family: consolas, menlo, monaco, "Ubuntu Mono", "source-code-pro", monospace;
940
+ }
941
+
942
+ textarea.jsoneditor-text {
943
+ width: 100%;
944
+ height: 100%;
945
+ margin: 0;
946
+ -moz-box-sizing: border-box;
947
+ -webkit-box-sizing: border-box;
948
+ box-sizing: border-box;
949
+ outline-width: 0;
950
+ border: none;
951
+ background-color: #ffffff;
952
+ resize: none;
953
+ }
954
+
955
+ tr.jsoneditor-highlight,
956
+ tr.jsoneditor-selected {
957
+ background-color: #d3d3d3;
958
+ }
959
+
960
+ tr.jsoneditor-selected button.jsoneditor-dragarea,
961
+ tr.jsoneditor-selected button.jsoneditor-contextmenu-button {
962
+ visibility: hidden;
963
+ }
964
+
965
+ tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea,
966
+ tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button {
967
+ visibility: visible;
968
+ }
969
+
970
+ div.jsoneditor-tree button.jsoneditor-dragarea:hover,
971
+ div.jsoneditor-tree button.jsoneditor-dragarea:focus,
972
+ tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea {
973
+ background-position: -72px -48px;
974
+ }
975
+
976
+ div.jsoneditor tr,
977
+ div.jsoneditor th,
978
+ div.jsoneditor td {
979
+ padding: 0;
980
+ margin: 0;
981
+ }
982
+
983
+ div.jsoneditor-field,
984
+ div.jsoneditor-value,
985
+ div.jsoneditor td,
986
+ div.jsoneditor th,
987
+ div.jsoneditor textarea,
988
+ pre.jsoneditor-preview,
989
+ .jsoneditor-schema-error,
990
+ .jsoneditor-popover {
991
+ font-family: consolas, menlo, monaco, "Ubuntu Mono", "source-code-pro", monospace;
992
+ font-size: 14px;
993
+ color: #1a1a1a;
994
+ }
995
+
996
+ .jsoneditor-schema-error {
997
+ cursor: default;
998
+ display: inline-block;
999
+ height: 24px;
1000
+ line-height: 24px;
1001
+ position: relative;
1002
+ text-align: center;
1003
+ width: 24px;
1004
+ }
1005
+
1006
+ .jsoneditor-popover {
1007
+ background-color: #4c4c4c;
1008
+ border-radius: 3px;
1009
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
1010
+ color: #ffffff;
1011
+ padding: 7px 10px;
1012
+ position: absolute;
1013
+ cursor: auto;
1014
+ width: 200px;
1015
+ }
1016
+
1017
+ .jsoneditor-popover.jsoneditor-above {
1018
+ bottom: 32px;
1019
+ left: -98px;
1020
+ }
1021
+
1022
+ .jsoneditor-popover.jsoneditor-above:before {
1023
+ border-top: 7px solid #4c4c4c;
1024
+ bottom: -7px;
1025
+ }
1026
+
1027
+ .jsoneditor-popover.jsoneditor-below {
1028
+ top: 32px;
1029
+ left: -98px;
1030
+ }
1031
+
1032
+ .jsoneditor-popover.jsoneditor-below:before {
1033
+ border-bottom: 7px solid #4c4c4c;
1034
+ top: -7px;
1035
+ }
1036
+
1037
+ .jsoneditor-popover.jsoneditor-left {
1038
+ top: -7px;
1039
+ right: 32px;
1040
+ }
1041
+
1042
+ .jsoneditor-popover.jsoneditor-left:before {
1043
+ border-left: 7px solid #4c4c4c;
1044
+ border-top: 7px solid transparent;
1045
+ border-bottom: 7px solid transparent;
1046
+ content: "";
1047
+ top: 19px;
1048
+ right: -14px;
1049
+ left: inherit;
1050
+ margin-left: inherit;
1051
+ margin-top: -7px;
1052
+ position: absolute;
1053
+ }
1054
+
1055
+ .jsoneditor-popover.jsoneditor-right {
1056
+ top: -7px;
1057
+ left: 32px;
1058
+ }
1059
+
1060
+ .jsoneditor-popover.jsoneditor-right:before {
1061
+ border-right: 7px solid #4c4c4c;
1062
+ border-top: 7px solid transparent;
1063
+ border-bottom: 7px solid transparent;
1064
+ content: "";
1065
+ top: 19px;
1066
+ left: -14px;
1067
+ margin-left: inherit;
1068
+ margin-top: -7px;
1069
+ position: absolute;
1070
+ }
1071
+
1072
+ .jsoneditor-popover:before {
1073
+ border-right: 7px solid transparent;
1074
+ border-left: 7px solid transparent;
1075
+ content: "";
1076
+ display: block;
1077
+ left: 50%;
1078
+ margin-left: -7px;
1079
+ position: absolute;
1080
+ }
1081
+
1082
+ .jsoneditor-text-errors tr.jump-to-line:hover {
1083
+ text-decoration: underline;
1084
+ cursor: pointer;
1085
+ }
1086
+
1087
+ .jsoneditor-schema-error:hover .jsoneditor-popover,
1088
+ .jsoneditor-schema-error:focus .jsoneditor-popover {
1089
+ display: block;
1090
+ animation: fade-in 0.3s linear 1, move-up 0.3s linear 1;
1091
+ }
1092
+
1093
+ @keyframes fade-in {
1094
+ from {
1095
+ opacity: 0;
1096
+ }
1097
+
1098
+ to {
1099
+ opacity: 1;
1100
+ }
1101
+ }
1102
+
1103
+ /* JSON schema errors displayed at the bottom of the editor in mode text and code */
1104
+
1105
+ .jsoneditor .jsoneditor-validation-errors-container {
1106
+ max-height: 130px;
1107
+ overflow-y: auto;
1108
+ }
1109
+
1110
+ .jsoneditor .jsoneditor-validation-errors {
1111
+ width: 100%;
1112
+ overflow: hidden;
1113
+ }
1114
+
1115
+ .jsoneditor .jsoneditor-additional-errors {
1116
+ position: absolute;
1117
+ margin: auto;
1118
+ bottom: 31px;
1119
+ left: calc(50% - 92px);
1120
+ color: #808080;
1121
+ background-color: #ebebeb;
1122
+ padding: 7px 15px;
1123
+ border-radius: 8px;
1124
+ }
1125
+
1126
+ .jsoneditor .jsoneditor-additional-errors.visible {
1127
+ visibility: visible;
1128
+ opacity: 1;
1129
+ transition: opacity 2s linear;
1130
+ }
1131
+
1132
+ .jsoneditor .jsoneditor-additional-errors.hidden {
1133
+ visibility: hidden;
1134
+ opacity: 0;
1135
+ transition: visibility 0s 2s, opacity 2s linear;
1136
+ }
1137
+
1138
+ .jsoneditor .jsoneditor-text-errors {
1139
+ width: 100%;
1140
+ border-collapse: collapse;
1141
+ border-top: 1px solid #ffc700;
1142
+ }
1143
+
1144
+ .jsoneditor .jsoneditor-text-errors td {
1145
+ padding: 3px 6px;
1146
+ vertical-align: middle;
1147
+ }
1148
+
1149
+ .jsoneditor .jsoneditor-text-errors td pre {
1150
+ margin: 0;
1151
+ white-space: pre-wrap;
1152
+ }
1153
+
1154
+ .jsoneditor .jsoneditor-text-errors tr {
1155
+ background-color: #ffffab;
1156
+ }
1157
+
1158
+ .jsoneditor .jsoneditor-text-errors tr.parse-error {
1159
+ background-color: rgba(238, 46, 46, 0.4392156863);
1160
+ }
1161
+
1162
+ .jsoneditor-text-errors .jsoneditor-schema-error {
1163
+ border: none;
1164
+ width: 24px;
1165
+ height: 24px;
1166
+ padding: 0;
1167
+ margin: 0 4px 0 0;
1168
+ cursor: pointer;
1169
+ }
1170
+
1171
+ .jsoneditor-text-errors tr .jsoneditor-schema-error {
1172
+ background-image: url("./img/jsoneditor-icons.svg");
1173
+ background-position: -168px -48px;
1174
+ background-color: transparent;
1175
+ }
1176
+
1177
+ .jsoneditor-text-errors tr.parse-error .jsoneditor-schema-error {
1178
+ background-image: url("./img/jsoneditor-icons.svg");
1179
+ background-position: -25px 0px;
1180
+ background-color: transparent;
1181
+ }
1182
+
1183
+ .jsoneditor-anchor {
1184
+ cursor: pointer;
1185
+ }
1186
+
1187
+ .jsoneditor-anchor .picker_wrapper.popup.popup_bottom {
1188
+ top: 28px;
1189
+ left: -10px;
1190
+ }
1191
+
1192
+ .fadein {
1193
+ -webkit-animation: fadein 0.3s;
1194
+ animation: fadein 0.3s;
1195
+ -moz-animation: fadein 0.3s;
1196
+ -o-animation: fadein 0.3s;
1197
+ }
1198
+
1199
+ @keyframes fadein {
1200
+ 0% {
1201
+ opacity: 0;
1202
+ }
1203
+
1204
+ 100% {
1205
+ opacity: 1;
1206
+ }
1207
+ }
1208
+
1209
+ .jsoneditor-modal input[type=search].selectr-input {
1210
+ border: 1px solid #d3d3d3;
1211
+ width: calc(100% - 4px);
1212
+ margin: 2px;
1213
+ padding: 4px;
1214
+ box-sizing: border-box;
1215
+ }
1216
+
1217
+ .jsoneditor-modal button.selectr-input-clear {
1218
+ right: 8px;
1219
+ }
1220
+
1221
+ .jsoneditor-menu {
1222
+ width: 100%;
1223
+ height: 35px;
1224
+ padding: 2px;
1225
+ margin: 0;
1226
+ -moz-box-sizing: border-box;
1227
+ -webkit-box-sizing: border-box;
1228
+ box-sizing: border-box;
1229
+ color: #ffffff;
1230
+ background-color: #1890ff;
1231
+ border-bottom: 1px solid #1890ff;
1232
+ }
1233
+
1234
+ .jsoneditor-menu > button,
1235
+ .jsoneditor-menu > .jsoneditor-modes > button {
1236
+ width: 26px;
1237
+ height: 26px;
1238
+ margin: 2px;
1239
+ padding: 0;
1240
+ border-radius: 2px;
1241
+ border: 1px solid transparent;
1242
+ background-color: transparent;
1243
+ background-image: url("./img/jsoneditor-icons.svg");
1244
+ color: #ffffff;
1245
+ opacity: 0.8;
1246
+ font-family: arial, sans-serif;
1247
+ font-size: 14px;
1248
+ float: left;
1249
+ }
1250
+
1251
+ .jsoneditor-menu > button:hover,
1252
+ .jsoneditor-menu > .jsoneditor-modes > button:hover {
1253
+ background-color: rgba(255, 255, 255, 0.2);
1254
+ border: 1px solid rgba(255, 255, 255, 0.4);
1255
+ }
1256
+
1257
+ .jsoneditor-menu > button:focus,
1258
+ .jsoneditor-menu > button:active,
1259
+ .jsoneditor-menu > .jsoneditor-modes > button:focus,
1260
+ .jsoneditor-menu > .jsoneditor-modes > button:active {
1261
+ background-color: rgba(255, 255, 255, 0.3);
1262
+ }
1263
+
1264
+ .jsoneditor-menu > button:disabled,
1265
+ .jsoneditor-menu > .jsoneditor-modes > button:disabled {
1266
+ opacity: 0.5;
1267
+ background-color: transparent;
1268
+ border: none;
1269
+ }
1270
+
1271
+ .jsoneditor-menu > button.jsoneditor-collapse-all {
1272
+ background-position: 0 -96px;
1273
+ }
1274
+
1275
+ .jsoneditor-menu > button.jsoneditor-expand-all {
1276
+ background-position: 0 -120px;
1277
+ }
1278
+
1279
+ .jsoneditor-menu > button.jsoneditor-sort {
1280
+ background-position: -120px -96px;
1281
+ }
1282
+
1283
+ .jsoneditor-menu > button.jsoneditor-transform {
1284
+ background-position: -144px -96px;
1285
+ }
1286
+
1287
+ .jsoneditor.jsoneditor-mode-view > .jsoneditor-menu > button.jsoneditor-sort,
1288
+ .jsoneditor.jsoneditor-mode-form > .jsoneditor-menu > button.jsoneditor-sort,
1289
+ .jsoneditor.jsoneditor-mode-view > .jsoneditor-menu > button.jsoneditor-transform,
1290
+ .jsoneditor.jsoneditor-mode-form > .jsoneditor-menu > button.jsoneditor-transform {
1291
+ display: none;
1292
+ }
1293
+
1294
+ .jsoneditor-menu > button.jsoneditor-undo {
1295
+ background-position: -24px -96px;
1296
+ }
1297
+
1298
+ .jsoneditor-menu > button.jsoneditor-undo:disabled {
1299
+ background-position: -24px -120px;
1300
+ }
1301
+
1302
+ .jsoneditor-menu > button.jsoneditor-redo {
1303
+ background-position: -48px -96px;
1304
+ }
1305
+
1306
+ .jsoneditor-menu > button.jsoneditor-redo:disabled {
1307
+ background-position: -48px -120px;
1308
+ }
1309
+
1310
+ .jsoneditor-menu > button.jsoneditor-compact {
1311
+ background-position: -72px -96px;
1312
+ }
1313
+
1314
+ .jsoneditor-menu > button.jsoneditor-format {
1315
+ background-position: -72px -120px;
1316
+ }
1317
+
1318
+ .jsoneditor-menu > button.jsoneditor-repair {
1319
+ background-position: -96px -96px;
1320
+ }
1321
+
1322
+ .jsoneditor-menu > .jsoneditor-modes {
1323
+ display: inline-block;
1324
+ float: left;
1325
+ }
1326
+
1327
+ .jsoneditor-menu > .jsoneditor-modes > button {
1328
+ background-image: none;
1329
+ width: auto;
1330
+ padding-left: 6px;
1331
+ padding-right: 6px;
1332
+ }
1333
+
1334
+ .jsoneditor-menu > button.jsoneditor-separator,
1335
+ .jsoneditor-menu > .jsoneditor-modes > button.jsoneditor-separator {
1336
+ margin-left: 10px;
1337
+ }
1338
+
1339
+ .jsoneditor-menu a {
1340
+ font-family: arial, sans-serif;
1341
+ font-size: 14px;
1342
+ color: #ffffff;
1343
+ opacity: 0.8;
1344
+ vertical-align: middle;
1345
+ }
1346
+
1347
+ .jsoneditor-menu a:hover {
1348
+ opacity: 1;
1349
+ }
1350
+
1351
+ .jsoneditor-menu a.jsoneditor-poweredBy {
1352
+ font-size: 8pt;
1353
+ position: absolute;
1354
+ right: 0;
1355
+ top: 0;
1356
+ padding: 10px;
1357
+ }
1358
+
1359
+ .jsoneditor-navigation-bar {
1360
+ width: 100%;
1361
+ height: 26px;
1362
+ line-height: 26px;
1363
+ padding: 0;
1364
+ margin: 0;
1365
+ border-bottom: 1px solid #d3d3d3;
1366
+ -moz-box-sizing: border-box;
1367
+ -webkit-box-sizing: border-box;
1368
+ box-sizing: border-box;
1369
+ color: #808080;
1370
+ background-color: #ebebeb;
1371
+ overflow: hidden;
1372
+ font-family: arial, sans-serif;
1373
+ font-size: 14px;
1374
+ }
1375
+
1376
+ .jsoneditor-search {
1377
+ font-family: arial, sans-serif;
1378
+ position: absolute;
1379
+ right: 4px;
1380
+ top: 4px;
1381
+ border-collapse: collapse;
1382
+ border-spacing: 0;
1383
+ display: flex;
1384
+ }
1385
+
1386
+ .jsoneditor-search input {
1387
+ color: #1a1a1a;
1388
+ width: 120px;
1389
+ border: none;
1390
+ outline: none;
1391
+ margin: 1px;
1392
+ line-height: 20px;
1393
+ font-family: arial, sans-serif;
1394
+ }
1395
+
1396
+ .jsoneditor-search button {
1397
+ width: 16px;
1398
+ height: 24px;
1399
+ padding: 0;
1400
+ margin: 0;
1401
+ border: none;
1402
+ background: url("./img/jsoneditor-icons.svg");
1403
+ vertical-align: top;
1404
+ }
1405
+
1406
+ .jsoneditor-search button:hover {
1407
+ background-color: transparent;
1408
+ }
1409
+
1410
+ .jsoneditor-search button.jsoneditor-refresh {
1411
+ width: 18px;
1412
+ background-position: -99px -73px;
1413
+ }
1414
+
1415
+ .jsoneditor-search button.jsoneditor-next {
1416
+ cursor: pointer;
1417
+ background-position: -124px -73px;
1418
+ }
1419
+
1420
+ .jsoneditor-search button.jsoneditor-next:hover {
1421
+ background-position: -124px -49px;
1422
+ }
1423
+
1424
+ .jsoneditor-search button.jsoneditor-previous {
1425
+ cursor: pointer;
1426
+ background-position: -148px -73px;
1427
+ margin-right: 2px;
1428
+ }
1429
+
1430
+ .jsoneditor-search button.jsoneditor-previous:hover {
1431
+ background-position: -148px -49px;
1432
+ }
1433
+
1434
+ .jsoneditor-results {
1435
+ font-family: arial, sans-serif;
1436
+ color: #ffffff;
1437
+ padding-right: 5px;
1438
+ line-height: 26px;
1439
+ }
1440
+
1441
+ .jsoneditor-frame {
1442
+ border: 1px solid transparent;
1443
+ background-color: #ffffff;
1444
+ padding: 0 2px;
1445
+ margin: 0;
1446
+ }
1447
+
1448
+ .jsoneditor-statusbar {
1449
+ line-height: 26px;
1450
+ height: 26px;
1451
+ color: #808080;
1452
+ background-color: #ebebeb;
1453
+ border-top: 1px solid #d3d3d3;
1454
+ -moz-box-sizing: border-box;
1455
+ -webkit-box-sizing: border-box;
1456
+ box-sizing: border-box;
1457
+ font-size: 14px;
1458
+ }
1459
+
1460
+ .jsoneditor-statusbar > .jsoneditor-curserinfo-val {
1461
+ margin-right: 12px;
1462
+ }
1463
+
1464
+ .jsoneditor-statusbar > .jsoneditor-curserinfo-count {
1465
+ margin-left: 4px;
1466
+ }
1467
+
1468
+ .jsoneditor-statusbar > .jsoneditor-validation-error-icon {
1469
+ float: right;
1470
+ width: 24px;
1471
+ height: 24px;
1472
+ padding: 0;
1473
+ margin-top: 1px;
1474
+ background-image: url("./img/jsoneditor-icons.svg");
1475
+ background-position: -168px -48px;
1476
+ cursor: pointer;
1477
+ }
1478
+
1479
+ .jsoneditor-statusbar > .jsoneditor-validation-error-count {
1480
+ float: right;
1481
+ margin: 0 4px 0 0;
1482
+ cursor: pointer;
1483
+ }
1484
+
1485
+ .jsoneditor-statusbar > .jsoneditor-parse-error-icon {
1486
+ float: right;
1487
+ width: 24px;
1488
+ height: 24px;
1489
+ padding: 0;
1490
+ margin: 1px;
1491
+ background-image: url("./img/jsoneditor-icons.svg");
1492
+ background-position: -25px 0px;
1493
+ }
1494
+
1495
+ .jsoneditor-statusbar .jsoneditor-array-info a {
1496
+ color: inherit;
1497
+ }
1498
+
1499
+ div.jsoneditor-statusbar > .jsoneditor-curserinfo-label,
1500
+ div.jsoneditor-statusbar > .jsoneditor-size-info {
1501
+ margin: 0 4px;
1502
+ }
1503
+
1504
+ .jsoneditor-treepath {
1505
+ padding: 0 5px;
1506
+ overflow: hidden;
1507
+ white-space: nowrap;
1508
+ outline: none;
1509
+ }
1510
+
1511
+ .jsoneditor-treepath.show-all {
1512
+ word-wrap: break-word;
1513
+ white-space: normal;
1514
+ position: absolute;
1515
+ background-color: #ebebeb;
1516
+ z-index: 1;
1517
+ box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
1518
+ }
1519
+
1520
+ .jsoneditor-treepath.show-all span.jsoneditor-treepath-show-all-btn {
1521
+ display: none;
1522
+ }
1523
+
1524
+ .jsoneditor-treepath div.jsoneditor-contextmenu-root {
1525
+ position: absolute;
1526
+ left: 0;
1527
+ }
1528
+
1529
+ .jsoneditor-treepath .jsoneditor-treepath-show-all-btn {
1530
+ position: absolute;
1531
+ background-color: #ebebeb;
1532
+ left: 0;
1533
+ height: 20px;
1534
+ padding: 0 3px;
1535
+ cursor: pointer;
1536
+ }
1537
+
1538
+ .jsoneditor-treepath .jsoneditor-treepath-element {
1539
+ margin: 1px;
1540
+ font-family: arial, sans-serif;
1541
+ font-size: 14px;
1542
+ }
1543
+
1544
+ .jsoneditor-treepath .jsoneditor-treepath-seperator {
1545
+ margin: 2px;
1546
+ font-size: 9pt;
1547
+ font-family: arial, sans-serif;
1548
+ }
1549
+
1550
+ .jsoneditor-treepath span.jsoneditor-treepath-element:hover,
1551
+ .jsoneditor-treepath span.jsoneditor-treepath-seperator:hover {
1552
+ cursor: pointer;
1553
+ text-decoration: underline;
1554
+ }
1555
+
1556
+ /*!
1557
+ * Selectr 2.4.13
1558
+ * http://mobius.ovh/docs/selectr
1559
+ *
1560
+ * Released under the MIT license
1561
+ */
1562
+
1563
+ .selectr-container {
1564
+ position: relative;
1565
+ }
1566
+
1567
+ .selectr-container li {
1568
+ list-style: none;
1569
+ }
1570
+
1571
+ .selectr-hidden {
1572
+ position: absolute;
1573
+ overflow: hidden;
1574
+ clip: rect(0px, 0px, 0px, 0px);
1575
+ width: 1px;
1576
+ height: 1px;
1577
+ margin: -1px;
1578
+ padding: 0;
1579
+ border: 0 none;
1580
+ }
1581
+
1582
+ .selectr-visible {
1583
+ position: absolute;
1584
+ left: 0;
1585
+ top: 0;
1586
+ width: 100%;
1587
+ height: 100%;
1588
+ opacity: 0;
1589
+ z-index: 11;
1590
+ }
1591
+
1592
+ .selectr-desktop.multiple .selectr-visible {
1593
+ display: none;
1594
+ }
1595
+
1596
+ .selectr-desktop.multiple.native-open .selectr-visible {
1597
+ top: 100%;
1598
+ min-height: 200px !important;
1599
+ height: auto;
1600
+ opacity: 1;
1601
+ display: block;
1602
+ }
1603
+
1604
+ .selectr-container.multiple.selectr-mobile .selectr-selected {
1605
+ z-index: 0;
1606
+ }
1607
+
1608
+ .selectr-selected {
1609
+ position: relative;
1610
+ z-index: 1;
1611
+ box-sizing: border-box;
1612
+ width: 100%;
1613
+ padding: 7px 28px 7px 14px;
1614
+ cursor: pointer;
1615
+ border: 1px solid #999999;
1616
+ border-radius: 3px;
1617
+ background-color: #ffffff;
1618
+ }
1619
+
1620
+ .selectr-selected::before {
1621
+ position: absolute;
1622
+ top: 50%;
1623
+ right: 10px;
1624
+ width: 0;
1625
+ height: 0;
1626
+ content: "";
1627
+ -o-transform: rotate(0deg) translate3d(0px, -50%, 0px);
1628
+ -ms-transform: rotate(0deg) translate3d(0px, -50%, 0px);
1629
+ -moz-transform: rotate(0deg) translate3d(0px, -50%, 0px);
1630
+ -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
1631
+ transform: rotate(0deg) translate3d(0px, -50%, 0px);
1632
+ border-width: 4px 4px 0 4px;
1633
+ border-style: solid;
1634
+ border-color: #6c7a86 transparent transparent;
1635
+ }
1636
+
1637
+ .selectr-container.open .selectr-selected::before,
1638
+ .selectr-container.native-open .selectr-selected::before {
1639
+ border-width: 0 4px 4px 4px;
1640
+ border-style: solid;
1641
+ border-color: transparent transparent #6c7a86;
1642
+ }
1643
+
1644
+ .selectr-label {
1645
+ display: none;
1646
+ overflow: hidden;
1647
+ width: 100%;
1648
+ white-space: nowrap;
1649
+ text-overflow: ellipsis;
1650
+ }
1651
+
1652
+ .selectr-placeholder {
1653
+ color: #6c7a86;
1654
+ }
1655
+
1656
+ .selectr-tags {
1657
+ margin: 0;
1658
+ padding: 0;
1659
+ white-space: normal;
1660
+ }
1661
+
1662
+ .has-selected .selectr-tags {
1663
+ margin: 0 0 -2px;
1664
+ }
1665
+
1666
+ .selectr-tag {
1667
+ list-style: none;
1668
+ position: relative;
1669
+ float: left;
1670
+ padding: 2px 25px 2px 8px;
1671
+ margin: 0 2px 2px 0;
1672
+ cursor: default;
1673
+ color: #ffffff;
1674
+ border: medium none;
1675
+ border-radius: 10px;
1676
+ background: #acb7bf none repeat scroll 0 0;
1677
+ }
1678
+
1679
+ .selectr-container.multiple.has-selected .selectr-selected {
1680
+ padding: 5px 28px 5px 5px;
1681
+ }
1682
+
1683
+ .selectr-options-container {
1684
+ position: absolute;
1685
+ z-index: 10000;
1686
+ top: calc(100% - 1px);
1687
+ left: 0;
1688
+ display: none;
1689
+ box-sizing: border-box;
1690
+ width: 100%;
1691
+ border-width: 0 1px 1px;
1692
+ border-style: solid;
1693
+ border-color: transparent #999999 #999999;
1694
+ border-radius: 0 0 3px 3px;
1695
+ background-color: #ffffff;
1696
+ }
1697
+
1698
+ .selectr-container.open .selectr-options-container {
1699
+ display: block;
1700
+ }
1701
+
1702
+ .selectr-input-container {
1703
+ position: relative;
1704
+ display: none;
1705
+ }
1706
+
1707
+ .selectr-clear,
1708
+ .selectr-input-clear,
1709
+ .selectr-tag-remove {
1710
+ position: absolute;
1711
+ top: 50%;
1712
+ right: 22px;
1713
+ width: 20px;
1714
+ height: 20px;
1715
+ padding: 0;
1716
+ cursor: pointer;
1717
+ -o-transform: translate3d(0px, -50%, 0px);
1718
+ -ms-transform: translate3d(0px, -50%, 0px);
1719
+ -moz-transform: translate3d(0px, -50%, 0px);
1720
+ -webkit-transform: translate3d(0px, -50%, 0px);
1721
+ transform: translate3d(0px, -50%, 0px);
1722
+ border: medium none;
1723
+ background-color: transparent;
1724
+ z-index: 11;
1725
+ }
1726
+
1727
+ .selectr-clear,
1728
+ .selectr-input-clear {
1729
+ display: none;
1730
+ }
1731
+
1732
+ .selectr-container.has-selected .selectr-clear,
1733
+ .selectr-input-container.active .selectr-input-clear {
1734
+ display: block;
1735
+ }
1736
+
1737
+ .selectr-selected .selectr-tag-remove {
1738
+ right: 2px;
1739
+ }
1740
+
1741
+ .selectr-clear::before,
1742
+ .selectr-clear::after,
1743
+ .selectr-input-clear::before,
1744
+ .selectr-input-clear::after,
1745
+ .selectr-tag-remove::before,
1746
+ .selectr-tag-remove::after {
1747
+ position: absolute;
1748
+ top: 5px;
1749
+ left: 9px;
1750
+ width: 2px;
1751
+ height: 10px;
1752
+ content: " ";
1753
+ background-color: #6c7a86;
1754
+ }
1755
+
1756
+ .selectr-tag-remove::before,
1757
+ .selectr-tag-remove::after {
1758
+ top: 4px;
1759
+ width: 3px;
1760
+ height: 12px;
1761
+ background-color: #ffffff;
1762
+ }
1763
+
1764
+ .selectr-clear:before,
1765
+ .selectr-input-clear::before,
1766
+ .selectr-tag-remove::before {
1767
+ -o-transform: rotate(45deg);
1768
+ -ms-transform: rotate(45deg);
1769
+ -moz-transform: rotate(45deg);
1770
+ -webkit-transform: rotate(45deg);
1771
+ transform: rotate(45deg);
1772
+ }
1773
+
1774
+ .selectr-clear:after,
1775
+ .selectr-input-clear::after,
1776
+ .selectr-tag-remove::after {
1777
+ -o-transform: rotate(-45deg);
1778
+ -ms-transform: rotate(-45deg);
1779
+ -moz-transform: rotate(-45deg);
1780
+ -webkit-transform: rotate(-45deg);
1781
+ transform: rotate(-45deg);
1782
+ }
1783
+
1784
+ .selectr-input-container.active,
1785
+ .selectr-input-container.active .selectr-clear {
1786
+ display: block;
1787
+ }
1788
+
1789
+ .selectr-input {
1790
+ top: 5px;
1791
+ left: 5px;
1792
+ box-sizing: border-box;
1793
+ width: calc(100% - 30px);
1794
+ margin: 10px 15px;
1795
+ padding: 7px 30px 7px 9px;
1796
+ border: 1px solid #999999;
1797
+ border-radius: 3px;
1798
+ }
1799
+
1800
+ .selectr-notice {
1801
+ display: none;
1802
+ box-sizing: border-box;
1803
+ width: 100%;
1804
+ padding: 8px 16px;
1805
+ border-top: 1px solid #999999;
1806
+ border-radius: 0 0 3px 3px;
1807
+ background-color: #ffffff;
1808
+ }
1809
+
1810
+ .selectr-container.notice .selectr-notice {
1811
+ display: block;
1812
+ }
1813
+
1814
+ .selectr-container.notice .selectr-selected {
1815
+ border-radius: 3px 3px 0 0;
1816
+ }
1817
+
1818
+ .selectr-options {
1819
+ position: relative;
1820
+ top: calc(100% + 2px);
1821
+ display: none;
1822
+ overflow-x: auto;
1823
+ overflow-y: scroll;
1824
+ max-height: 200px;
1825
+ margin: 0;
1826
+ padding: 0;
1827
+ }
1828
+
1829
+ .selectr-container.open .selectr-options,
1830
+ .selectr-container.open .selectr-input-container,
1831
+ .selectr-container.notice .selectr-options-container {
1832
+ display: block;
1833
+ }
1834
+
1835
+ .selectr-option {
1836
+ position: relative;
1837
+ display: block;
1838
+ padding: 5px 20px;
1839
+ list-style: outside none none;
1840
+ cursor: pointer;
1841
+ font-weight: normal;
1842
+ }
1843
+
1844
+ .selectr-options.optgroups > .selectr-option {
1845
+ padding-left: 25px;
1846
+ }
1847
+
1848
+ .selectr-optgroup {
1849
+ font-weight: bold;
1850
+ padding: 0;
1851
+ }
1852
+
1853
+ .selectr-optgroup--label {
1854
+ font-weight: bold;
1855
+ margin-top: 10px;
1856
+ padding: 5px 15px;
1857
+ }
1858
+
1859
+ .selectr-match {
1860
+ text-decoration: underline;
1861
+ }
1862
+
1863
+ .selectr-option.selected {
1864
+ background-color: #ddd;
1865
+ }
1866
+
1867
+ .selectr-option.active {
1868
+ color: #ffffff;
1869
+ background-color: #5897fb;
1870
+ }
1871
+
1872
+ .selectr-option.disabled {
1873
+ opacity: 0.4;
1874
+ }
1875
+
1876
+ .selectr-option.excluded {
1877
+ display: none;
1878
+ }
1879
+
1880
+ .selectr-container.open .selectr-selected {
1881
+ border-color: #999999 #999999 transparent #999999;
1882
+ border-radius: 3px 3px 0 0;
1883
+ }
1884
+
1885
+ .selectr-container.open .selectr-selected::after {
1886
+ -o-transform: rotate(180deg) translate3d(0px, 50%, 0px);
1887
+ -ms-transform: rotate(180deg) translate3d(0px, 50%, 0px);
1888
+ -moz-transform: rotate(180deg) translate3d(0px, 50%, 0px);
1889
+ -webkit-transform: rotate(180deg) translate3d(0px, 50%, 0px);
1890
+ transform: rotate(180deg) translate3d(0px, 50%, 0px);
1891
+ }
1892
+
1893
+ .selectr-disabled {
1894
+ opacity: 0.6;
1895
+ }
1896
+
1897
+ .selectr-empty,
1898
+ .has-selected .selectr-placeholder {
1899
+ display: none;
1900
+ }
1901
+
1902
+ .has-selected .selectr-label {
1903
+ display: block;
1904
+ }
1905
+
1906
+ /* TAGGABLE */
1907
+
1908
+ .taggable .selectr-selected {
1909
+ padding: 4px 28px 4px 4px;
1910
+ }
1911
+
1912
+ .taggable .selectr-selected::after {
1913
+ display: table;
1914
+ content: " ";
1915
+ clear: both;
1916
+ }
1917
+
1918
+ .taggable .selectr-label {
1919
+ width: auto;
1920
+ }
1921
+
1922
+ .taggable .selectr-tags {
1923
+ float: left;
1924
+ display: block;
1925
+ }
1926
+
1927
+ .taggable .selectr-placeholder {
1928
+ display: none;
1929
+ }
1930
+
1931
+ .input-tag {
1932
+ float: left;
1933
+ min-width: 90px;
1934
+ width: auto;
1935
+ }
1936
+
1937
+ .selectr-tag-input {
1938
+ border: medium none;
1939
+ padding: 3px 10px;
1940
+ width: 100%;
1941
+ font-family: inherit;
1942
+ font-weight: inherit;
1943
+ font-size: inherit;
1944
+ }
1945
+
1946
+ .selectr-input-container.loading::after {
1947
+ position: absolute;
1948
+ top: 50%;
1949
+ right: 20px;
1950
+ width: 20px;
1951
+ height: 20px;
1952
+ content: "";
1953
+ -o-transform: translate3d(0px, -50%, 0px);
1954
+ -ms-transform: translate3d(0px, -50%, 0px);
1955
+ -moz-transform: translate3d(0px, -50%, 0px);
1956
+ -webkit-transform: translate3d(0px, -50%, 0px);
1957
+ transform: translate3d(0px, -50%, 0px);
1958
+ -o-transform-origin: 50% 0 0;
1959
+ -ms-transform-origin: 50% 0 0;
1960
+ -moz-transform-origin: 50% 0 0;
1961
+ -webkit-transform-origin: 50% 0 0;
1962
+ transform-origin: 50% 0 0;
1963
+ -moz-animation: 500ms linear 0s normal forwards infinite running selectr-spin;
1964
+ -webkit-animation: 500ms linear 0s normal forwards infinite running selectr-spin;
1965
+ animation: 500ms linear 0s normal forwards infinite running selectr-spin;
1966
+ border-width: 3px;
1967
+ border-style: solid;
1968
+ border-color: #aaa #ddd #ddd;
1969
+ border-radius: 50%;
1970
+ }
1971
+
1972
+ @-webkit-keyframes selectr-spin {
1973
+ 0% {
1974
+ -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
1975
+ transform: rotate(0deg) translate3d(0px, -50%, 0px);
1976
+ }
1977
+
1978
+ 100% {
1979
+ -webkit-transform: rotate(360deg) translate3d(0px, -50%, 0px);
1980
+ transform: rotate(360deg) translate3d(0px, -50%, 0px);
1981
+ }
1982
+ }
1983
+
1984
+ @keyframes selectr-spin {
1985
+ 0% {
1986
+ -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
1987
+ transform: rotate(0deg) translate3d(0px, -50%, 0px);
1988
+ }
1989
+
1990
+ 100% {
1991
+ -webkit-transform: rotate(360deg) translate3d(0px, -50%, 0px);
1992
+ transform: rotate(360deg) translate3d(0px, -50%, 0px);
1993
+ }
1994
+ }
1995
+
1996
+ .selectr-container.open.inverted .selectr-selected {
1997
+ border-color: transparent #999999 #999999;
1998
+ border-radius: 0 0 3px 3px;
1999
+ }
2000
+
2001
+ .selectr-container.inverted .selectr-options-container {
2002
+ border-width: 1px 1px 0;
2003
+ border-color: #999999 #999999 transparent;
2004
+ border-radius: 3px 3px 0 0;
2005
+ background-color: #ffffff;
2006
+ }
2007
+
2008
+ .selectr-container.inverted .selectr-options-container {
2009
+ top: auto;
2010
+ bottom: calc(100% - 1px);
2011
+ }
2012
+
2013
+ .selectr-container ::-webkit-input-placeholder {
2014
+ color: #6c7a86;
2015
+ opacity: 1;
2016
+ }
2017
+
2018
+ .selectr-container ::-moz-placeholder {
2019
+ color: #6c7a86;
2020
+ opacity: 1;
2021
+ }
2022
+
2023
+ .selectr-container :-ms-input-placeholder {
2024
+ color: #6c7a86;
2025
+ opacity: 1;
2026
+ }
2027
+
2028
+ .selectr-container ::placeholder {
2029
+ color: #6c7a86;
2030
+ opacity: 1;
2031
+ }