PluginProbe
Code Profiler – WordPress Performance Profiling and Debugging Made Easy / 1.5.2
Code Profiler – WordPress Performance Profiling and Debugging Made Easy v1.5.2
1.9.5 1.9.4 1.9.3 trunk 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.6 1.6.1 1.6.10 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 All 40 releases
code-profiler / static / code-profiler.css

code-profiler.css in Code Profiler – WordPress Performance Profiling and Debugging Made Easy 1.5.2, at static/code-profiler.css

268 lines 5.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 +=====================================================================+
3 | ____ _ ____ __ _ _ |
4 | / ___|___ __| | ___ | _ \ _ __ ___ / _(_) | ___ _ __ |
5 | | | / _ \ / _` |/ _ \ | |_) | '__/ _ \| |_| | |/ _ \ '__| |
6 | | |__| (_) | (_| | __/ | __/| | | (_) | _| | | __/ | |
7 | \____\___/ \__,_|\___| |_| |_| \___/|_| |_|_|\___|_| |
8 | |
9 | (c) Jerome Bruandet ~ https://code-profiler.com/ |
10 +=====================================================================+
11 */
12
13 /* Percent bar in the list */
14 .cp-list-pc {
15 position: relative;
16 z-index: 1;
17 background-color: #fff;
18 border-radius: 3px;
19 border: 1px #c3c4c7 solid;
20 padding: 2px;
21 }
22 .cp-list-pc-bar {
23 position: absolute;
24 top: 0;
25 bottom: 0;
26 left: 0;
27 background-color: rgba( 144, 238, 144, .6 );
28 z-index: -1;
29 }
30
31 /* Profiler's progress bar */
32 .cp-progress-bar {
33 background-color: #eee;
34 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
35 height: 26px;
36 width: 100%;
37 border-radius: 5px;
38 border-bottom:solid 1px #fff;
39 }
40 .cp-progress-bar span {
41 display: inline-block;
42 float: left;
43 height: 100%;
44 border-radius: 5px;
45 background-color: #2271b1;
46 box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
47 transition: width .6s ease;
48 }
49
50 /* WP_List_Table */
51 .wp-list-table .column-id { width: 5%; }
52 .wp-list-table .column-profile { width: 25%; }
53 .wp-list-table .column-date { width: 20%; }
54 .wp-list-table .column-items { width: 9%; }
55 .wp-list-table .column-time { width: 11%; }
56 .wp-list-table .column-mem { width: 11%; }
57 .wp-list-table .column-queries { width: 9%; }
58 .wp-list-table .column-io { width: 10%; }
59
60
61 form.scripts .wp-list-table .column-script { width: 60%; }
62 form.scripts .wp-list-table .column-time { width: 20%; text-align:center }
63 form.scripts .wp-list-table .column-name { width: 20%; }
64
65 form.functions .wp-list-table .column-function { width: 30%; }
66 form.functions .wp-list-table .column-time { width: 15%; text-align:center }
67 form.functions .wp-list-table .column-calls { width: 10%; }
68 form.functions .wp-list-table .column-script { width: 30%; }
69 form.functions .wp-list-table .column-name { width: 15%; }
70
71 form.iolist .wp-list-table .column-order { width: 10%; text-align: center; }
72 form.iolist .wp-list-table .column-file { width: 75%; }
73 form.iolist .wp-list-table .column-mode { width: 15%; }
74
75 /* TipTip CSS - Version 1.2 */
76 .code-profiler-tip{
77 color:#999;
78 display:inline-block;
79 font-size:1.3em;
80 font-style:normal;
81 position:relative;
82 vertical-align:middle;
83 height:19px;
84 line-height:19px;
85 width:19px;
86 }
87 .code-profiler-tip::after{
88 font-family:Dashicons;
89 font-weight:400;
90 font-variant:normal;
91 text-transform:none;
92 line-height:1;
93 -webkit-font-smoothing:antialiased;
94 margin:0;
95 text-indent:0;
96 position:absolute;
97 top:0;
98 left:0;
99 width:100%;
100 height:100%;
101 text-align:center;
102 content: "\f223";
103 cursor:help;
104 }
105 .code-profiler-tip-info{
106 color:#aaa;
107 font-size:1em;
108 }
109 .code-profiler-tip-info::after{
110 content: "\f534";
111 }
112 #tiptip_holder {
113 display: none;
114 position: absolute;
115 top: 0;
116 left: 0;
117 z-index: 99999;
118 }
119 #tiptip_holder.tip_top {
120 padding-bottom: 5px;
121 }
122 #tiptip_holder.tip_bottom {
123 padding-top: 5px;
124 }
125 #tiptip_holder.tip_right {
126 padding-left: 5px;
127 }
128 #tiptip_holder.tip_left {
129 padding-right: 5px;
130 }
131 #tiptip_content {
132 font-size: 14px;
133 color: #000;
134 padding: 4px 8px;
135 background-color:#F5F5B5;
136 border-radius: 4px;
137 -webkit-border-radius: 4px;
138 -moz-border-radius: 4px;
139 border:1px #666 solid;
140 }
141 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
142 margin-top: -5px;
143 margin-right: -6px;
144 border-bottom-color: #333;
145 }
146 #tiptip_arrow, #tiptip_arrow_inner {
147 position: absolute;
148 border-color: transparent;
149 border-bottom-color: transparent;
150 border-style: solid;
151 border-width: 6px;
152 height: 0;
153 width: 0;
154 }
155
156 @media screen and (-webkit-min-device-pixel-ratio:0) {
157 #tiptip_content {
158 padding: 4px 8px 5px 8px;
159 background-color:#F5F5B5;
160 }
161 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
162 border-bottom-color: rgba(45,45,45);
163 }
164 #tiptip_holder.tip_top #tiptip_arrow_inner {
165 border-top-color: rgba(20,20,20);
166 }
167 }
168 /* End TipTip */
169 /* Font size help table */
170
171 .widefat td, .widefat td p {
172 font-size: 15px;
173 }
174
175 /* Notices */
176 .cp-notice{
177 border: 1px solid #ccd0d4;
178 margin: 5px 0 15px;
179 background: #fff;
180 border-left: 4px solid #fff;
181 box-shadow: 0 1px 1px 0 rgba(0,0,0,.04);
182 padding: 1px 12px;
183 }
184 .cp-notice-orange{
185 border-left-color: #ffb900;
186 }
187 .cp-notice-red{
188 border-left-color: #dc3232;
189 }
190 .cp-notice-green{
191 border-left-color: #46b450;
192 }
193 .cp-notice-blue{
194 border-left-color: #00a0d2;
195 }
196 .cp-notice p {
197 margin: .5em 0;
198 padding: 2px;
199 }
200 /* File view */
201 .cpview_body{
202 background:#F7F7F7;
203 font-family:Arial;
204 font-size:15px;
205 font-weight:400;
206 color:#312A2A
207 }
208 .cpview_table{
209 height:100%;
210 width:100%;
211 border:1px solid #BFBFBF
212 }
213 .cpview{
214 width:100%;
215 border-collapse:collapse;
216 border-spacing:0;
217 empty-cells:show
218 }
219 .cpview thead th{
220 text-align:left;
221 border-bottom:1px solid #BFBFBF;
222 background:#ECECEC;
223 color:#7F7F7F;
224 padding:4px;
225 border-bottom:1px solid #BFBFBF
226 }
227 .cpview_h3 {
228 color:#7F7F7F;
229 text-align:center;
230 }
231 .CodeMirror-activeline-background {
232 background:#f7e4e1;
233 }
234 .CodeMirror {
235 border:1px solid #BFBFBF
236 }
237 .CodeMirror-lines {
238 cursor: default;
239 }
240
241 /* Pro page */
242 .cppro {
243 border: 1px solid #ccc;
244 -moz-box-shadow:3px 5px 5px #999;
245 -webkit-box-shadow:3px 5px 5px #999;
246 box-shadow:3px 5px 5px #999;
247 }
248 .about-wrap .is-wide, .about-wrap.full-width-layout {
249 max-width: none;
250 }
251 #TB_window img#TB_Image {
252 border: 1px solid #ccc;
253 }
254 #TB_window, #TB_title {
255 background-color:#f0f0f1 !important;
256 }
257
258 /* Screen reader only */
259 .visually-hidden {
260 clip: rect(0 0 0 0);
261 clip-path: inset(50%);
262 height: 1px;
263 overflow: hidden;
264 position: absolute;
265 white-space: nowrap;
266 width: 1px;
267 }
268