Sistema de Gestión Documental
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.

1701 lines
34 KiB

5 years ago
  1. .graphiql-container,
  2. .graphiql-container button,
  3. .graphiql-container input {
  4. color: #141823;
  5. font-family:
  6. system,
  7. -apple-system,
  8. 'San Francisco',
  9. '.SFNSDisplay-Regular',
  10. 'Segoe UI',
  11. Segoe,
  12. 'Segoe WP',
  13. 'Helvetica Neue',
  14. helvetica,
  15. 'Lucida Grande',
  16. arial,
  17. sans-serif;
  18. font-size: 14px;
  19. }
  20. .graphiql-container {
  21. display: flex;
  22. flex-direction: row;
  23. height: 100%;
  24. margin: 0;
  25. overflow: hidden;
  26. width: 100%;
  27. }
  28. .graphiql-container .editorWrap {
  29. display: flex;
  30. flex-direction: column;
  31. flex: 1;
  32. overflow-x: hidden;
  33. }
  34. .graphiql-container .title {
  35. font-size: 18px;
  36. }
  37. .graphiql-container .title em {
  38. font-family: georgia;
  39. font-size: 19px;
  40. }
  41. .graphiql-container .topBarWrap {
  42. display: flex;
  43. flex-direction: row;
  44. }
  45. .graphiql-container .topBar {
  46. align-items: center;
  47. background: linear-gradient(#f7f7f7, #e2e2e2);
  48. border-bottom: 1px solid #d0d0d0;
  49. cursor: default;
  50. display: flex;
  51. flex-direction: row;
  52. flex: 1;
  53. height: 34px;
  54. overflow-y: visible;
  55. padding: 7px 14px 6px;
  56. user-select: none;
  57. }
  58. .graphiql-container .toolbar {
  59. overflow-x: visible;
  60. display: flex;
  61. }
  62. .graphiql-container .docExplorerShow,
  63. .graphiql-container .historyShow {
  64. background: linear-gradient(#f7f7f7, #e2e2e2);
  65. border-radius: 0;
  66. border-bottom: 1px solid #d0d0d0;
  67. border-right: none;
  68. border-top: none;
  69. color: #3B5998;
  70. cursor: pointer;
  71. font-size: 14px;
  72. margin: 0;
  73. padding: 2px 20px 0 18px;
  74. }
  75. .graphiql-container .docExplorerShow {
  76. border-left: 1px solid rgba(0, 0, 0, 0.2);
  77. }
  78. .graphiql-container .historyShow {
  79. border-right: 1px solid rgba(0, 0, 0, 0.2);
  80. border-left: 0;
  81. }
  82. .graphiql-container .docExplorerShow:before {
  83. border-left: 2px solid #3B5998;
  84. border-top: 2px solid #3B5998;
  85. content: '';
  86. display: inline-block;
  87. height: 9px;
  88. margin: 0 3px -1px 0;
  89. position: relative;
  90. transform: rotate(-45deg);
  91. width: 9px;
  92. }
  93. .graphiql-container .editorBar {
  94. display: flex;
  95. flex-direction: row;
  96. flex: 1;
  97. }
  98. .graphiql-container .queryWrap {
  99. display: flex;
  100. flex-direction: column;
  101. flex: 1;
  102. }
  103. .graphiql-container .resultWrap {
  104. border-left: solid 1px #e0e0e0;
  105. display: flex;
  106. flex-direction: column;
  107. flex: 1;
  108. flex-basis: 1em;
  109. position: relative;
  110. }
  111. .graphiql-container .docExplorerWrap,
  112. .graphiql-container .historyPaneWrap {
  113. background: white;
  114. box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  115. position: relative;
  116. z-index: 3;
  117. }
  118. .graphiql-container .historyPaneWrap {
  119. min-width: 230px;
  120. z-index: 5;
  121. }
  122. .graphiql-container .docExplorerResizer {
  123. cursor: col-resize;
  124. height: 100%;
  125. left: -5px;
  126. position: absolute;
  127. top: 0;
  128. width: 10px;
  129. z-index: 10;
  130. }
  131. .graphiql-container .docExplorerHide {
  132. cursor: pointer;
  133. font-size: 18px;
  134. margin: -7px -8px -6px 0;
  135. padding: 18px 16px 15px 12px;
  136. background: 0;
  137. border: 0;
  138. line-height: 14px;
  139. }
  140. .graphiql-container div .query-editor {
  141. flex: 1;
  142. position: relative;
  143. }
  144. .graphiql-container .secondary-editor {
  145. display: flex;
  146. flex-direction: column;
  147. height: 30px;
  148. position: relative;
  149. }
  150. .graphiql-container .secondary-editor-title {
  151. background: #eeeeee;
  152. border-bottom: 1px solid #d6d6d6;
  153. border-top: 1px solid #e0e0e0;
  154. color: #777;
  155. font-variant: small-caps;
  156. font-weight: bold;
  157. letter-spacing: 1px;
  158. line-height: 14px;
  159. padding: 6px 0 8px 43px;
  160. text-transform: lowercase;
  161. user-select: none;
  162. }
  163. .graphiql-container .codemirrorWrap {
  164. flex: 1;
  165. height: 100%;
  166. position: relative;
  167. }
  168. .graphiql-container .result-window {
  169. flex: 1;
  170. height: 100%;
  171. position: relative;
  172. }
  173. .graphiql-container .footer {
  174. background: #f6f7f8;
  175. border-left: 1px solid #e0e0e0;
  176. border-top: 1px solid #e0e0e0;
  177. margin-left: 12px;
  178. position: relative;
  179. }
  180. .graphiql-container .footer:before {
  181. background: #eeeeee;
  182. bottom: 0;
  183. content: " ";
  184. left: -13px;
  185. position: absolute;
  186. top: -1px;
  187. width: 12px;
  188. }
  189. /* No `.graphiql-container` here so themes can overwrite */
  190. .result-window .CodeMirror {
  191. background: #f6f7f8;
  192. }
  193. .graphiql-container .result-window .CodeMirror-gutters {
  194. background-color: #eeeeee;
  195. border-color: #e0e0e0;
  196. cursor: col-resize;
  197. }
  198. .graphiql-container .result-window .CodeMirror-foldgutter,
  199. .graphiql-container .result-window .CodeMirror-foldgutter-open:after,
  200. .graphiql-container .result-window .CodeMirror-foldgutter-folded:after {
  201. padding-left: 3px;
  202. }
  203. .graphiql-container .toolbar-button {
  204. background: #fdfdfd;
  205. background: linear-gradient(#f9f9f9, #ececec);
  206. border: 0;
  207. border-radius: 3px;
  208. box-shadow:
  209. inset 0 0 0 1px rgba(0,0,0,0.20),
  210. 0 1px 0 rgba(255,255,255, 0.7),
  211. inset 0 1px #fff;
  212. color: #555;
  213. cursor: pointer;
  214. display: inline-block;
  215. margin: 0 5px;
  216. padding: 3px 11px 5px;
  217. text-decoration: none;
  218. text-overflow: ellipsis;
  219. white-space: nowrap;
  220. max-width: 150px;
  221. }
  222. .graphiql-container .toolbar-button:active {
  223. background: linear-gradient(#ececec, #d5d5d5);
  224. box-shadow:
  225. 0 1px 0 rgba(255, 255, 255, 0.7),
  226. inset 0 0 0 1px rgba(0,0,0,0.10),
  227. inset 0 1px 1px 1px rgba(0, 0, 0, 0.12),
  228. inset 0 0 5px rgba(0, 0, 0, 0.1);
  229. }
  230. .graphiql-container .toolbar-button.error {
  231. background: linear-gradient(#fdf3f3, #e6d6d7);
  232. color: #b00;
  233. }
  234. .graphiql-container .toolbar-button-group {
  235. margin: 0 5px;
  236. white-space: nowrap;
  237. }
  238. .graphiql-container .toolbar-button-group > * {
  239. margin: 0;
  240. }
  241. .graphiql-container .toolbar-button-group > *:not(:last-child) {
  242. border-top-right-radius: 0;
  243. border-bottom-right-radius: 0;
  244. }
  245. .graphiql-container .toolbar-button-group > *:not(:first-child) {
  246. border-top-left-radius: 0;
  247. border-bottom-left-radius: 0;
  248. margin-left: -1px;
  249. }
  250. .graphiql-container .execute-button-wrap {
  251. height: 34px;
  252. margin: 0 14px 0 28px;
  253. position: relative;
  254. }
  255. .graphiql-container .execute-button {
  256. background: linear-gradient(#fdfdfd, #d2d3d6);
  257. border-radius: 17px;
  258. border: 1px solid rgba(0,0,0,0.25);
  259. box-shadow: 0 1px 0 #fff;
  260. cursor: pointer;
  261. fill: #444;
  262. height: 34px;
  263. margin: 0;
  264. padding: 0;
  265. width: 34px;
  266. }
  267. .graphiql-container .execute-button svg {
  268. pointer-events: none;
  269. }
  270. .graphiql-container .execute-button:active {
  271. background: linear-gradient(#e6e6e6, #c3c3c3);
  272. box-shadow:
  273. 0 1px 0 #fff,
  274. inset 0 0 2px rgba(0, 0, 0, 0.2),
  275. inset 0 0 6px rgba(0, 0, 0, 0.1);
  276. }
  277. .graphiql-container .toolbar-menu,
  278. .graphiql-container .toolbar-select {
  279. position: relative;
  280. }
  281. .graphiql-container .execute-options,
  282. .graphiql-container .toolbar-menu-items,
  283. .graphiql-container .toolbar-select-options {
  284. background: #fff;
  285. box-shadow:
  286. 0 0 0 1px rgba(0,0,0,0.1),
  287. 0 2px 4px rgba(0,0,0,0.25);
  288. margin: 0;
  289. padding: 6px 0;
  290. position: absolute;
  291. z-index: 100;
  292. }
  293. .graphiql-container .execute-options {
  294. min-width: 100px;
  295. top: 37px;
  296. left: -1px;
  297. }
  298. .graphiql-container .toolbar-menu-items {
  299. left: 1px;
  300. margin-top: -1px;
  301. min-width: 110%;
  302. top: 100%;
  303. visibility: hidden;
  304. }
  305. .graphiql-container .toolbar-menu-items.open {
  306. visibility: visible;
  307. }
  308. .graphiql-container .toolbar-select-options {
  309. left: 0;
  310. min-width: 100%;
  311. top: -5px;
  312. visibility: hidden;
  313. }
  314. .graphiql-container .toolbar-select-options.open {
  315. visibility: visible;
  316. }
  317. .graphiql-container .execute-options > li,
  318. .graphiql-container .toolbar-menu-items > li,
  319. .graphiql-container .toolbar-select-options > li {
  320. cursor: pointer;
  321. display: block;
  322. margin: none;
  323. max-width: 300px;
  324. overflow: hidden;
  325. padding: 2px 20px 4px 11px;
  326. white-space: nowrap;
  327. }
  328. .graphiql-container .execute-options > li.selected,
  329. .graphiql-container .toolbar-menu-items > li.hover,
  330. .graphiql-container .toolbar-menu-items > li:active,
  331. .graphiql-container .toolbar-menu-items > li:hover,
  332. .graphiql-container .toolbar-select-options > li.hover,
  333. .graphiql-container .toolbar-select-options > li:active,
  334. .graphiql-container .toolbar-select-options > li:hover,
  335. .graphiql-container .history-contents > li:hover,
  336. .graphiql-container .history-contents > li:active {
  337. background: #e10098;
  338. color: #fff;
  339. }
  340. .graphiql-container .toolbar-select-options > li > svg {
  341. display: inline;
  342. fill: #666;
  343. margin: 0 -6px 0 6px;
  344. pointer-events: none;
  345. vertical-align: middle;
  346. }
  347. .graphiql-container .toolbar-select-options > li.hover > svg,
  348. .graphiql-container .toolbar-select-options > li:active > svg,
  349. .graphiql-container .toolbar-select-options > li:hover > svg {
  350. fill: #fff;
  351. }
  352. .graphiql-container .CodeMirror-scroll {
  353. overflow-scrolling: touch;
  354. }
  355. .graphiql-container .CodeMirror {
  356. color: #141823;
  357. font-family:
  358. 'Consolas',
  359. 'Inconsolata',
  360. 'Droid Sans Mono',
  361. 'Monaco',
  362. monospace;
  363. font-size: 13px;
  364. height: 100%;
  365. left: 0;
  366. position: absolute;
  367. top: 0;
  368. width: 100%;
  369. }
  370. .graphiql-container .CodeMirror-lines {
  371. padding: 20px 0;
  372. }
  373. .CodeMirror-hint-information .content {
  374. box-orient: vertical;
  375. color: #141823;
  376. display: flex;
  377. font-family: system, -apple-system, 'San Francisco', '.SFNSDisplay-Regular', 'Segoe UI', Segoe, 'Segoe WP', 'Helvetica Neue', helvetica, 'Lucida Grande', arial, sans-serif;
  378. font-size: 13px;
  379. line-clamp: 3;
  380. line-height: 16px;
  381. max-height: 48px;
  382. overflow: hidden;
  383. text-overflow: -o-ellipsis-lastline;
  384. }
  385. .CodeMirror-hint-information .content p:first-child {
  386. margin-top: 0;
  387. }
  388. .CodeMirror-hint-information .content p:last-child {
  389. margin-bottom: 0;
  390. }
  391. .CodeMirror-hint-information .infoType {
  392. color: #CA9800;
  393. cursor: pointer;
  394. display: inline;
  395. margin-right: 0.5em;
  396. }
  397. .autoInsertedLeaf.cm-property {
  398. animation-duration: 6s;
  399. animation-name: insertionFade;
  400. border-bottom: 2px solid rgba(255, 255, 255, 0);
  401. border-radius: 2px;
  402. margin: -2px -4px -1px;
  403. padding: 2px 4px 1px;
  404. }
  405. @keyframes insertionFade {
  406. from, to {
  407. background: rgba(255, 255, 255, 0);
  408. border-color: rgba(255, 255, 255, 0);
  409. }
  410. 15%, 85% {
  411. background: #fbffc9;
  412. border-color: #f0f3c0;
  413. }
  414. }
  415. div.CodeMirror-lint-tooltip {
  416. background-color: white;
  417. border-radius: 2px;
  418. border: 0;
  419. color: #141823;
  420. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  421. font-size: 13px;
  422. line-height: 16px;
  423. max-width: 430px;
  424. opacity: 0;
  425. padding: 8px 10px;
  426. transition: opacity 0.15s;
  427. white-space: pre-wrap;
  428. }
  429. div.CodeMirror-lint-tooltip > * {
  430. padding-left: 23px;
  431. }
  432. div.CodeMirror-lint-tooltip > * + * {
  433. margin-top: 12px;
  434. }
  435. /* COLORS */
  436. .graphiql-container .CodeMirror-foldmarker {
  437. border-radius: 4px;
  438. background: #08f;
  439. background: linear-gradient(#43A8FF, #0F83E8);
  440. box-shadow:
  441. 0 1px 1px rgba(0, 0, 0, 0.2),
  442. inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  443. color: white;
  444. font-family: arial;
  445. font-size: 12px;
  446. line-height: 0;
  447. margin: 0 3px;
  448. padding: 0px 4px 1px;
  449. text-shadow: 0 -1px rgba(0, 0, 0, 0.1);
  450. }
  451. .graphiql-container div.CodeMirror span.CodeMirror-matchingbracket {
  452. color: #555;
  453. text-decoration: underline;
  454. }
  455. .graphiql-container div.CodeMirror span.CodeMirror-nonmatchingbracket {
  456. color: #f00;
  457. }
  458. /* Comment */
  459. .cm-comment {
  460. color: #999;
  461. }
  462. /* Punctuation */
  463. .cm-punctuation {
  464. color: #555;
  465. }
  466. /* Keyword */
  467. .cm-keyword {
  468. color: #B11A04;
  469. }
  470. /* OperationName, FragmentName */
  471. .cm-def {
  472. color: #D2054E;
  473. }
  474. /* FieldName */
  475. .cm-property {
  476. color: #1F61A0;
  477. }
  478. /* FieldAlias */
  479. .cm-qualifier {
  480. color: #1C92A9;
  481. }
  482. /* ArgumentName and ObjectFieldName */
  483. .cm-attribute {
  484. color: #8B2BB9;
  485. }
  486. /* Number */
  487. .cm-number {
  488. color: #2882F9;
  489. }
  490. /* String */
  491. .cm-string {
  492. color: #D64292;
  493. }
  494. /* Boolean */
  495. .cm-builtin {
  496. color: #D47509;
  497. }
  498. /* EnumValue */
  499. .cm-string-2 {
  500. color: #0B7FC7;
  501. }
  502. /* Variable */
  503. .cm-variable {
  504. color: #397D13;
  505. }
  506. /* Directive */
  507. .cm-meta {
  508. color: #B33086;
  509. }
  510. /* Type */
  511. .cm-atom {
  512. color: #CA9800;
  513. }
  514. /* BASICS */
  515. .CodeMirror {
  516. /* Set height, width, borders, and global font properties here */
  517. color: black;
  518. font-family: monospace;
  519. height: 300px;
  520. }
  521. /* PADDING */
  522. .CodeMirror-lines {
  523. padding: 4px 0; /* Vertical padding around content */
  524. }
  525. .CodeMirror pre {
  526. padding: 0 4px; /* Horizontal padding of content */
  527. }
  528. .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  529. background-color: white; /* The little square between H and V scrollbars */
  530. }
  531. /* GUTTER */
  532. .CodeMirror-gutters {
  533. border-right: 1px solid #ddd;
  534. background-color: #f7f7f7;
  535. white-space: nowrap;
  536. }
  537. .CodeMirror-linenumbers {}
  538. .CodeMirror-linenumber {
  539. color: #999;
  540. min-width: 20px;
  541. padding: 0 3px 0 5px;
  542. text-align: right;
  543. white-space: nowrap;
  544. }
  545. .CodeMirror-guttermarker { color: black; }
  546. .CodeMirror-guttermarker-subtle { color: #999; }
  547. /* CURSOR */
  548. .CodeMirror .CodeMirror-cursor {
  549. border-left: 1px solid black;
  550. }
  551. /* Shown when moving in bi-directional text */
  552. .CodeMirror div.CodeMirror-secondarycursor {
  553. border-left: 1px solid silver;
  554. }
  555. .CodeMirror.cm-fat-cursor div.CodeMirror-cursor {
  556. background: #7e7;
  557. border: 0;
  558. width: auto;
  559. }
  560. .CodeMirror.cm-fat-cursor div.CodeMirror-cursors {
  561. z-index: 1;
  562. }
  563. .cm-animate-fat-cursor {
  564. animation: blink 1.06s steps(1) infinite;
  565. border: 0;
  566. width: auto;
  567. }
  568. @keyframes blink {
  569. 0% { background: #7e7; }
  570. 50% { background: none; }
  571. 100% { background: #7e7; }
  572. }
  573. /* Can style cursor different in overwrite (non-insert) mode */
  574. div.CodeMirror-overwrite div.CodeMirror-cursor {}
  575. .cm-tab { display: inline-block; text-decoration: inherit; }
  576. .CodeMirror-ruler {
  577. border-left: 1px solid #ccc;
  578. position: absolute;
  579. }
  580. /* DEFAULT THEME */
  581. .cm-s-default .cm-keyword {color: #708;}
  582. .cm-s-default .cm-atom {color: #219;}
  583. .cm-s-default .cm-number {color: #164;}
  584. .cm-s-default .cm-def {color: #00f;}
  585. .cm-s-default .cm-variable,
  586. .cm-s-default .cm-punctuation,
  587. .cm-s-default .cm-property,
  588. .cm-s-default .cm-operator {}
  589. .cm-s-default .cm-variable-2 {color: #05a;}
  590. .cm-s-default .cm-variable-3 {color: #085;}
  591. .cm-s-default .cm-comment {color: #a50;}
  592. .cm-s-default .cm-string {color: #a11;}
  593. .cm-s-default .cm-string-2 {color: #f50;}
  594. .cm-s-default .cm-meta {color: #555;}
  595. .cm-s-default .cm-qualifier {color: #555;}
  596. .cm-s-default .cm-builtin {color: #30a;}
  597. .cm-s-default .cm-bracket {color: #997;}
  598. .cm-s-default .cm-tag {color: #170;}
  599. .cm-s-default .cm-attribute {color: #00c;}
  600. .cm-s-default .cm-header {color: blue;}
  601. .cm-s-default .cm-quote {color: #090;}
  602. .cm-s-default .cm-hr {color: #999;}
  603. .cm-s-default .cm-link {color: #00c;}
  604. .cm-negative {color: #d44;}
  605. .cm-positive {color: #292;}
  606. .cm-header, .cm-strong {font-weight: bold;}
  607. .cm-em {font-style: italic;}
  608. .cm-link {text-decoration: underline;}
  609. .cm-strikethrough {text-decoration: line-through;}
  610. .cm-s-default .cm-error {color: #f00;}
  611. .cm-invalidchar {color: #f00;}
  612. .CodeMirror-composing { border-bottom: 2px solid; }
  613. /* Default styles for common addons */
  614. div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
  615. div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
  616. .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
  617. .CodeMirror-activeline-background {background: #e8f2ff;}
  618. /* STOP */
  619. /* The rest of this file contains styles related to the mechanics of
  620. the editor. You probably shouldn't touch them. */
  621. .CodeMirror {
  622. background: white;
  623. overflow: hidden;
  624. position: relative;
  625. }
  626. .CodeMirror-scroll {
  627. height: 100%;
  628. /* 30px is the magic margin used to hide the element's real scrollbars */
  629. /* See overflow: hidden in .CodeMirror */
  630. margin-bottom: -30px; margin-right: -30px;
  631. outline: none; /* Prevent dragging from highlighting the element */
  632. overflow: scroll !important; /* Things will break if this is overridden */
  633. padding-bottom: 30px;
  634. position: relative;
  635. }
  636. .CodeMirror-sizer {
  637. border-right: 30px solid transparent;
  638. position: relative;
  639. }
  640. /* The fake, visible scrollbars. Used to force redraw during scrolling
  641. before actual scrolling happens, thus preventing shaking and
  642. flickering artifacts. */
  643. .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  644. display: none;
  645. position: absolute;
  646. z-index: 6;
  647. }
  648. .CodeMirror-vscrollbar {
  649. overflow-x: hidden;
  650. overflow-y: scroll;
  651. right: 0; top: 0;
  652. }
  653. .CodeMirror-hscrollbar {
  654. bottom: 0; left: 0;
  655. overflow-x: scroll;
  656. overflow-y: hidden;
  657. }
  658. .CodeMirror-scrollbar-filler {
  659. right: 0; bottom: 0;
  660. }
  661. .CodeMirror-gutter-filler {
  662. left: 0; bottom: 0;
  663. }
  664. .CodeMirror-gutters {
  665. min-height: 100%;
  666. position: absolute; left: 0; top: 0;
  667. z-index: 3;
  668. }
  669. .CodeMirror-gutter {
  670. display: inline-block;
  671. height: 100%;
  672. margin-bottom: -30px;
  673. vertical-align: top;
  674. white-space: normal;
  675. /* Hack to make IE7 behave */
  676. *zoom:1;
  677. *display:inline;
  678. }
  679. .CodeMirror-gutter-wrapper {
  680. background: none !important;
  681. border: none !important;
  682. position: absolute;
  683. z-index: 4;
  684. }
  685. .CodeMirror-gutter-background {
  686. position: absolute;
  687. top: 0; bottom: 0;
  688. z-index: 4;
  689. }
  690. .CodeMirror-gutter-elt {
  691. cursor: default;
  692. position: absolute;
  693. z-index: 4;
  694. }
  695. .CodeMirror-gutter-wrapper {
  696. user-select: none;
  697. }
  698. .CodeMirror-lines {
  699. cursor: text;
  700. min-height: 1px; /* prevents collapsing before first draw */
  701. }
  702. .CodeMirror pre {
  703. -webkit-tap-highlight-color: transparent;
  704. /* Reset some styles that the rest of the page might have set */
  705. background: transparent;
  706. border-radius: 0;
  707. border-width: 0;
  708. color: inherit;
  709. font-family: inherit;
  710. font-size: inherit;
  711. font-variant-ligatures: none;
  712. line-height: inherit;
  713. margin: 0;
  714. overflow: visible;
  715. position: relative;
  716. white-space: pre;
  717. word-wrap: normal;
  718. z-index: 2;
  719. }
  720. .CodeMirror-wrap pre {
  721. word-wrap: break-word;
  722. white-space: pre-wrap;
  723. word-break: normal;
  724. }
  725. .CodeMirror-linebackground {
  726. position: absolute;
  727. left: 0; right: 0; top: 0; bottom: 0;
  728. z-index: 0;
  729. }
  730. .CodeMirror-linewidget {
  731. overflow: auto;
  732. position: relative;
  733. z-index: 2;
  734. }
  735. .CodeMirror-widget {}
  736. .CodeMirror-code {
  737. outline: none;
  738. }
  739. /* Force content-box sizing for the elements where we expect it */
  740. .CodeMirror-scroll,
  741. .CodeMirror-sizer,
  742. .CodeMirror-gutter,
  743. .CodeMirror-gutters,
  744. .CodeMirror-linenumber {
  745. box-sizing: content-box;
  746. }
  747. .CodeMirror-measure {
  748. height: 0;
  749. overflow: hidden;
  750. position: absolute;
  751. visibility: hidden;
  752. width: 100%;
  753. }
  754. .CodeMirror-cursor { position: absolute; }
  755. .CodeMirror-measure pre { position: static; }
  756. div.CodeMirror-cursors {
  757. position: relative;
  758. visibility: hidden;
  759. z-index: 3;
  760. }
  761. div.CodeMirror-dragcursors {
  762. visibility: visible;
  763. }
  764. .CodeMirror-focused div.CodeMirror-cursors {
  765. visibility: visible;
  766. }
  767. .CodeMirror-selected { background: #d9d9d9; }
  768. .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
  769. .CodeMirror-crosshair { cursor: crosshair; }
  770. .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
  771. .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
  772. .cm-searching {
  773. background: #ffa;
  774. background: rgba(255, 255, 0, .4);
  775. }
  776. /* IE7 hack to prevent it from returning funny offsetTops on the spans */
  777. .CodeMirror span { *vertical-align: text-bottom; }
  778. /* Used to force a border model for a node */
  779. .cm-force-border { padding-right: .1px; }
  780. @media print {
  781. /* Hide the cursor when printing */
  782. .CodeMirror div.CodeMirror-cursors {
  783. visibility: hidden;
  784. }
  785. }
  786. /* See issue #2901 */
  787. .cm-tab-wrap-hack:after { content: ''; }
  788. /* Help users use markselection to safely style text background */
  789. span.CodeMirror-selectedtext { background: none; }
  790. .CodeMirror-dialog {
  791. background: inherit;
  792. color: inherit;
  793. left: 0; right: 0;
  794. overflow: hidden;
  795. padding: .1em .8em;
  796. position: absolute;
  797. z-index: 15;
  798. }
  799. .CodeMirror-dialog-top {
  800. border-bottom: 1px solid #eee;
  801. top: 0;
  802. }
  803. .CodeMirror-dialog-bottom {
  804. border-top: 1px solid #eee;
  805. bottom: 0;
  806. }
  807. .CodeMirror-dialog input {
  808. background: transparent;
  809. border: 1px solid #d3d6db;
  810. color: inherit;
  811. font-family: monospace;
  812. outline: none;
  813. width: 20em;
  814. }
  815. .CodeMirror-dialog button {
  816. font-size: 70%;
  817. }
  818. .CodeMirror-foldmarker {
  819. color: blue;
  820. cursor: pointer;
  821. font-family: arial;
  822. line-height: .3;
  823. text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  824. }
  825. .CodeMirror-foldgutter {
  826. width: .7em;
  827. }
  828. .CodeMirror-foldgutter-open,
  829. .CodeMirror-foldgutter-folded {
  830. cursor: pointer;
  831. }
  832. .CodeMirror-foldgutter-open:after {
  833. content: "\25BE";
  834. }
  835. .CodeMirror-foldgutter-folded:after {
  836. content: "\25B8";
  837. }
  838. .CodeMirror-info {
  839. background: white;
  840. border-radius: 2px;
  841. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  842. box-sizing: border-box;
  843. color: #555;
  844. font-family:
  845. system,
  846. -apple-system,
  847. 'San Francisco',
  848. '.SFNSDisplay-Regular',
  849. 'Segoe UI',
  850. Segoe,
  851. 'Segoe WP',
  852. 'Helvetica Neue',
  853. helvetica,
  854. 'Lucida Grande',
  855. arial,
  856. sans-serif;
  857. font-size: 13px;
  858. line-height: 16px;
  859. margin: 8px -8px;
  860. max-width: 400px;
  861. opacity: 0;
  862. overflow: hidden;
  863. padding: 8px 8px;
  864. position: fixed;
  865. transition: opacity 0.15s;
  866. z-index: 50;
  867. }
  868. .CodeMirror-info :first-child {
  869. margin-top: 0;
  870. }
  871. .CodeMirror-info :last-child {
  872. margin-bottom: 0;
  873. }
  874. .CodeMirror-info p {
  875. margin: 1em 0;
  876. }
  877. .CodeMirror-info .info-description {
  878. color: #777;
  879. line-height: 16px;
  880. margin-top: 1em;
  881. max-height: 80px;
  882. overflow: hidden;
  883. }
  884. .CodeMirror-info .info-deprecation {
  885. background: #fffae8;
  886. box-shadow: inset 0 1px 1px -1px #bfb063;
  887. color: #867F70;
  888. line-height: 16px;
  889. margin: -8px;
  890. margin-top: 8px;
  891. max-height: 80px;
  892. overflow: hidden;
  893. padding: 8px;
  894. }
  895. .CodeMirror-info .info-deprecation-label {
  896. color: #c79b2e;
  897. cursor: default;
  898. display: block;
  899. font-size: 9px;
  900. font-weight: bold;
  901. letter-spacing: 1px;
  902. line-height: 1;
  903. padding-bottom: 5px;
  904. text-transform: uppercase;
  905. user-select: none;
  906. }
  907. .CodeMirror-info .info-deprecation-label + * {
  908. margin-top: 0;
  909. }
  910. .CodeMirror-info a {
  911. text-decoration: none;
  912. }
  913. .CodeMirror-info a:hover {
  914. text-decoration: underline;
  915. }
  916. .CodeMirror-info .type-name {
  917. color: #CA9800;
  918. }
  919. .CodeMirror-info .field-name {
  920. color: #1F61A0;
  921. }
  922. .CodeMirror-info .enum-value {
  923. color: #0B7FC7;
  924. }
  925. .CodeMirror-info .arg-name {
  926. color: #8B2BB9;
  927. }
  928. .CodeMirror-info .directive-name {
  929. color: #B33086;
  930. }
  931. .CodeMirror-jump-token {
  932. text-decoration: underline;
  933. cursor: pointer;
  934. }
  935. /* The lint marker gutter */
  936. .CodeMirror-lint-markers {
  937. width: 16px;
  938. }
  939. .CodeMirror-lint-tooltip {
  940. background-color: infobackground;
  941. border-radius: 4px 4px 4px 4px;
  942. border: 1px solid black;
  943. color: infotext;
  944. font-family: monospace;
  945. font-size: 10pt;
  946. max-width: 600px;
  947. opacity: 0;
  948. overflow: hidden;
  949. padding: 2px 5px;
  950. position: fixed;
  951. transition: opacity .4s;
  952. white-space: pre-wrap;
  953. z-index: 100;
  954. }
  955. .CodeMirror-lint-mark-error, .CodeMirror-lint-mark-warning {
  956. background-position: left bottom;
  957. background-repeat: repeat-x;
  958. }
  959. .CodeMirror-lint-mark-error {
  960. background-image:
  961. url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==")
  962. ;
  963. }
  964. .CodeMirror-lint-mark-warning {
  965. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=");
  966. }
  967. .CodeMirror-lint-marker-error, .CodeMirror-lint-marker-warning {
  968. background-position: center center;
  969. background-repeat: no-repeat;
  970. cursor: pointer;
  971. display: inline-block;
  972. height: 16px;
  973. position: relative;
  974. vertical-align: middle;
  975. width: 16px;
  976. }
  977. .CodeMirror-lint-message-error, .CodeMirror-lint-message-warning {
  978. background-position: top left;
  979. background-repeat: no-repeat;
  980. padding-left: 18px;
  981. }
  982. .CodeMirror-lint-marker-error, .CodeMirror-lint-message-error {
  983. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=");
  984. }
  985. .CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning {
  986. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=");
  987. }
  988. .CodeMirror-lint-marker-multiple {
  989. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC");
  990. background-position: right bottom;
  991. background-repeat: no-repeat;
  992. width: 100%; height: 100%;
  993. }
  994. .graphiql-container .spinner-container {
  995. height: 36px;
  996. left: 50%;
  997. position: absolute;
  998. top: 50%;
  999. transform: translate(-50%, -50%);
  1000. width: 36px;
  1001. z-index: 10;
  1002. }
  1003. .graphiql-container .spinner {
  1004. animation: rotation .6s infinite linear;
  1005. border-bottom: 6px solid rgba(150, 150, 150, .15);
  1006. border-left: 6px solid rgba(150, 150, 150, .15);
  1007. border-radius: 100%;
  1008. border-right: 6px solid rgba(150, 150, 150, .15);
  1009. border-top: 6px solid rgba(150, 150, 150, .8);
  1010. display: inline-block;
  1011. height: 24px;
  1012. position: absolute;
  1013. vertical-align: middle;
  1014. width: 24px;
  1015. }
  1016. @keyframes rotation {
  1017. from { transform: rotate(0deg); }
  1018. to { transform: rotate(359deg); }
  1019. }
  1020. .CodeMirror-hints {
  1021. background: white;
  1022. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  1023. font-family: 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace;
  1024. font-size: 13px;
  1025. list-style: none;
  1026. margin-left: -6px;
  1027. margin: 0;
  1028. max-height: 14.5em;
  1029. overflow: hidden;
  1030. overflow-y: auto;
  1031. padding: 0;
  1032. position: absolute;
  1033. z-index: 10;
  1034. }
  1035. .CodeMirror-hint {
  1036. border-top: solid 1px #f7f7f7;
  1037. color: #141823;
  1038. cursor: pointer;
  1039. margin: 0;
  1040. max-width: 300px;
  1041. overflow: hidden;
  1042. padding: 2px 6px;
  1043. white-space: pre;
  1044. }
  1045. li.CodeMirror-hint-active {
  1046. background-color: #08f;
  1047. border-top-color: white;
  1048. color: white;
  1049. }
  1050. .CodeMirror-hint-information {
  1051. border-top: solid 1px #c0c0c0;
  1052. max-width: 300px;
  1053. padding: 4px 6px;
  1054. position: relative;
  1055. z-index: 1;
  1056. }
  1057. .CodeMirror-hint-information:first-child {
  1058. border-bottom: solid 1px #c0c0c0;
  1059. border-top: none;
  1060. margin-bottom: -1px;
  1061. }
  1062. .CodeMirror-hint-deprecation {
  1063. background: #fffae8;
  1064. box-shadow: inset 0 1px 1px -1px #bfb063;
  1065. color: #867F70;
  1066. font-family:
  1067. system,
  1068. -apple-system,
  1069. 'San Francisco',
  1070. '.SFNSDisplay-Regular',
  1071. 'Segoe UI',
  1072. Segoe,
  1073. 'Segoe WP',
  1074. 'Helvetica Neue',
  1075. helvetica,
  1076. 'Lucida Grande',
  1077. arial,
  1078. sans-serif;
  1079. font-size: 13px;
  1080. line-height: 16px;
  1081. margin-top: 4px;
  1082. max-height: 80px;
  1083. overflow: hidden;
  1084. padding: 6px;
  1085. }
  1086. .CodeMirror-hint-deprecation .deprecation-label {
  1087. color: #c79b2e;
  1088. cursor: default;
  1089. display: block;
  1090. font-size: 9px;
  1091. font-weight: bold;
  1092. letter-spacing: 1px;
  1093. line-height: 1;
  1094. padding-bottom: 5px;
  1095. text-transform: uppercase;
  1096. user-select: none;
  1097. }
  1098. .CodeMirror-hint-deprecation .deprecation-label + * {
  1099. margin-top: 0;
  1100. }
  1101. .CodeMirror-hint-deprecation :last-child {
  1102. margin-bottom: 0;
  1103. }
  1104. .graphiql-container .doc-explorer {
  1105. background: white;
  1106. }
  1107. .graphiql-container .doc-explorer-title-bar,
  1108. .graphiql-container .history-title-bar {
  1109. cursor: default;
  1110. display: flex;
  1111. height: 34px;
  1112. line-height: 14px;
  1113. padding: 8px 8px 5px;
  1114. position: relative;
  1115. user-select: none;
  1116. }
  1117. .graphiql-container .doc-explorer-title,
  1118. .graphiql-container .history-title {
  1119. flex: 1;
  1120. font-weight: bold;
  1121. overflow-x: hidden;
  1122. padding: 10px 0 10px 10px;
  1123. text-align: center;
  1124. text-overflow: ellipsis;
  1125. user-select: text;
  1126. white-space: nowrap;
  1127. }
  1128. .graphiql-container .doc-explorer-back {
  1129. color: #3B5998;
  1130. cursor: pointer;
  1131. margin: -7px 0 -6px -8px;
  1132. overflow-x: hidden;
  1133. padding: 17px 12px 16px 16px;
  1134. text-overflow: ellipsis;
  1135. white-space: nowrap;
  1136. background: 0;
  1137. border: 0;
  1138. line-height: 14px;
  1139. }
  1140. .doc-explorer-narrow .doc-explorer-back {
  1141. width: 0;
  1142. }
  1143. .graphiql-container .doc-explorer-back:before {
  1144. border-left: 2px solid #3B5998;
  1145. border-top: 2px solid #3B5998;
  1146. content: '';
  1147. display: inline-block;
  1148. height: 9px;
  1149. margin: 0 3px -1px 0;
  1150. position: relative;
  1151. transform: rotate(-45deg);
  1152. width: 9px;
  1153. }
  1154. .graphiql-container .doc-explorer-rhs {
  1155. position: relative;
  1156. }
  1157. .graphiql-container .doc-explorer-contents,
  1158. .graphiql-container .history-contents {
  1159. background-color: #ffffff;
  1160. border-top: 1px solid #d6d6d6;
  1161. bottom: 0;
  1162. left: 0;
  1163. overflow-y: auto;
  1164. padding: 20px 15px;
  1165. position: absolute;
  1166. right: 0;
  1167. top: 47px;
  1168. }
  1169. .graphiql-container .doc-explorer-contents {
  1170. min-width: 300px;
  1171. }
  1172. .graphiql-container .doc-type-description p:first-child ,
  1173. .graphiql-container .doc-type-description blockquote:first-child {
  1174. margin-top: 0;
  1175. }
  1176. .graphiql-container .doc-explorer-contents a {
  1177. cursor: pointer;
  1178. text-decoration: none;
  1179. }
  1180. .graphiql-container .doc-explorer-contents a:hover {
  1181. text-decoration: underline;
  1182. }
  1183. .graphiql-container .doc-value-description > :first-child {
  1184. margin-top: 4px;
  1185. }
  1186. .graphiql-container .doc-value-description > :last-child {
  1187. margin-bottom: 4px;
  1188. }
  1189. .graphiql-container .doc-type-description code,
  1190. .graphiql-container .doc-type-description pre,
  1191. .graphiql-container .doc-category code,
  1192. .graphiql-container .doc-category pre {
  1193. --saf-0: rgba(var(--sk_foreground_low,29,28,29),0.13);
  1194. font-size: 12px;
  1195. line-height: 1.50001;
  1196. font-variant-ligatures: none;
  1197. white-space: pre;
  1198. white-space: pre-wrap;
  1199. word-wrap: break-word;
  1200. word-break: normal;
  1201. -webkit-tab-size: 4;
  1202. -moz-tab-size: 4;
  1203. tab-size: 4;
  1204. }
  1205. .graphiql-container .doc-type-description code,
  1206. .graphiql-container .doc-category code {
  1207. padding: 2px 3px 1px;
  1208. border: 1px solid var(--saf-0);
  1209. border-radius: 3px;
  1210. background-color: rgba(var(--sk_foreground_min,29,28,29),.04);
  1211. color: #e01e5a;
  1212. background-color: white;
  1213. }
  1214. .graphiql-container .doc-category {
  1215. margin: 20px 0;
  1216. }
  1217. .graphiql-container .doc-category-title {
  1218. border-bottom: 1px solid #e0e0e0;
  1219. color: #777;
  1220. cursor: default;
  1221. font-size: 14px;
  1222. font-variant: small-caps;
  1223. font-weight: bold;
  1224. letter-spacing: 1px;
  1225. margin: 0 -15px 10px 0;
  1226. padding: 10px 0;
  1227. user-select: none;
  1228. }
  1229. .graphiql-container .doc-category-item {
  1230. margin: 12px 0;
  1231. color: #555;
  1232. }
  1233. .graphiql-container .keyword {
  1234. color: #B11A04;
  1235. }
  1236. .graphiql-container .type-name {
  1237. color: #CA9800;
  1238. }
  1239. .graphiql-container .field-name {
  1240. color: #1F61A0;
  1241. }
  1242. .graphiql-container .field-short-description {
  1243. color: #999;
  1244. margin-left: 5px;
  1245. overflow: hidden;
  1246. text-overflow: ellipsis;
  1247. }
  1248. .graphiql-container .enum-value {
  1249. color: #0B7FC7;
  1250. }
  1251. .graphiql-container .arg-name {
  1252. color: #8B2BB9;
  1253. }
  1254. .graphiql-container .arg {
  1255. display: block;
  1256. margin-left: 1em;
  1257. }
  1258. .graphiql-container .arg:first-child:last-child,
  1259. .graphiql-container .arg:first-child:nth-last-child(2),
  1260. .graphiql-container .arg:first-child:nth-last-child(2) ~ .arg {
  1261. display: inherit;
  1262. margin: inherit;
  1263. }
  1264. .graphiql-container .arg:first-child:nth-last-child(2):after {
  1265. content: ', ';
  1266. }
  1267. .graphiql-container .arg-default-value {
  1268. color: #43A047;
  1269. }
  1270. .graphiql-container .doc-deprecation {
  1271. background: #fffae8;
  1272. box-shadow: inset 0 0 1px #bfb063;
  1273. color: #867F70;
  1274. line-height: 16px;
  1275. margin: 8px -8px;
  1276. max-height: 80px;
  1277. overflow: hidden;
  1278. padding: 8px;
  1279. border-radius: 3px;
  1280. }
  1281. .graphiql-container .doc-deprecation:before {
  1282. content: 'Deprecated:';
  1283. color: #c79b2e;
  1284. cursor: default;
  1285. display: block;
  1286. font-size: 9px;
  1287. font-weight: bold;
  1288. letter-spacing: 1px;
  1289. line-height: 1;
  1290. padding-bottom: 5px;
  1291. text-transform: uppercase;
  1292. user-select: none;
  1293. }
  1294. .graphiql-container .doc-deprecation > :first-child {
  1295. margin-top: 0;
  1296. }
  1297. .graphiql-container .doc-deprecation > :last-child {
  1298. margin-bottom: 0;
  1299. }
  1300. .graphiql-container .show-btn {
  1301. -webkit-appearance: initial;
  1302. display: block;
  1303. border-radius: 3px;
  1304. border: solid 1px #ccc;
  1305. text-align: center;
  1306. padding: 8px 12px 10px;
  1307. width: 100%;
  1308. box-sizing: border-box;
  1309. background: #fbfcfc;
  1310. color: #555;
  1311. cursor: pointer;
  1312. }
  1313. .graphiql-container .search-box {
  1314. border-bottom: 1px solid #d3d6db;
  1315. display: flex;
  1316. align-items: center;
  1317. font-size: 14px;
  1318. margin: -15px -15px 12px 0;
  1319. position: relative;
  1320. }
  1321. .graphiql-container .search-box-icon {
  1322. cursor: pointer;
  1323. display: block;
  1324. font-size: 24px;
  1325. transform: rotate(-45deg);
  1326. user-select: none;
  1327. }
  1328. .graphiql-container .search-box .search-box-clear {
  1329. background-color: #d0d0d0;
  1330. border-radius: 12px;
  1331. color: #fff;
  1332. cursor: pointer;
  1333. font-size: 11px;
  1334. padding: 1px 5px 2px;
  1335. position: absolute;
  1336. right: 3px;
  1337. user-select: none;
  1338. border: 0;
  1339. }
  1340. .graphiql-container .search-box .search-box-clear:hover {
  1341. background-color: #b9b9b9;
  1342. }
  1343. .graphiql-container .search-box > input {
  1344. border: none;
  1345. box-sizing: border-box;
  1346. font-size: 14px;
  1347. outline: none;
  1348. padding: 6px 24px 8px 20px;
  1349. width: 100%;
  1350. }
  1351. .graphiql-container .error-container {
  1352. font-weight: bold;
  1353. left: 0;
  1354. letter-spacing: 1px;
  1355. opacity: 0.5;
  1356. position: absolute;
  1357. right: 0;
  1358. text-align: center;
  1359. text-transform: uppercase;
  1360. top: 50%;
  1361. transform: translate(0, -50%);
  1362. }
  1363. .graphiql-container .history-contents {
  1364. font-family: 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace;
  1365. }
  1366. .graphiql-container .history-contents {
  1367. margin: 0;
  1368. padding: 0;
  1369. }
  1370. .graphiql-container .history-contents li {
  1371. align-items: center;
  1372. display: flex;
  1373. font-size: 12px;
  1374. overflow: hidden;
  1375. text-overflow: ellipsis;
  1376. white-space: nowrap;
  1377. margin: 0;
  1378. padding: 8px;
  1379. border-bottom: 1px solid #e0e0e0;
  1380. }
  1381. .graphiql-container .history-contents li button:not(.history-label) {
  1382. display: none;
  1383. margin-left: 10px;
  1384. }
  1385. .graphiql-container .history-contents li:hover button:not(.history-label),
  1386. .graphiql-container .history-contents li:focus-within button:not(.history-label) {
  1387. display: inline-block;
  1388. }
  1389. .graphiql-container .history-contents input,
  1390. .graphiql-container .history-contents button {
  1391. padding: 0;
  1392. background: 0;
  1393. border: 0;
  1394. font-size: inherit;
  1395. font-family: inherit;
  1396. line-height: 14px;
  1397. color: inherit;
  1398. }
  1399. .graphiql-container .history-contents input {
  1400. flex-grow: 1;
  1401. }
  1402. .graphiql-container .history-contents input::placeholder {
  1403. color: inherit;
  1404. }
  1405. .graphiql-container .history-contents button {
  1406. cursor: pointer;
  1407. text-align: left;
  1408. }
  1409. .graphiql-container .history-contents .history-label {
  1410. flex-grow: 1;
  1411. overflow: hidden;
  1412. text-overflow: ellipsis;
  1413. }