Initial commit

This commit is contained in:
Felix Förtsch
2020-10-20 14:39:50 +02:00
commit 648ded8896
1225 changed files with 216511 additions and 0 deletions

View File

@@ -0,0 +1,131 @@
/* CSS for plugin: Debug Bar Constants */
#debug-menu-target-Debug_Bar_PHP_Constants h2 a,
#debug-menu-target-Debug_Bar_WP_Class_Constants h2 a {
text-decoration: none !important;
color: inherit !important;
}
#debug-menu-target-Debug_Bar_PHP_Constants h2:hover,
#debug-menu-target-Debug_Bar_WP_Class_Constants h2:hover {
text-shadow: 0 1px 1px rgba( 0, 0, 0, 0.9 );
background: #333;
-webkit-box-shadow: inset -3px 0 6px rgba( 0, 0, 0, 0.4 );
-moz-box-shadow: inset -3px 0 6px rgba( 0, 0, 0, 0.4 );
box-shadow: inset -3px 0 6px rgba( 0, 0, 0, 0.4 );
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
border: 1px solid #333;
}
#debug-menu-target-Debug_Bar_PHP_Constants h2:hover a,
#debug-menu-target-Debug_Bar_WP_Class_Constants h2:hover a {
color: #FFFFFF !important;
text-shadow: 0 1px 1px rgba( 0, 0, 0, 0.9 );
}
#debug-menu-target-Debug_Bar_PHP_Constants h3,
#debug-menu-target-Debug_Bar_WP_Class_Constants h3 {
font-family: georgia, times, serif;
font-size: 22px;
margin-top: 1.2em;
clear: both;
}
p.dbcwpc-info {
margin: 1em 0;
padding: 0.7em;
background-color: #D8D8D8;
-webkit-box-shadow: inset -3px 0 6px rgba( 0, 0, 0, 0.4 );
-moz-box-shadow: inset -3px 0 6px rgba( 0, 0, 0, 0.4 );
box-shadow: inset -3px 0 6px rgba( 0, 0, 0, 0.4 );
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border: 1px solid #333333;
clear: both;
}
table.debug-bar-constants,
table.debug-bar-constants th,
table.debug-bar-constants td {
border: 0px none;
}
table.debug-bar-constants {
width: 100%;
border-collapse: collapse;
cell-padding: 1em;
clear: both;
line-height: 1.5;
font-size: 12px;
table-layout: auto;
}
table.debug-bar-constants thead th,
table.debug-bar-constants tfoot th {
padding: 0.7em 5px;
width: auto;
text-align: center;
}
table.debug-bar-constants thead th {
border-bottom: 1px solid #ccc;
}
table.debug-bar-constants tfoot th {
border-top: 1px solid #ccc;
}
table.debug-bar-constants th {
width: 35%;
font-weight: bold;
padding: 2px 2em 2px 5px;
vertical-align: top;
text-align: left;
}
table.debug-bar-constants td {
padding: 2px 5px;
width: 63%;
vertical-align: top;
}
table.debug-bar-constants tr:nth-child(2n+1) {
background-color: #E8E8E8;
}
/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/
#toTop {
display: none;
text-decoration: none;
position: fixed;
bottom: 10px;
right: 10px;
overflow: hidden;
width: 51px;
height: 51px;
border: none;
text-indent: 100%;
background: url(../images/ui.totop.png) no-repeat left top;
z-index: 99001;
}
#toTopHover {
background: url(../images/ui.totop.png) no-repeat left -51px;
width: 51px;
height: 51px;
display: block;
overflow: hidden;
float: left;
opacity: 0;
-moz-opacity: 0;
filter: alpha(opacity = 0);
z-index: 99001;
}
#toTop:active, #toTop:focus {
outline: none;
}