PluginProbe
Code Profiler – WordPress Performance Profiling and Debugging Made Easy / 1.4.3
Code Profiler – WordPress Performance Profiling and Debugging Made Easy v1.4.3
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.4.3, at static/code-profiler.css

250 lines 5.5 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 #tiptip_holder {
106 display: none;
107 position: absolute;
108 top: 0;
109 left: 0;
110 z-index: 99999;
111 }
112 #tiptip_holder.tip_top {
113 padding-bottom: 5px;
114 }
115 #tiptip_holder.tip_bottom {
116 padding-top: 5px;
117 }
118 #tiptip_holder.tip_right {
119 padding-left: 5px;
120 }
121 #tiptip_holder.tip_left {
122 padding-right: 5px;
123 }
124 #tiptip_content {
125 font-size: 14px;
126 color: #000;
127 padding: 4px 8px;
128 background-color:#F5F5B5;
129 border-radius: 4px;
130 -webkit-border-radius: 4px;
131 -moz-border-radius: 4px;
132 border:1px #666 solid;
133 }
134 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
135 margin-top: -5px;
136 margin-right: -6px;
137 border-bottom-color: #333;
138 }
139 #tiptip_arrow, #tiptip_arrow_inner {
140 position: absolute;
141 border-color: transparent;
142 border-bottom-color: transparent;
143 border-style: solid;
144 border-width: 6px;
145 height: 0;
146 width: 0;
147 }
148
149 @media screen and (-webkit-min-device-pixel-ratio:0) {
150 #tiptip_content {
151 padding: 4px 8px 5px 8px;
152 background-color:#F5F5B5;
153 }
154 #tiptip_holder.tip_bottom #tiptip_arrow_inner {
155 border-bottom-color: rgba(45,45,45);
156 }
157 #tiptip_holder.tip_top #tiptip_arrow_inner {
158 border-top-color: rgba(20,20,20);
159 }
160 }
161 /* End TipTip */
162 /* Font size help table */
163
164 .widefat td, .widefat td p {
165 font-size: 15px;
166 }
167
168 /* Notices */
169 .cp-notice{
170 border: 1px solid #ccd0d4;
171 margin: 5px 0 15px;
172 background: #fff;
173 border-left: 4px solid #fff;
174 box-shadow: 0 1px 1px 0 rgba(0,0,0,.04);
175 padding: 1px 12px;
176 }
177 .cp-notice-orange{
178 border-left-color: #ffb900;
179 }
180 .cp-notice-red{
181 border-left-color: #dc3232;
182 }
183 .cp-notice-green{
184 border-left-color: #46b450;
185 }
186 .cp-notice-blue{
187 border-left-color: #00a0d2;
188 }
189 .cp-notice p {
190 margin: .5em 0;
191 padding: 2px;
192 }
193 /* File view */
194 .cpview_body{
195 background:#F7F7F7;
196 font-family:Arial;
197 font-size:15px;
198 font-weight:400;
199 color:#312A2A
200 }
201 .cpview_table{
202 height:100%;
203 width:100%;
204 border:1px solid #BFBFBF
205 }
206 .cpview{
207 width:100%;
208 border-collapse:collapse;
209 border-spacing:0;
210 empty-cells:show
211 }
212 .cpview thead th{
213 text-align:left;
214 border-bottom:1px solid #BFBFBF;
215 background:#ECECEC;
216 color:#7F7F7F;
217 padding:4px;
218 border-bottom:1px solid #BFBFBF
219 }
220 .cpview_h3 {
221 color:#7F7F7F;
222 text-align:center;
223 }
224 .CodeMirror-activeline-background {
225 background:#f7e4e1;
226 }
227 .CodeMirror {
228 border:1px solid #BFBFBF
229 }
230 .CodeMirror-lines {
231 cursor: default;
232 }
233
234 /* Pro page */
235 .cppro {
236 border: 1px solid #ccc;
237 -moz-box-shadow:3px 5px 5px #999;
238 -webkit-box-shadow:3px 5px 5px #999;
239 box-shadow:3px 5px 5px #999;
240 }
241 .about-wrap .is-wide, .about-wrap.full-width-layout {
242 max-width: none;
243 }
244 #TB_window img#TB_Image {
245 border: 1px solid #ccc;
246 }
247 #TB_window, #TB_title {
248 background-color:#f0f0f1 !important;
249 }
250