PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.2.7
Pods – Custom Content Types and Fields v3.2.7
trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / components / Templates / assets / css / styles-view_template.css
pods / components / Templates / assets / css Last commit date
panel.css 8 years ago styles-pod_reference.css 2 years ago styles-view_template.css 8 years ago
styles-view_template.css
128 lines
1 .CodeMirror-completions {
2 position: absolute;
3 z-index: 10;
4 overflow: hidden;
5 -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, .2);
6 -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, .2);
7 box-shadow: 2px 3px 5px rgba(0, 0, 0, .2);
8 }
9
10 .CodeMirror-completions select {
11 background: #FAFAFA;
12 outline: none;
13 border: none;
14 padding: 0;
15 margin: 0;
16 font-family: monospace;
17 }
18
19 .CodeMirror-dialog {
20 position: absolute;
21 left: 0;
22 right: 0;
23 background: white;
24 z-index: 15;
25 padding: .1em .8em;
26 overflow: hidden;
27 color: #333;
28 }
29
30 .CodeMirror-dialog-top {
31 border-bottom: 1px solid #EEE;
32 top: 0;
33 }
34
35 .CodeMirror-dialog-bottom {
36 border-top: 1px solid #EEE;
37 bottom: 0;
38 }
39
40 .CodeMirror-dialog input {
41 border: none;
42 outline: none;
43 background: transparent;
44 width: 20em;
45 color: inherit;
46 font-family: monospace;
47 }
48
49 .CodeMirror-dialog button {
50 font-size: 70%;
51 }
52
53 .CodeMirror-hints {
54 position: absolute;
55 z-index: 10;
56 overflow: hidden;
57 list-style: none;
58
59 margin: 0;
60 padding: 2px;
61
62 -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
63 -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
64 box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
65 border-radius: 2px;
66 border: 1px solid #E1E1E1;
67
68 background: white;
69 font-size: 100%;
70 font-family: monospace;
71
72 max-height: 20em;
73 overflow-y: auto;
74 z-index: 9999999;
75 }
76
77 .CodeMirror-hint {
78 margin: 0;
79 padding: 0 4px;
80 border-radius: 1px;
81 max-width: 19em;
82 overflow: hidden;
83 white-space: pre;
84 color: black;
85 cursor: pointer;
86 }
87
88 .CodeMirror-hint-active {
89 background: #39A94C;
90 color: white;
91 }
92
93 /* editor panels | custome highlight */
94 .cm-mustache {
95 color: #2AB02A;
96 }
97
98 .cm-mustacheinternal {
99 color: #FF7040;
100 }
101
102 .cm-include {
103 color: #F0A;
104 }
105
106 .cm-phptag {
107 color: #20AF20;
108 font-weight: bold;
109 }
110
111 .cm-command {
112 color: #20AFE0;
113 font-weight: bold;
114 }
115
116 .ui-resizable-e, ui-resizable-se {
117 display: none;
118 }
119
120 .ui-resizable-s {
121 background: none repeat scroll 0 0 #E0E0E0;
122 bottom: 8px;
123 cursor: s-resize;
124 height: 5px;
125 margin: 0 -12px -12px;
126 position: absolute;
127 width: 100%;
128 }