Login   Register  
PHP Classes
elePHPant
Icontem

File: src/assets/dump_r.css

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Leon Sorokin  >  dump_r  >  src/assets/dump_r.css  >  Download  
File: src/assets/dump_r.css
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: dump_r
Display values of variables
Author: By
Last change:
Date: 2013-01-22 10:31
Size: 3,180 bytes
 

Contents

Class file image Download
.dump_r {
	clear: both;
	display: inline-block;
}

.dump_r .file-line {
	font-weight: bold;
	background: #c6c6c6;
	padding: 0 3px;
	margin: 2px 0;
}

.dump_r ul {
	list-style: none;
	padding: 0 0 0 15px;
	margin: 0;
}

.dump_r ul ul {
	margin-top: 2px;
}

.dump_r li {
	position: relative;
	margin-bottom: 2px;
}

.dump_r .excol {
	position: absolute;
	margin: 1px 0 0 -15px;
	cursor: pointer;
}

.dump_r table {
	border-collapse:separate;
	border-spacing: 0 2px;
	margin: -2px 0;
}

.dump_r table tr {
	background: #F1F1F1;
}

.dump_r table tr:nth-child(odd) {
	background: #E9E9E9;
}

.dump_r table tr > * {
	padding: 1px 5px;
	white-space: nowrap;
	border-right: 1px dotted #AAAAAA;
}

.dump_r table tr > *:last-child {
	width: 100%;
	border-right: none;
}

.dump_r table tr > * * {
	margin: 0 !important;
	padding: 0 !important;
}

.dump_r table tr > *.lbl .val,
.dump_r table tr > *.lbl .len,
.dump_r table tr > *.lbl .typ i {
	margin-right: 5px !important;
}

.dump_r .excol						{-webkit-user-select: none; -moz-user-select: none; -o-user-select: none;}
.dump_r .expanded	> .excol:after	{content: "\25BC";}
.dump_r .collapsed	> .excol:after	{content: "\25B6";}
.dump_r .limited	> .excol:after	{color: #BCBCBC;}
.dump_r .collapsed > ul				{display: none;}

.dump_r .lbl						{position: relative; padding: 0 3px;}
.dump_r .lbl > *					{display: inline-block;}


.dump_r li > .lbl					{background-color: #F1F1F1;}
.dump_r li:nth-child(odd) > .lbl	{background-color: #E9E9E9;}

.dump_r .key						{font-weight: bold; text-align: left;}
.dump_r .val						{margin: 0 5px 0 30px; min-width: 5px; vertical-align: top;}
.dump_r .typ,
.dump_r .len						{color: #666666;}
.dump_r .lbl > div:last-child,
.dump_r .lbl > div:last-child > i:last-child	{margin-right: 0 !important;}

.dump_r .len,
.dump_r .typ i						{font-style: normal; margin-right: 5px;}
.dump_r .typ i:first-child			{display: none;}

.dump_r .protected .key				{color: #5800B8;}
.dump_r .private .key				{color: #A32B2B;}

.dump_r .empty			> .lbl .val {}
.dump_r .array			> .lbl .val {background-color: #C0BCFF;}
.dump_r .object			> .lbl .val {background-color: #98FB98;}
.dump_r .function		> .lbl .val {background-color: #FAFF5C;}
.dump_r .boolean		> .lbl .val {background-color: #08F200;}
.dump_r .boolean.empty	> .lbl .val {background-color: #FF8C8C;}
.dump_r .null			> .lbl .val {background-color: #FFD782;}
.dump_r .integer		> .lbl .val {background-color: #EAB2EA;}
.dump_r .float			> .lbl .val {background-color: #EB65EB;}
.dump_r .string			> .lbl .val {background-color: #FFBFBF;}
.dump_r .resource		> .lbl .val {background-color: #E2FF8C;}
.dump_r .numeric		> .lbl .val {}
.dump_r .reference		> .lbl .val {background-color: #CEFBF3;}
.dump_r .datetime		> .lbl .val {}

.dump_r .stdClass .std,
.dump_r .reference .ref {
	display: none;
}

/* hide length of empty stuff except numeric eg '0' strings */
.dump_r .empty:not(.numeric) > .lbl .len {
	display: none;
}

/* display empty strings as a gray middle dot */
.dump_r .empty.string:not(.numeric) > .lbl .val:after {
	content: "\0387";
	color: #BBBBBB;
}

/* hide empty strings completely
.dump_r .empty.string:not(.numeric) > .lbl .val {
	display: none;
}
*/