Extends the Chrome Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews. https://leviolson.com/posts/chrome-ext-better-network-panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2003 lines
40 KiB

  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: 14px;
  13. box-sizing: inherit;
  14. padding: inherit;
  15. font-family: inherit;
  16. transition: none;
  17. line-height: 16px;
  18. }
  19. .jsoneditor input:focus,
  20. .jsoneditor input:not([type]):focus,
  21. .jsoneditor input[type="text"]:focus,
  22. .jsoneditor input[type="search"]:focus,
  23. .jsoneditor-modal input:focus,
  24. .jsoneditor-modal input:not([type]):focus,
  25. .jsoneditor-modal input[type="text"]:focus,
  26. .jsoneditor-modal input[type="search"]:focus {
  27. border: inherit;
  28. box-shadow: inherit;
  29. }
  30. .jsoneditor textarea,
  31. .jsoneditor-modal textarea {
  32. height: inherit;
  33. }
  34. .jsoneditor select,
  35. .jsoneditor-modal select {
  36. display: inherit;
  37. height: inherit;
  38. }
  39. .jsoneditor label,
  40. .jsoneditor-modal label {
  41. font-size: inherit;
  42. font-weight: inherit;
  43. color: inherit;
  44. }
  45. .jsoneditor table,
  46. .jsoneditor-modal table {
  47. border-collapse: collapse;
  48. width: auto;
  49. }
  50. .jsoneditor td,
  51. .jsoneditor th,
  52. .jsoneditor-modal td,
  53. .jsoneditor-modal th {
  54. padding: 0;
  55. display: table-cell;
  56. text-align: left;
  57. vertical-align: inherit;
  58. border-radius: inherit;
  59. }
  60. .jsoneditor .autocomplete.dropdown {
  61. position: absolute;
  62. background: #ffffff;
  63. box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
  64. border: 1px solid #d3d3d3;
  65. overflow-x: hidden;
  66. overflow-y: auto;
  67. cursor: default;
  68. margin: 0;
  69. padding: 5px;
  70. text-align: left;
  71. outline: 0;
  72. font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif;
  73. font-size: 10pt;
  74. }
  75. .jsoneditor .autocomplete.dropdown .item {
  76. color: #333;
  77. }
  78. .jsoneditor .autocomplete.dropdown .item.hover {
  79. background-color: #ddd;
  80. }
  81. .jsoneditor .autocomplete.hint {
  82. color: #aaa;
  83. top: 4px;
  84. left: 4px;
  85. }
  86. .jsoneditor-contextmenu-root {
  87. position: relative;
  88. width: 0;
  89. height: 0;
  90. }
  91. .jsoneditor-contextmenu {
  92. position: absolute;
  93. box-sizing: content-box;
  94. z-index: 2;
  95. }
  96. .jsoneditor-contextmenu .jsoneditor-menu {
  97. position: relative;
  98. left: 0;
  99. top: 0;
  100. width: 128px;
  101. height: auto;
  102. background: #ffffff;
  103. border: 1px solid #d3d3d3;
  104. box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
  105. list-style: none;
  106. margin: 0;
  107. padding: 0;
  108. }
  109. .jsoneditor-contextmenu .jsoneditor-menu button {
  110. position: relative;
  111. padding: 0 8px 0 0;
  112. margin: 0;
  113. width: 128px;
  114. height: auto;
  115. border: none;
  116. cursor: pointer;
  117. color: #4d4d4d;
  118. background: transparent;
  119. font-size: 10pt;
  120. font-family: arial, sans-serif;
  121. box-sizing: border-box;
  122. text-align: left;
  123. }
  124. .jsoneditor-contextmenu .jsoneditor-menu button::-moz-focus-inner {
  125. padding: 0;
  126. border: 0;
  127. }
  128. .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-default {
  129. width: 96px;
  130. }
  131. .jsoneditor-contextmenu .jsoneditor-menu button.jsoneditor-expand {
  132. float: right;
  133. width: 32px;
  134. height: 24px;
  135. border-left: 1px solid #e5e5e5;
  136. }
  137. .jsoneditor-contextmenu .jsoneditor-menu li {
  138. overflow: hidden;
  139. }
  140. .jsoneditor-contextmenu .jsoneditor-menu li ul {
  141. display: none;
  142. position: relative;
  143. left: -10px;
  144. top: 0;
  145. border: none;
  146. box-shadow: inset 0 0 10px rgba(128, 128, 128, 0.5);
  147. padding: 0 10px;
  148. -webkit-transition: all 0.3s ease-out;
  149. -moz-transition: all 0.3s ease-out;
  150. -o-transition: all 0.3s ease-out;
  151. transition: all 0.3s ease-out;
  152. }
  153. .jsoneditor-contextmenu .jsoneditor-menu li ul .jsoneditor-icon {
  154. margin-left: 24px;
  155. }
  156. .jsoneditor-contextmenu .jsoneditor-menu li ul li button {
  157. padding-left: 24px;
  158. animation: all ease-in-out 1s;
  159. }
  160. .jsoneditor-contextmenu .jsoneditor-menu li button .jsoneditor-expand {
  161. position: absolute;
  162. top: 0;
  163. right: 0;
  164. width: 24px;
  165. height: 24px;
  166. padding: 0;
  167. margin: 0 4px 0 0;
  168. background: url("img/jsoneditor-icons.svg") 0 -72px;
  169. }
  170. .jsoneditor-contextmenu .jsoneditor-icon {
  171. position: absolute;
  172. top: 0;
  173. left: 0;
  174. width: 24px;
  175. height: 24px;
  176. border: none;
  177. padding: 0;
  178. margin: 0;
  179. background-image: url("img/jsoneditor-icons.svg");
  180. }
  181. .jsoneditor-contextmenu .jsoneditor-text {
  182. padding: 4px 0 4px 24px;
  183. word-wrap: break-word;
  184. }
  185. .jsoneditor-contextmenu .jsoneditor-text.jsoneditor-right-margin {
  186. padding-right: 24px;
  187. }
  188. .jsoneditor-contextmenu .jsoneditor-separator {
  189. height: 0;
  190. border-top: 1px solid #e5e5e5;
  191. padding-top: 5px;
  192. margin-top: 5px;
  193. }
  194. .jsoneditor-contextmenu button.jsoneditor-remove .jsoneditor-icon {
  195. background-position: -24px 0;
  196. }
  197. .jsoneditor-contextmenu button.jsoneditor-append .jsoneditor-icon {
  198. background-position: 0 0;
  199. }
  200. .jsoneditor-contextmenu button.jsoneditor-insert .jsoneditor-icon {
  201. background-position: 0 0;
  202. }
  203. .jsoneditor-contextmenu button.jsoneditor-duplicate .jsoneditor-icon {
  204. background-position: -48px 0;
  205. }
  206. .jsoneditor-contextmenu button.jsoneditor-sort-asc .jsoneditor-icon {
  207. background-position: -168px 0;
  208. }
  209. .jsoneditor-contextmenu button.jsoneditor-sort-desc .jsoneditor-icon {
  210. background-position: -192px 0;
  211. }
  212. .jsoneditor-contextmenu button.jsoneditor-transform .jsoneditor-icon {
  213. background-position: -216px 0;
  214. }
  215. .jsoneditor-contextmenu button.jsoneditor-extract .jsoneditor-icon {
  216. background-position: 0 -24px;
  217. }
  218. .jsoneditor-contextmenu button.jsoneditor-type-string .jsoneditor-icon {
  219. background-position: -144px 0;
  220. }
  221. .jsoneditor-contextmenu button.jsoneditor-type-auto .jsoneditor-icon {
  222. background-position: -120px 0;
  223. }
  224. .jsoneditor-contextmenu button.jsoneditor-type-object .jsoneditor-icon {
  225. background-position: -72px 0;
  226. }
  227. .jsoneditor-contextmenu button.jsoneditor-type-array .jsoneditor-icon {
  228. background-position: -96px 0;
  229. }
  230. .jsoneditor-contextmenu button.jsoneditor-type-modes .jsoneditor-icon {
  231. background-image: none;
  232. width: 6px;
  233. }
  234. .jsoneditor-contextmenu ul,
  235. .jsoneditor-contextmenu li {
  236. box-sizing: content-box;
  237. position: relative;
  238. }
  239. .jsoneditor-contextmenu .jsoneditor-menu button:hover,
  240. .jsoneditor-contextmenu .jsoneditor-menu button:focus {
  241. color: #1a1a1a;
  242. background-color: #f5f5f5;
  243. outline: none;
  244. }
  245. .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected,
  246. .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:hover,
  247. .jsoneditor-contextmenu .jsoneditor-menu li button.jsoneditor-selected:focus {
  248. color: #ffffff;
  249. background-color: #ee422e;
  250. }
  251. .jsoneditor-contextmenu .jsoneditor-menu li ul li button:hover,
  252. .jsoneditor-contextmenu .jsoneditor-menu li ul li button:focus {
  253. background-color: #f5f5f5;
  254. }
  255. .jsoneditor-modal {
  256. max-width: 95%;
  257. border-radius: 2px !important;
  258. padding: 45px 15px 15px 15px !important;
  259. box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
  260. color: #4d4d4d;
  261. line-height: 1.3em;
  262. }
  263. .jsoneditor-modal.jsoneditor-modal-transform {
  264. width: 600px !important;
  265. }
  266. .jsoneditor-modal .pico-modal-header {
  267. position: absolute;
  268. box-sizing: border-box;
  269. top: 0;
  270. left: 0;
  271. width: 100%;
  272. padding: 0 10px;
  273. height: 30px;
  274. line-height: 30px;
  275. font-family: arial, sans-serif;
  276. font-size: 11pt;
  277. background: #3883fa;
  278. color: #ffffff;
  279. }
  280. .jsoneditor-modal table {
  281. width: 100%;
  282. }
  283. .jsoneditor-modal table td {
  284. padding: 3px 0;
  285. }
  286. .jsoneditor-modal table td.jsoneditor-modal-input {
  287. text-align: right;
  288. padding-right: 0;
  289. white-space: nowrap;
  290. }
  291. .jsoneditor-modal table td.jsoneditor-modal-actions {
  292. padding-top: 15px;
  293. }
  294. .jsoneditor-modal table th {
  295. vertical-align: middle;
  296. }
  297. .jsoneditor-modal p:first-child {
  298. margin-top: 0;
  299. }
  300. .jsoneditor-modal a {
  301. color: #3883fa;
  302. }
  303. .jsoneditor-modal .jsoneditor-jmespath-block {
  304. margin-bottom: 10px;
  305. }
  306. .jsoneditor-modal .pico-close {
  307. background: none !important;
  308. font-size: 24px !important;
  309. top: 7px !important;
  310. right: 7px !important;
  311. color: #ffffff;
  312. }
  313. .jsoneditor-modal input {
  314. padding: 4px;
  315. }
  316. .jsoneditor-modal input[type="text"] {
  317. cursor: inherit;
  318. }
  319. .jsoneditor-modal input[disabled] {
  320. background: #d3d3d3;
  321. color: #808080;
  322. }
  323. .jsoneditor-modal .jsoneditor-select-wrapper {
  324. position: relative;
  325. display: inline-block;
  326. }
  327. .jsoneditor-modal .jsoneditor-select-wrapper:after {
  328. content: "";
  329. width: 0;
  330. height: 0;
  331. border-left: 5px solid transparent;
  332. border-right: 5px solid transparent;
  333. border-top: 6px solid #666;
  334. position: absolute;
  335. right: 8px;
  336. top: 14px;
  337. pointer-events: none;
  338. }
  339. .jsoneditor-modal select {
  340. padding: 3px 24px 3px 10px;
  341. min-width: 180px;
  342. max-width: 350px;
  343. -webkit-appearance: none;
  344. -moz-appearance: none;
  345. appearance: none;
  346. text-indent: 0;
  347. text-overflow: "";
  348. font-size: 10pt;
  349. line-height: 1.5em;
  350. }
  351. .jsoneditor-modal select::-ms-expand {
  352. display: none;
  353. }
  354. .jsoneditor-modal .jsoneditor-button-group input {
  355. padding: 4px 10px;
  356. margin: 0;
  357. border-radius: 0;
  358. border-left-style: none;
  359. }
  360. .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-first {
  361. border-top-left-radius: 3px;
  362. border-bottom-left-radius: 3px;
  363. border-left-style: solid;
  364. }
  365. .jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-last {
  366. border-top-right-radius: 3px;
  367. border-bottom-right-radius: 3px;
  368. }
  369. .jsoneditor-modal .jsoneditor-transform-preview {
  370. background: #f5f5f5;
  371. height: 200px;
  372. }
  373. .jsoneditor-modal .jsoneditor-transform-preview.jsoneditor-error {
  374. color: #ee422e;
  375. }
  376. .jsoneditor-modal .jsoneditor-jmespath-wizard {
  377. line-height: 1.2em;
  378. width: 100%;
  379. padding: 0;
  380. border-radius: 3px;
  381. }
  382. .jsoneditor-modal .jsoneditor-jmespath-label {
  383. font-weight: bold;
  384. color: dodgerblue;
  385. margin-top: 20px;
  386. margin-bottom: 5px;
  387. }
  388. .jsoneditor-modal .jsoneditor-jmespath-wizard-table {
  389. width: 100%;
  390. border-collapse: collapse;
  391. }
  392. .jsoneditor-modal .jsoneditor-jmespath-wizard-label {
  393. font-style: italic;
  394. margin: 4px 0 2px 0;
  395. }
  396. .jsoneditor-modal .jsoneditor-inline {
  397. position: relative;
  398. display: inline-block;
  399. width: 100%;
  400. padding-top: 2px;
  401. padding-bottom: 2px;
  402. }
  403. .jsoneditor-modal .jsoneditor-inline:not(:last-child) {
  404. padding-right: 2px;
  405. }
  406. .jsoneditor-modal .jsoneditor-jmespath-filter {
  407. display: flex;
  408. flex-wrap: wrap;
  409. }
  410. .jsoneditor-modal .jsoneditor-jmespath-filter-field {
  411. width: 180px;
  412. }
  413. .jsoneditor-modal .jsoneditor-jmespath-filter-relation {
  414. width: 100px;
  415. }
  416. .jsoneditor-modal .jsoneditor-jmespath-filter-value {
  417. min-width: 180px;
  418. flex: 1;
  419. }
  420. .jsoneditor-modal .jsoneditor-jmespath-sort-field {
  421. width: 170px;
  422. }
  423. .jsoneditor-modal .jsoneditor-jmespath-sort-order {
  424. width: 150px;
  425. }
  426. .jsoneditor-modal .jsoneditor-jmespath-select-fields {
  427. width: 100%;
  428. }
  429. .jsoneditor-modal .selectr-selected {
  430. border-color: #d3d3d3;
  431. padding: 4px 28px 4px 8px;
  432. }
  433. .jsoneditor-modal .selectr-selected .selectr-tag {
  434. background-color: #3883fa;
  435. border-radius: 5px;
  436. }
  437. .jsoneditor-modal table th,
  438. .jsoneditor-modal table td {
  439. text-align: left;
  440. vertical-align: middle;
  441. font-weight: normal;
  442. color: #4d4d4d;
  443. border-spacing: 0;
  444. border-collapse: collapse;
  445. }
  446. .jsoneditor-modal select,
  447. .jsoneditor-modal textarea,
  448. .jsoneditor-modal input,
  449. .jsoneditor-modal input[type="text"],
  450. .jsoneditor-modal input[type="text"]:focus,
  451. .jsoneditor-modal #query {
  452. background: #ffffff;
  453. border: 1px solid #d3d3d3;
  454. color: #4d4d4d;
  455. border-radius: 3px;
  456. padding: 4px;
  457. }
  458. .jsoneditor-modal,
  459. .jsoneditor-modal table td,
  460. .jsoneditor-modal table th,
  461. .jsoneditor-modal select,
  462. .jsoneditor-modal option,
  463. .jsoneditor-modal textarea,
  464. .jsoneditor-modal input,
  465. .jsoneditor-modal input[type="text"],
  466. .jsoneditor-modal #query {
  467. font-size: 10.5pt;
  468. font-family: arial, sans-serif;
  469. }
  470. .jsoneditor-modal #query,
  471. .jsoneditor-modal .jsoneditor-transform-preview {
  472. font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif;
  473. font-size: 10pt;
  474. width: 100%;
  475. box-sizing: border-box;
  476. }
  477. .jsoneditor-modal input[type="button"],
  478. .jsoneditor-modal input[type="submit"] {
  479. background: #f5f5f5;
  480. padding: 4px 20px;
  481. }
  482. .jsoneditor-modal select,
  483. .jsoneditor-modal input {
  484. cursor: pointer;
  485. }
  486. .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-asc input.jsoneditor-button-asc,
  487. .jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-desc input.jsoneditor-button-desc {
  488. background: #3883fa;
  489. border-color: #3883fa;
  490. color: #ffffff;
  491. }
  492. .jsoneditor {
  493. color: #1a1a1a;
  494. border: thin solid #3883fa;
  495. -moz-box-sizing: border-box;
  496. -webkit-box-sizing: border-box;
  497. box-sizing: border-box;
  498. width: 100%;
  499. height: 100%;
  500. position: relative;
  501. padding: 0;
  502. line-height: 100%;
  503. }
  504. div.jsoneditor-field,
  505. div.jsoneditor-value,
  506. div.jsoneditor-readonly,
  507. div.jsoneditor-default {
  508. border: 1px solid transparent;
  509. min-height: 16px;
  510. min-width: 32px;
  511. padding: 2px;
  512. margin: 1px;
  513. word-wrap: break-word;
  514. float: left;
  515. }
  516. div.jsoneditor-field p,
  517. div.jsoneditor-value p {
  518. margin: 0;
  519. }
  520. div.jsoneditor-value {
  521. word-break: break-word;
  522. }
  523. div.jsoneditor-value.jsoneditor-empty::after {
  524. content: "value";
  525. }
  526. div.jsoneditor-value.jsoneditor-string {
  527. color: #006000;
  528. }
  529. div.jsoneditor-value.jsoneditor-number {
  530. color: #ee422e;
  531. }
  532. div.jsoneditor-value.jsoneditor-boolean {
  533. color: #ff8c00;
  534. }
  535. div.jsoneditor-value.jsoneditor-null {
  536. color: #004ed0;
  537. }
  538. div.jsoneditor-value.jsoneditor-color-value {
  539. color: #1a1a1a;
  540. }
  541. div.jsoneditor-value.jsoneditor-invalid {
  542. color: #1a1a1a;
  543. }
  544. div.jsoneditor-readonly {
  545. min-width: 16px;
  546. color: #808080;
  547. }
  548. div.jsoneditor-empty {
  549. border-color: #d3d3d3;
  550. border-style: dashed;
  551. border-radius: 2px;
  552. }
  553. div.jsoneditor-field.jsoneditor-empty::after {
  554. content: "field";
  555. }
  556. div.jsoneditor td {
  557. vertical-align: top;
  558. }
  559. div.jsoneditor td.jsoneditor-separator {
  560. padding: 3px 0;
  561. vertical-align: top;
  562. color: #808080;
  563. }
  564. div.jsoneditor td.jsoneditor-tree {
  565. vertical-align: top;
  566. }
  567. div.jsoneditor.busy pre.jsoneditor-preview {
  568. background: #f5f5f5;
  569. color: #808080;
  570. }
  571. div.jsoneditor.busy div.jsoneditor-busy {
  572. display: inherit;
  573. }
  574. div.jsoneditor code.jsoneditor-preview {
  575. background: none;
  576. }
  577. div.jsoneditor.jsoneditor-mode-preview pre.jsoneditor-preview {
  578. width: 100%;
  579. height: 100%;
  580. box-sizing: border-box;
  581. overflow: auto;
  582. padding: 2px;
  583. margin: 0;
  584. white-space: pre-wrap;
  585. word-break: break-all;
  586. }
  587. div.jsoneditor-default {
  588. color: #808080;
  589. padding-left: 10px;
  590. }
  591. div.jsoneditor-tree {
  592. width: 100%;
  593. height: 100%;
  594. position: relative;
  595. overflow: auto;
  596. }
  597. div.jsoneditor-tree button.jsoneditor-button {
  598. width: 24px;
  599. height: 24px;
  600. padding: 0;
  601. margin: 0;
  602. border: none;
  603. cursor: pointer;
  604. background: transparent url("img/jsoneditor-icons.svg");
  605. }
  606. div.jsoneditor-tree button.jsoneditor-button:focus {
  607. background-color: #f5f5f5;
  608. outline: #e5e5e5 solid 1px;
  609. }
  610. div.jsoneditor-tree button.jsoneditor-collapsed {
  611. background-position: 0 -48px;
  612. }
  613. div.jsoneditor-tree button.jsoneditor-expanded {
  614. background-position: 0 -72px;
  615. }
  616. div.jsoneditor-tree button.jsoneditor-contextmenu-button {
  617. background-position: -48px -72px;
  618. }
  619. div.jsoneditor-tree button.jsoneditor-invisible {
  620. visibility: hidden;
  621. background: none;
  622. }
  623. div.jsoneditor-tree button.jsoneditor-dragarea {
  624. background: url("img/jsoneditor-icons.svg") -72px -72px;
  625. cursor: move;
  626. }
  627. div.jsoneditor-tree *:focus {
  628. outline: none;
  629. }
  630. div.jsoneditor-tree div.jsoneditor-show-more {
  631. display: inline-block;
  632. padding: 3px 4px;
  633. margin: 2px 0;
  634. background-color: #e5e5e5;
  635. border-radius: 3px;
  636. color: #808080;
  637. font-family: arial, sans-serif;
  638. font-size: 10pt;
  639. }
  640. div.jsoneditor-tree div.jsoneditor-show-more a {
  641. display: inline-block;
  642. color: #808080;
  643. }
  644. div.jsoneditor-tree div.jsoneditor-color {
  645. display: inline-block;
  646. width: 12px;
  647. height: 12px;
  648. margin: 4px;
  649. border: 1px solid #808080;
  650. cursor: pointer;
  651. }
  652. div.jsoneditor-tree div.jsoneditor-date {
  653. background: #a1a1a1;
  654. color: #ffffff;
  655. font-family: arial, sans-serif;
  656. border-radius: 3px;
  657. display: inline-block;
  658. padding: 3px;
  659. margin: 0 3px;
  660. }
  661. div.jsoneditor-tree table.jsoneditor-tree {
  662. border-collapse: collapse;
  663. border-spacing: 0;
  664. width: 100%;
  665. }
  666. div.jsoneditor-tree .jsoneditor-button.jsoneditor-schema-error {
  667. width: 24px;
  668. height: 24px;
  669. padding: 0;
  670. margin: 0 4px 0 0;
  671. background: url("img/jsoneditor-icons.svg") -168px -48px;
  672. }
  673. div.jsoneditor-outer {
  674. position: static;
  675. width: 100%;
  676. height: 100%;
  677. margin: 0;
  678. padding: 0;
  679. -moz-box-sizing: border-box;
  680. -webkit-box-sizing: border-box;
  681. box-sizing: border-box;
  682. }
  683. div.jsoneditor-outer.has-nav-bar {
  684. margin-top: -26px;
  685. padding-top: 26px;
  686. }
  687. div.jsoneditor-outer.has-nav-bar.has-main-menu-bar {
  688. margin-top: -61px;
  689. padding-top: 61px;
  690. }
  691. div.jsoneditor-outer.has-status-bar {
  692. margin-bottom: -26px;
  693. padding-bottom: 26px;
  694. }
  695. div.jsoneditor-outer.has-main-menu-bar {
  696. margin-top: -35px;
  697. padding-top: 35px;
  698. }
  699. div.jsoneditor-busy {
  700. position: absolute;
  701. top: 15%;
  702. left: 0;
  703. box-sizing: border-box;
  704. width: 100%;
  705. text-align: center;
  706. display: none;
  707. }
  708. div.jsoneditor-busy span {
  709. background-color: #ffffab;
  710. border: 1px solid #ffee00;
  711. border-radius: 3px;
  712. padding: 5px 15px;
  713. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  714. }
  715. div.jsoneditor-field.jsoneditor-empty::after,
  716. div.jsoneditor-value.jsoneditor-empty::after {
  717. pointer-events: none;
  718. color: #d3d3d3;
  719. font-size: 8pt;
  720. }
  721. div.jsoneditor-value.jsoneditor-url,
  722. a.jsoneditor-value.jsoneditor-url {
  723. color: #006000;
  724. text-decoration: underline;
  725. }
  726. a.jsoneditor-value.jsoneditor-url {
  727. display: inline-block;
  728. padding: 2px;
  729. margin: 2px;
  730. }
  731. a.jsoneditor-value.jsoneditor-url:hover,
  732. a.jsoneditor-value.jsoneditor-url:focus {
  733. color: #ee422e;
  734. }
  735. div.jsoneditor-field[contenteditable="true"]:focus,
  736. div.jsoneditor-field[contenteditable="true"]:hover,
  737. div.jsoneditor-value[contenteditable="true"]:focus,
  738. div.jsoneditor-value[contenteditable="true"]:hover,
  739. div.jsoneditor-field.jsoneditor-highlight,
  740. div.jsoneditor-value.jsoneditor-highlight {
  741. background-color: #ffffab;
  742. border: 1px solid #ffee00;
  743. border-radius: 2px;
  744. }
  745. div.jsoneditor-field.jsoneditor-highlight-active,
  746. div.jsoneditor-field.jsoneditor-highlight-active:focus,
  747. div.jsoneditor-field.jsoneditor-highlight-active:hover,
  748. div.jsoneditor-value.jsoneditor-highlight-active,
  749. div.jsoneditor-value.jsoneditor-highlight-active:focus,
  750. div.jsoneditor-value.jsoneditor-highlight-active:hover {
  751. background-color: #ffee00;
  752. border: 1px solid #ffc700;
  753. border-radius: 2px;
  754. }
  755. div.jsoneditor-value.jsoneditor-object,
  756. div.jsoneditor-value.jsoneditor-array {
  757. min-width: 16px;
  758. }
  759. div.jsoneditor-tree button.jsoneditor-contextmenu-button:hover,
  760. div.jsoneditor-tree button.jsoneditor-contextmenu-button:focus,
  761. div.jsoneditor-tree button.jsoneditor-contextmenu-button.jsoneditor-selected,
  762. tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button {
  763. background-position: -48px -48px;
  764. }
  765. div.jsoneditor-tree div.jsoneditor-show-more a:hover,
  766. div.jsoneditor-tree div.jsoneditor-show-more a:focus {
  767. color: #ee422e;
  768. }
  769. textarea.jsoneditor-text,
  770. .ace-jsoneditor {
  771. min-height: 150px;
  772. }
  773. textarea.jsoneditor-text *,
  774. .ace-jsoneditor * {
  775. font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif;
  776. }
  777. textarea.jsoneditor-text {
  778. width: 100%;
  779. height: 100%;
  780. margin: 0;
  781. -moz-box-sizing: border-box;
  782. -webkit-box-sizing: border-box;
  783. box-sizing: border-box;
  784. outline-width: 0;
  785. border: none;
  786. background-color: #ffffff;
  787. resize: none;
  788. }
  789. tr.jsoneditor-highlight,
  790. tr.jsoneditor-selected {
  791. background-color: #d3d3d3;
  792. }
  793. tr.jsoneditor-selected button.jsoneditor-dragarea,
  794. tr.jsoneditor-selected button.jsoneditor-contextmenu-button {
  795. visibility: hidden;
  796. }
  797. tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea,
  798. tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu-button {
  799. visibility: visible;
  800. }
  801. div.jsoneditor-tree button.jsoneditor-dragarea:hover,
  802. div.jsoneditor-tree button.jsoneditor-dragarea:focus,
  803. tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea {
  804. background-position: -72px -48px;
  805. }
  806. div.jsoneditor tr,
  807. div.jsoneditor th,
  808. div.jsoneditor td {
  809. padding: 0;
  810. margin: 0;
  811. }
  812. div.jsoneditor-field,
  813. div.jsoneditor-value,
  814. div.jsoneditor td,
  815. div.jsoneditor th,
  816. div.jsoneditor textarea,
  817. pre.jsoneditor-preview,
  818. .jsoneditor-schema-error,
  819. .jsoneditor-popover {
  820. font-family: "dejavu sans mono", "droid sans mono", consolas, monaco, "lucida console", "courier new", courier, monospace, sans-serif;
  821. font-size: 10pt;
  822. color: #1a1a1a;
  823. }
  824. .jsoneditor-schema-error {
  825. cursor: default;
  826. display: inline-block;
  827. height: 24px;
  828. line-height: 24px;
  829. position: relative;
  830. text-align: center;
  831. width: 24px;
  832. }
  833. .jsoneditor-popover {
  834. background-color: #4c4c4c;
  835. border-radius: 3px;
  836. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  837. color: #ffffff;
  838. padding: 7px 10px;
  839. position: absolute;
  840. cursor: auto;
  841. width: 200px;
  842. }
  843. .jsoneditor-popover.jsoneditor-above {
  844. bottom: 32px;
  845. left: -98px;
  846. }
  847. .jsoneditor-popover.jsoneditor-above:before {
  848. border-top: 7px solid #4c4c4c;
  849. bottom: -7px;
  850. }
  851. .jsoneditor-popover.jsoneditor-below {
  852. top: 32px;
  853. left: -98px;
  854. }
  855. .jsoneditor-popover.jsoneditor-below:before {
  856. border-bottom: 7px solid #4c4c4c;
  857. top: -7px;
  858. }
  859. .jsoneditor-popover.jsoneditor-left {
  860. top: -7px;
  861. right: 32px;
  862. }
  863. .jsoneditor-popover.jsoneditor-left:before {
  864. border-left: 7px solid #4c4c4c;
  865. border-top: 7px solid transparent;
  866. border-bottom: 7px solid transparent;
  867. content: "";
  868. top: 19px;
  869. right: -14px;
  870. left: inherit;
  871. margin-left: inherit;
  872. margin-top: -7px;
  873. position: absolute;
  874. }
  875. .jsoneditor-popover.jsoneditor-right {
  876. top: -7px;
  877. left: 32px;
  878. }
  879. .jsoneditor-popover.jsoneditor-right:before {
  880. border-right: 7px solid #4c4c4c;
  881. border-top: 7px solid transparent;
  882. border-bottom: 7px solid transparent;
  883. content: "";
  884. top: 19px;
  885. left: -14px;
  886. margin-left: inherit;
  887. margin-top: -7px;
  888. position: absolute;
  889. }
  890. .jsoneditor-popover:before {
  891. border-right: 7px solid transparent;
  892. border-left: 7px solid transparent;
  893. content: "";
  894. display: block;
  895. left: 50%;
  896. margin-left: -7px;
  897. position: absolute;
  898. }
  899. .jsoneditor-text-errors tr.jump-to-line:hover {
  900. text-decoration: underline;
  901. cursor: pointer;
  902. }
  903. .jsoneditor-schema-error:hover .jsoneditor-popover,
  904. .jsoneditor-schema-error:focus .jsoneditor-popover {
  905. display: block;
  906. animation: fade-in 0.3s linear 1, move-up 0.3s linear 1;
  907. }
  908. @keyframes fade-in {
  909. from {
  910. opacity: 0;
  911. }
  912. to {
  913. opacity: 1;
  914. }
  915. }
  916. /* JSON schema errors displayed at the bottom of the editor in mode text and code */
  917. .jsoneditor .jsoneditor-validation-errors-container {
  918. max-height: 130px;
  919. overflow-y: auto;
  920. }
  921. .jsoneditor .jsoneditor-validation-errors {
  922. width: 100%;
  923. overflow: hidden;
  924. }
  925. .jsoneditor .jsoneditor-additional-errors {
  926. position: absolute;
  927. margin: auto;
  928. bottom: 31px;
  929. left: calc(50% - 92px);
  930. color: #808080;
  931. background-color: #ebebeb;
  932. padding: 7px 15px;
  933. border-radius: 8px;
  934. }
  935. .jsoneditor .jsoneditor-additional-errors.visible {
  936. visibility: visible;
  937. opacity: 1;
  938. transition: opacity 2s linear;
  939. }
  940. .jsoneditor .jsoneditor-additional-errors.hidden {
  941. visibility: hidden;
  942. opacity: 0;
  943. transition: visibility 0s 2s, opacity 2s linear;
  944. }
  945. .jsoneditor .jsoneditor-text-errors {
  946. width: 100%;
  947. border-collapse: collapse;
  948. border-top: 1px solid #ffc700;
  949. }
  950. .jsoneditor .jsoneditor-text-errors td {
  951. padding: 3px 6px;
  952. vertical-align: middle;
  953. }
  954. .jsoneditor .jsoneditor-text-errors td pre {
  955. margin: 0;
  956. white-space: normal;
  957. }
  958. .jsoneditor .jsoneditor-text-errors tr {
  959. background-color: #ffffab;
  960. }
  961. .jsoneditor .jsoneditor-text-errors tr.parse-error {
  962. background-color: #ee2e2e70;
  963. }
  964. .jsoneditor-text-errors .jsoneditor-schema-error {
  965. border: none;
  966. width: 24px;
  967. height: 24px;
  968. padding: 0;
  969. margin: 0 4px 0 0;
  970. cursor: pointer;
  971. }
  972. .jsoneditor-text-errors tr .jsoneditor-schema-error {
  973. background: url("img/jsoneditor-icons.svg") -168px -48px;
  974. }
  975. .jsoneditor-text-errors tr.parse-error .jsoneditor-schema-error {
  976. background: url("img/jsoneditor-icons.svg") -25px 0px;
  977. }
  978. .jsoneditor-anchor {
  979. cursor: pointer;
  980. }
  981. .jsoneditor-anchor .picker_wrapper.popup.popup_bottom {
  982. top: 28px;
  983. left: -10px;
  984. }
  985. .fadein {
  986. -webkit-animation: fadein 0.3s;
  987. animation: fadein 0.3s;
  988. -moz-animation: fadein 0.3s;
  989. -o-animation: fadein 0.3s;
  990. }
  991. @keyframes fadein {
  992. 0% {
  993. opacity: 0;
  994. }
  995. 100% {
  996. opacity: 1;
  997. }
  998. }
  999. .jsoneditor-modal input[type="search"].selectr-input {
  1000. border: 1px solid #d3d3d3;
  1001. width: calc(100% - 4px);
  1002. margin: 2px;
  1003. padding: 4px;
  1004. box-sizing: border-box;
  1005. }
  1006. .jsoneditor-modal button.selectr-input-clear {
  1007. right: 8px;
  1008. }
  1009. .jsoneditor-menu {
  1010. width: 100%;
  1011. height: 35px;
  1012. padding: 2px;
  1013. margin: 0;
  1014. -moz-box-sizing: border-box;
  1015. -webkit-box-sizing: border-box;
  1016. box-sizing: border-box;
  1017. color: #ffffff;
  1018. background-color: #3883fa;
  1019. border-bottom: 1px solid #3883fa;
  1020. }
  1021. .jsoneditor-menu > button,
  1022. .jsoneditor-menu > .jsoneditor-modes > button {
  1023. width: 26px;
  1024. height: 26px;
  1025. margin: 2px;
  1026. padding: 0;
  1027. border-radius: 2px;
  1028. border: 1px solid transparent;
  1029. background: transparent url("img/jsoneditor-icons.svg");
  1030. color: #ffffff;
  1031. opacity: 0.8;
  1032. font-family: arial, sans-serif;
  1033. font-size: 10pt;
  1034. float: left;
  1035. }
  1036. .jsoneditor-menu > button:hover,
  1037. .jsoneditor-menu > .jsoneditor-modes > button:hover {
  1038. background-color: rgba(255, 255, 255, 0.2);
  1039. border: 1px solid rgba(255, 255, 255, 0.4);
  1040. }
  1041. .jsoneditor-menu > button:focus,
  1042. .jsoneditor-menu > button:active,
  1043. .jsoneditor-menu > .jsoneditor-modes > button:focus,
  1044. .jsoneditor-menu > .jsoneditor-modes > button:active {
  1045. background-color: rgba(255, 255, 255, 0.3);
  1046. }
  1047. .jsoneditor-menu > button:disabled,
  1048. .jsoneditor-menu > .jsoneditor-modes > button:disabled {
  1049. opacity: 0.5;
  1050. background-color: transparent;
  1051. border: none;
  1052. }
  1053. .jsoneditor-menu > button.jsoneditor-collapse-all {
  1054. background-position: 0 -96px;
  1055. }
  1056. .jsoneditor-menu > button.jsoneditor-expand-all {
  1057. background-position: 0 -120px;
  1058. }
  1059. .jsoneditor-menu > button.jsoneditor-sort {
  1060. background-position: -120px -96px;
  1061. }
  1062. .jsoneditor-menu > button.jsoneditor-transform {
  1063. background-position: -144px -96px;
  1064. }
  1065. .jsoneditor.jsoneditor-mode-view > .jsoneditor-menu > button.jsoneditor-sort,
  1066. .jsoneditor.jsoneditor-mode-form > .jsoneditor-menu > button.jsoneditor-sort,
  1067. .jsoneditor.jsoneditor-mode-view > .jsoneditor-menu > button.jsoneditor-transform,
  1068. .jsoneditor.jsoneditor-mode-form > .jsoneditor-menu > button.jsoneditor-transform {
  1069. display: none;
  1070. }
  1071. .jsoneditor-menu > button.jsoneditor-undo {
  1072. background-position: -24px -96px;
  1073. }
  1074. .jsoneditor-menu > button.jsoneditor-undo:disabled {
  1075. background-position: -24px -120px;
  1076. }
  1077. .jsoneditor-menu > button.jsoneditor-redo {
  1078. background-position: -48px -96px;
  1079. }
  1080. .jsoneditor-menu > button.jsoneditor-redo:disabled {
  1081. background-position: -48px -120px;
  1082. }
  1083. .jsoneditor-menu > button.jsoneditor-compact {
  1084. background-position: -72px -96px;
  1085. }
  1086. .jsoneditor-menu > button.jsoneditor-format {
  1087. background-position: -72px -120px;
  1088. }
  1089. .jsoneditor-menu > button.jsoneditor-repair {
  1090. background-position: -96px -96px;
  1091. }
  1092. .jsoneditor-menu > .jsoneditor-modes {
  1093. display: inline-block;
  1094. float: left;
  1095. }
  1096. .jsoneditor-menu > .jsoneditor-modes > button {
  1097. background-image: none;
  1098. width: auto;
  1099. padding-left: 6px;
  1100. padding-right: 6px;
  1101. }
  1102. .jsoneditor-menu > button.jsoneditor-separator,
  1103. .jsoneditor-menu > .jsoneditor-modes > button.jsoneditor-separator {
  1104. margin-left: 10px;
  1105. }
  1106. .jsoneditor-menu a {
  1107. font-family: arial, sans-serif;
  1108. font-size: 10pt;
  1109. color: #ffffff;
  1110. opacity: 0.8;
  1111. vertical-align: middle;
  1112. }
  1113. .jsoneditor-menu a:hover {
  1114. opacity: 1;
  1115. }
  1116. .jsoneditor-menu a.jsoneditor-poweredBy {
  1117. font-size: 8pt;
  1118. position: absolute;
  1119. right: 0;
  1120. top: 0;
  1121. padding: 10px;
  1122. }
  1123. .jsoneditor-navigation-bar {
  1124. width: 100%;
  1125. height: 26px;
  1126. line-height: 26px;
  1127. padding: 0;
  1128. margin: 0;
  1129. border-bottom: 1px solid #d3d3d3;
  1130. -moz-box-sizing: border-box;
  1131. -webkit-box-sizing: border-box;
  1132. box-sizing: border-box;
  1133. color: #808080;
  1134. background-color: #ebebeb;
  1135. overflow: hidden;
  1136. font-family: arial, sans-serif;
  1137. font-size: 10pt;
  1138. }
  1139. .jsoneditor-search {
  1140. font-family: arial, sans-serif;
  1141. position: absolute;
  1142. right: 4px;
  1143. top: 4px;
  1144. border-collapse: collapse;
  1145. border-spacing: 0;
  1146. display: flex;
  1147. }
  1148. .jsoneditor-search input {
  1149. color: #1a1a1a;
  1150. width: 120px;
  1151. border: none;
  1152. outline: none;
  1153. margin: 1px;
  1154. line-height: 20px;
  1155. font-family: arial, sans-serif;
  1156. }
  1157. .jsoneditor-search button {
  1158. width: 16px;
  1159. height: 24px;
  1160. padding: 0;
  1161. margin: 0;
  1162. border: none;
  1163. background: url("img/jsoneditor-icons.svg");
  1164. vertical-align: top;
  1165. }
  1166. .jsoneditor-search button:hover {
  1167. background-color: transparent;
  1168. }
  1169. .jsoneditor-search button.jsoneditor-refresh {
  1170. width: 18px;
  1171. background-position: -99px -73px;
  1172. }
  1173. .jsoneditor-search button.jsoneditor-next {
  1174. cursor: pointer;
  1175. background-position: -124px -73px;
  1176. }
  1177. .jsoneditor-search button.jsoneditor-next:hover {
  1178. background-position: -124px -49px;
  1179. }
  1180. .jsoneditor-search button.jsoneditor-previous {
  1181. cursor: pointer;
  1182. background-position: -148px -73px;
  1183. margin-right: 2px;
  1184. }
  1185. .jsoneditor-search button.jsoneditor-previous:hover {
  1186. background-position: -148px -49px;
  1187. }
  1188. .jsoneditor-results {
  1189. font-family: arial, sans-serif;
  1190. color: #ffffff;
  1191. padding-right: 5px;
  1192. line-height: 26px;
  1193. }
  1194. .jsoneditor-frame {
  1195. border: 1px solid transparent;
  1196. background-color: #ffffff;
  1197. padding: 0 2px;
  1198. margin: 0;
  1199. }
  1200. .jsoneditor-statusbar {
  1201. line-height: 26px;
  1202. height: 26px;
  1203. color: #808080;
  1204. background-color: #ebebeb;
  1205. border-top: 1px solid #d3d3d3;
  1206. -moz-box-sizing: border-box;
  1207. -webkit-box-sizing: border-box;
  1208. box-sizing: border-box;
  1209. font-size: 10pt;
  1210. }
  1211. .jsoneditor-statusbar > .jsoneditor-curserinfo-val {
  1212. margin-right: 12px;
  1213. }
  1214. .jsoneditor-statusbar > .jsoneditor-curserinfo-count {
  1215. margin-left: 4px;
  1216. }
  1217. .jsoneditor-statusbar > .jsoneditor-validation-error-icon {
  1218. float: right;
  1219. width: 24px;
  1220. height: 24px;
  1221. padding: 0;
  1222. margin-top: 1px;
  1223. background: url("img/jsoneditor-icons.svg") -168px -48px;
  1224. cursor: pointer;
  1225. }
  1226. .jsoneditor-statusbar > .jsoneditor-validation-error-count {
  1227. float: right;
  1228. margin: 0 4px 0 0;
  1229. cursor: pointer;
  1230. }
  1231. .jsoneditor-statusbar > .jsoneditor-parse-error-icon {
  1232. float: right;
  1233. width: 24px;
  1234. height: 24px;
  1235. padding: 0;
  1236. margin: 1px;
  1237. background: url("img/jsoneditor-icons.svg") -25px 0px;
  1238. }
  1239. .jsoneditor-statusbar .jsoneditor-array-info a {
  1240. color: inherit;
  1241. }
  1242. div.jsoneditor-statusbar > .jsoneditor-curserinfo-label,
  1243. div.jsoneditor-statusbar > .jsoneditor-size-info {
  1244. margin: 0 4px;
  1245. }
  1246. .jsoneditor-treepath {
  1247. padding: 0 5px;
  1248. overflow: hidden;
  1249. white-space: nowrap;
  1250. outline: none;
  1251. }
  1252. .jsoneditor-treepath.show-all {
  1253. word-wrap: break-word;
  1254. white-space: normal;
  1255. position: absolute;
  1256. background-color: #ebebeb;
  1257. z-index: 1;
  1258. box-shadow: 2px 2px 12px rgba(128, 128, 128, 0.3);
  1259. }
  1260. .jsoneditor-treepath.show-all span.jsoneditor-treepath-show-all-btn {
  1261. display: none;
  1262. }
  1263. .jsoneditor-treepath div.jsoneditor-contextmenu-root {
  1264. position: absolute;
  1265. left: 0;
  1266. }
  1267. .jsoneditor-treepath .jsoneditor-treepath-show-all-btn {
  1268. position: absolute;
  1269. background-color: #ebebeb;
  1270. left: 0;
  1271. height: 20px;
  1272. padding: 0 3px;
  1273. cursor: pointer;
  1274. }
  1275. .jsoneditor-treepath .jsoneditor-treepath-element {
  1276. margin: 1px;
  1277. font-family: arial, sans-serif;
  1278. font-size: 10pt;
  1279. }
  1280. .jsoneditor-treepath .jsoneditor-treepath-seperator {
  1281. margin: 2px;
  1282. font-size: 9pt;
  1283. font-family: arial, sans-serif;
  1284. }
  1285. .jsoneditor-treepath span.jsoneditor-treepath-element:hover,
  1286. .jsoneditor-treepath span.jsoneditor-treepath-seperator:hover {
  1287. cursor: pointer;
  1288. text-decoration: underline;
  1289. }
  1290. /*!
  1291. * Selectr 2.4.0
  1292. * https://github.com/Mobius1/Selectr
  1293. *
  1294. * Released under the MIT license
  1295. */
  1296. .selectr-container {
  1297. position: relative;
  1298. }
  1299. .selectr-container li {
  1300. list-style: none;
  1301. }
  1302. .selectr-hidden {
  1303. position: absolute;
  1304. overflow: hidden;
  1305. clip: rect(0px, 0px, 0px, 0px);
  1306. width: 1px;
  1307. height: 1px;
  1308. margin: -1px;
  1309. padding: 0;
  1310. border: 0 none;
  1311. }
  1312. .selectr-visible {
  1313. position: absolute;
  1314. left: 0;
  1315. top: 0;
  1316. width: 100%;
  1317. height: 100%;
  1318. opacity: 0;
  1319. z-index: 11;
  1320. }
  1321. .selectr-desktop.multiple .selectr-visible {
  1322. display: none;
  1323. }
  1324. .selectr-desktop.multiple.native-open .selectr-visible {
  1325. top: 100%;
  1326. min-height: 200px !important;
  1327. height: auto;
  1328. opacity: 1;
  1329. display: block;
  1330. }
  1331. .selectr-container.multiple.selectr-mobile .selectr-selected {
  1332. z-index: 0;
  1333. }
  1334. .selectr-selected {
  1335. position: relative;
  1336. z-index: 1;
  1337. box-sizing: border-box;
  1338. width: 100%;
  1339. padding: 7px 28px 7px 14px;
  1340. cursor: pointer;
  1341. border: 1px solid #999999;
  1342. border-radius: 3px;
  1343. background-color: #ffffff;
  1344. }
  1345. .selectr-selected::before {
  1346. position: absolute;
  1347. top: 50%;
  1348. right: 10px;
  1349. width: 0;
  1350. height: 0;
  1351. content: '';
  1352. -o-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1353. -ms-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1354. -moz-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1355. -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1356. transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1357. border-width: 4px 4px 0 4px;
  1358. border-style: solid;
  1359. border-color: #6c7a86 transparent transparent;
  1360. }
  1361. .selectr-container.open .selectr-selected::before,
  1362. .selectr-container.native-open .selectr-selected::before {
  1363. border-width: 0 4px 4px 4px;
  1364. border-style: solid;
  1365. border-color: transparent transparent #6c7a86;
  1366. }
  1367. .selectr-label {
  1368. display: none;
  1369. overflow: hidden;
  1370. width: 100%;
  1371. white-space: nowrap;
  1372. text-overflow: ellipsis;
  1373. }
  1374. .selectr-placeholder {
  1375. color: #6c7a86;
  1376. }
  1377. .selectr-tags {
  1378. margin: 0;
  1379. padding: 0;
  1380. white-space: normal;
  1381. }
  1382. .has-selected .selectr-tags {
  1383. margin: 0 0 -2px;
  1384. }
  1385. .selectr-tag {
  1386. list-style: none;
  1387. position: relative;
  1388. float: left;
  1389. padding: 2px 25px 2px 8px;
  1390. margin: 0 2px 2px 0;
  1391. cursor: default;
  1392. color: #ffffff;
  1393. border: medium none;
  1394. border-radius: 10px;
  1395. background: #acb7bf none repeat scroll 0 0;
  1396. }
  1397. .selectr-container.multiple.has-selected .selectr-selected {
  1398. padding: 5px 28px 5px 5px;
  1399. }
  1400. .selectr-options-container {
  1401. position: absolute;
  1402. z-index: 10000;
  1403. top: calc(100% - 1px);
  1404. left: 0;
  1405. display: none;
  1406. box-sizing: border-box;
  1407. width: 100%;
  1408. border-width: 0 1px 1px;
  1409. border-style: solid;
  1410. border-color: transparent #999999 #999999;
  1411. border-radius: 0 0 3px 3px;
  1412. background-color: #ffffff;
  1413. }
  1414. .selectr-container.open .selectr-options-container {
  1415. display: block;
  1416. }
  1417. .selectr-input-container {
  1418. position: relative;
  1419. display: none;
  1420. }
  1421. .selectr-clear,
  1422. .selectr-input-clear,
  1423. .selectr-tag-remove {
  1424. position: absolute;
  1425. top: 50%;
  1426. right: 22px;
  1427. width: 20px;
  1428. height: 20px;
  1429. padding: 0;
  1430. cursor: pointer;
  1431. -o-transform: translate3d(0px, -50%, 0px);
  1432. -ms-transform: translate3d(0px, -50%, 0px);
  1433. -moz-transform: translate3d(0px, -50%, 0px);
  1434. -webkit-transform: translate3d(0px, -50%, 0px);
  1435. transform: translate3d(0px, -50%, 0px);
  1436. border: medium none;
  1437. background-color: transparent;
  1438. z-index: 11;
  1439. }
  1440. .selectr-clear,
  1441. .selectr-input-clear {
  1442. display: none;
  1443. }
  1444. .selectr-container.has-selected .selectr-clear,
  1445. .selectr-input-container.active .selectr-input-clear {
  1446. display: block;
  1447. }
  1448. .selectr-selected .selectr-tag-remove {
  1449. right: 2px;
  1450. }
  1451. .selectr-clear::before,
  1452. .selectr-clear::after,
  1453. .selectr-input-clear::before,
  1454. .selectr-input-clear::after,
  1455. .selectr-tag-remove::before,
  1456. .selectr-tag-remove::after {
  1457. position: absolute;
  1458. top: 5px;
  1459. left: 9px;
  1460. width: 2px;
  1461. height: 10px;
  1462. content: ' ';
  1463. background-color: #6c7a86;
  1464. }
  1465. .selectr-tag-remove::before,
  1466. .selectr-tag-remove::after {
  1467. top: 4px;
  1468. width: 3px;
  1469. height: 12px;
  1470. background-color: #ffffff;
  1471. }
  1472. .selectr-clear:before,
  1473. .selectr-input-clear::before,
  1474. .selectr-tag-remove::before {
  1475. -o-transform: rotate(45deg);
  1476. -ms-transform: rotate(45deg);
  1477. -moz-transform: rotate(45deg);
  1478. -webkit-transform: rotate(45deg);
  1479. transform: rotate(45deg);
  1480. }
  1481. .selectr-clear:after,
  1482. .selectr-input-clear::after,
  1483. .selectr-tag-remove::after {
  1484. -o-transform: rotate(-45deg);
  1485. -ms-transform: rotate(-45deg);
  1486. -moz-transform: rotate(-45deg);
  1487. -webkit-transform: rotate(-45deg);
  1488. transform: rotate(-45deg);
  1489. }
  1490. .selectr-input-container.active,
  1491. .selectr-input-container.active .selectr-clear {
  1492. display: block;
  1493. }
  1494. .selectr-input {
  1495. top: 5px;
  1496. left: 5px;
  1497. box-sizing: border-box;
  1498. width: calc(100% - 30px);
  1499. margin: 10px 15px;
  1500. padding: 7px 30px 7px 9px;
  1501. border: 1px solid #999999;
  1502. border-radius: 3px;
  1503. }
  1504. .selectr-notice {
  1505. display: none;
  1506. box-sizing: border-box;
  1507. width: 100%;
  1508. padding: 8px 16px;
  1509. border-top: 1px solid #999999;
  1510. border-radius: 0 0 3px 3px;
  1511. background-color: #ffffff;
  1512. }
  1513. .selectr-container.notice .selectr-notice {
  1514. display: block;
  1515. }
  1516. .selectr-container.notice .selectr-selected {
  1517. border-radius: 3px 3px 0 0;
  1518. }
  1519. .selectr-options {
  1520. position: relative;
  1521. top: calc(100% + 2px);
  1522. display: none;
  1523. overflow-x: auto;
  1524. overflow-y: scroll;
  1525. max-height: 200px;
  1526. margin: 0;
  1527. padding: 0;
  1528. }
  1529. .selectr-container.open .selectr-options,
  1530. .selectr-container.open .selectr-input-container,
  1531. .selectr-container.notice .selectr-options-container {
  1532. display: block;
  1533. }
  1534. .selectr-option {
  1535. position: relative;
  1536. display: block;
  1537. padding: 5px 20px;
  1538. list-style: outside none none;
  1539. cursor: pointer;
  1540. font-weight: normal;
  1541. }
  1542. .selectr-options.optgroups > .selectr-option {
  1543. padding-left: 25px;
  1544. }
  1545. .selectr-optgroup {
  1546. font-weight: bold;
  1547. padding: 0;
  1548. }
  1549. .selectr-optgroup--label {
  1550. font-weight: bold;
  1551. margin-top: 10px;
  1552. padding: 5px 15px;
  1553. }
  1554. .selectr-match {
  1555. text-decoration: underline;
  1556. }
  1557. .selectr-option.selected {
  1558. background-color: #ddd;
  1559. }
  1560. .selectr-option.active {
  1561. color: #ffffff;
  1562. background-color: #5897fb;
  1563. }
  1564. .selectr-option.disabled {
  1565. opacity: 0.4;
  1566. }
  1567. .selectr-option.excluded {
  1568. display: none;
  1569. }
  1570. .selectr-container.open .selectr-selected {
  1571. border-color: #999999 #999999 transparent #999999;
  1572. border-radius: 3px 3px 0 0;
  1573. }
  1574. .selectr-container.open .selectr-selected::after {
  1575. -o-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  1576. -ms-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  1577. -moz-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  1578. -webkit-transform: rotate(180deg) translate3d(0px, 50%, 0px);
  1579. transform: rotate(180deg) translate3d(0px, 50%, 0px);
  1580. }
  1581. .selectr-disabled {
  1582. opacity: .6;
  1583. }
  1584. .selectr-empty,
  1585. .has-selected .selectr-placeholder {
  1586. display: none;
  1587. }
  1588. .has-selected .selectr-label {
  1589. display: block;
  1590. }
  1591. /* TAGGABLE */
  1592. .taggable .selectr-selected {
  1593. padding: 4px 28px 4px 4px;
  1594. }
  1595. .taggable .selectr-selected::after {
  1596. display: table;
  1597. content: " ";
  1598. clear: both;
  1599. }
  1600. .taggable .selectr-label {
  1601. width: auto;
  1602. }
  1603. .taggable .selectr-tags {
  1604. float: left;
  1605. display: block;
  1606. }
  1607. .taggable .selectr-placeholder {
  1608. display: none;
  1609. }
  1610. .input-tag {
  1611. float: left;
  1612. min-width: 90px;
  1613. width: auto;
  1614. }
  1615. .selectr-tag-input {
  1616. border: medium none;
  1617. padding: 3px 10px;
  1618. width: 100%;
  1619. font-family: inherit;
  1620. font-weight: inherit;
  1621. font-size: inherit;
  1622. }
  1623. .selectr-input-container.loading::after {
  1624. position: absolute;
  1625. top: 50%;
  1626. right: 20px;
  1627. width: 20px;
  1628. height: 20px;
  1629. content: '';
  1630. -o-transform: translate3d(0px, -50%, 0px);
  1631. -ms-transform: translate3d(0px, -50%, 0px);
  1632. -moz-transform: translate3d(0px, -50%, 0px);
  1633. -webkit-transform: translate3d(0px, -50%, 0px);
  1634. transform: translate3d(0px, -50%, 0px);
  1635. -o-transform-origin: 50% 0 0;
  1636. -ms-transform-origin: 50% 0 0;
  1637. -moz-transform-origin: 50% 0 0;
  1638. -webkit-transform-origin: 50% 0 0;
  1639. transform-origin: 50% 0 0;
  1640. -moz-animation: 500ms linear 0s normal forwards infinite running spin;
  1641. -webkit-animation: 500ms linear 0s normal forwards infinite running spin;
  1642. animation: 500ms linear 0s normal forwards infinite running spin;
  1643. border-width: 3px;
  1644. border-style: solid;
  1645. border-color: #aaa #ddd #ddd;
  1646. border-radius: 50%;
  1647. }
  1648. @-webkit-keyframes spin {
  1649. 0% {
  1650. -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1651. transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1652. }
  1653. 100% {
  1654. -webkit-transform: rotate(360deg) translate3d(0px, -50%, 0px);
  1655. transform: rotate(360deg) translate3d(0px, -50%, 0px);
  1656. }
  1657. }
  1658. @keyframes spin {
  1659. 0% {
  1660. -webkit-transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1661. transform: rotate(0deg) translate3d(0px, -50%, 0px);
  1662. }
  1663. 100% {
  1664. -webkit-transform: rotate(360deg) translate3d(0px, -50%, 0px);
  1665. transform: rotate(360deg) translate3d(0px, -50%, 0px);
  1666. }
  1667. }
  1668. .selectr-container.open.inverted .selectr-selected {
  1669. border-color: transparent #999999 #999999;
  1670. border-radius: 0 0 3px 3px;
  1671. }
  1672. .selectr-container.inverted .selectr-options-container {
  1673. border-width: 1px 1px 0;
  1674. border-color: #999999 #999999 transparent;
  1675. border-radius: 3px 3px 0 0;
  1676. background-color: #ffffff;
  1677. }
  1678. .selectr-container.inverted .selectr-options-container {
  1679. top: auto;
  1680. bottom: calc(100% - 1px);
  1681. }
  1682. .selectr-container ::-webkit-input-placeholder {
  1683. color: #6c7a86;
  1684. opacity: 1;
  1685. }
  1686. .selectr-container ::-moz-placeholder {
  1687. color: #6c7a86;
  1688. opacity: 1;
  1689. }
  1690. .selectr-container :-ms-input-placeholder {
  1691. color: #6c7a86;
  1692. opacity: 1;
  1693. }
  1694. .selectr-container ::placeholder {
  1695. color: #6c7a86;
  1696. opacity: 1;
  1697. }