1.json-archive-button {
2  padding: 7px;
3  margin: 0px 10px;
4}
5
6.json-tabs {
7  margin-bottom: 1em;
8  position: static;
9}
10
11div.json-tabs.json-hidden
12{
13  display: none;
14}
15
16div.json-tabs.json-hide-tabs ul.ui-tabs-nav
17{
18  display: none;
19}
20div.json-tabs.json-hide-tabs .ui-tabs-panel
21{
22  padding: 0;
23}
24
25.json-tabs .json-textarea {
26  width: 100%;
27  height: 302px;
28  font-family: monospace;
29  font-size: 14px;
30  resize: vertical;
31}
32
33.json-tabs .json-save-button {
34  padding: 7px 10px;
35  margin: 0px 10px;
36  font-weight: bold;
37  display: none;
38}
39
40.json-tabs .json-error {
41  background-color: #ffaaaa;
42}
43
44.json-tabs .json-log {
45  overflow-x: auto;
46  white-space: nowrap;
47}
48
49.json-tabs pre {
50  margin: 0px;
51  padding: 0px;
52}
53
54.json-extract-ejs span
55{
56  display: none;
57}
58
59/* https://highlightjs.org/ */
60/* a11y-light theme */
61/* Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css */
62/* @author: ericwbailey */
63
64/* Comment */
65.hljs-comment,
66.hljs-quote {
67  color: #696969;
68}
69
70/* Red */
71.hljs-variable,
72.hljs-template-variable,
73.hljs-tag,
74.hljs-name,
75.hljs-selector-id,
76.hljs-selector-class,
77.hljs-regexp,
78.hljs-deletion {
79  color: #d91e18;
80}
81
82/* Orange */
83.hljs-number,
84.hljs-built_in,
85.hljs-builtin-name,
86.hljs-literal,
87.hljs-type,
88.hljs-params,
89.hljs-meta,
90.hljs-link {
91  color: #aa5d00;
92}
93
94/* Yellow */
95.hljs-attribute {
96  color: #aa5d00;
97}
98
99/* Green */
100.hljs-string,
101.hljs-symbol,
102.hljs-bullet,
103.hljs-addition {
104  color: #008000;
105}
106
107/* Blue */
108.hljs-title,
109.hljs-section {
110  color: #007faa;
111}
112
113/* Purple */
114.hljs-keyword,
115.hljs-selector-tag {
116  color: #7928a1;
117}
118
119.hljs {
120  display: block;
121  overflow-x: auto;
122  background: #fefefe;
123  color: #545454;
124  padding: 0.5em;
125}
126
127.hljs-emphasis {
128  font-style: italic;
129}
130
131.hljs-strong {
132  font-weight: bold;
133}
134
135@media screen and (-ms-high-contrast: active) {
136  .hljs-addition,
137  .hljs-attribute,
138  .hljs-built_in,
139  .hljs-builtin-name,
140  .hljs-bullet,
141  .hljs-comment,
142  .hljs-link,
143  .hljs-literal,
144  .hljs-meta,
145  .hljs-number,
146  .hljs-params,
147  .hljs-string,
148  .hljs-symbol,
149  .hljs-type,
150  .hljs-quote {
151        color: highlight;
152    }
153
154    .hljs-keyword,
155    .hljs-selector-tag {
156        font-weight: bold;
157    }
158}
159