PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.75
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.75
5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 5.5.43 All 159 releases
wp-data-access / assets / css / jquery.json-viewer.css

jquery.json-viewer.css in WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards 5.5.75, at assets/css/jquery.json-viewer.css

58 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Root element */
2 .json-document {
3 padding: 1em 2em;
4 }
5
6 /* Syntax highlighting for JSON objects */
7 ul.json-dict, ol.json-array {
8 list-style-type: none;
9 margin: 0 0 0 1px;
10 border-left: 1px dotted #ccc;
11 padding-left: 2em;
12 }
13 .json-string {
14 color: #0B7500;
15 }
16 .json-literal {
17 color: #1A01CC;
18 font-weight: bold;
19 }
20
21 /* Toggle button */
22 a.json-toggle {
23 position: relative;
24 color: inherit;
25 text-decoration: none;
26 }
27 a.json-toggle:focus {
28 outline: none;
29 }
30 a.json-toggle:before {
31 font-size: 1.1em;
32 color: #c0c0c0;
33 content: "\25BC"; /* down arrow */
34 position: absolute;
35 display: inline-block;
36 width: 1em;
37 text-align: center;
38 line-height: 1em;
39 left: -1.2em;
40 }
41 a.json-toggle:hover:before {
42 color: #aaa;
43 }
44 a.json-toggle.collapsed:before {
45 /* Use rotated down arrow, prevents right arrow appearing smaller than down arrow in some browsers */
46 transform: rotate(-90deg);
47 }
48
49 /* Collapsable placeholder links */
50 a.json-placeholder {
51 color: #aaa;
52 padding: 0 1em;
53 text-decoration: none;
54 }
55 a.json-placeholder:hover {
56 text-decoration: underline;
57 }
58