aboutsummaryrefslogtreecommitdiffstats
path: root/demos/real-world/splitpane/css/demo.css
blob: d30c33149a48f6633244dd6645ddc3b0d41881ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* --------------------------------------------------------------

   jQuery UI: Demo Viewer

-------------------------------------------------------------- */


/*************************************/
/* Blueprint: reset.css              */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

label {
	margin-right: 5px;
}

/* Remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
	font-family: Arial,Sans-serif; font-size: 0.9em;
	background-color: white;
	overflow: hidden;
}
ol, ul {
	list-style: none;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/*************************************/
/* Viewer: Layout                    */

#wrapper {
	background: #e1e7f2 url(../images/bg_gradient.gif) repeat-x;
	}
	#header {
		padding: 10px;
		background: #67A7E3; color: #fff;
		position: relative;
	}
	#container {
		height: 500px;
		}
		#container td {
			overflow: hidden;
			}
			#container td div {
				overflow: hidden;
				padding: 0 15px 0 10px;
				background: #fff;
				height:475px;
				font-size: 90%;
			}
		#container .ui-split-side-box {
			width: 200px;
			}
			#container .ui-split-side {
				overflow: hidden;
				}
				#container .ui-split-side ul {
					margin: 0; padding: 0; padding-top: 3px;
					}					
					#container .ui-split-side li {
						margin: 0; padding: 0;	border: 0; outline: 0;
						list-style: none;
					}
					#container .ui-split-side li a {
						height: 15px;
			            display:block;
			            padding: 3px 3px 3px 12px;
						border-bottom: 1px solid #E8EEF7;
			        	color: #000;
			        	font-size: 90%;
			        	text-decoration: none;
					}
					#container .ui-split-side li a:hover {
						background: #E8EEF7;
            			border-color: #C3D9FF;
					}
		#container .ui-split-main-box {
			
			}

		#container .ui-resizable-e {
			width: 10px; height: 475px;
			background:#e1e7f2 url(../images/splitpane_handle-ew.gif) no-repeat scroll 75% 50% !important;
			cursor:col-resize !important;
			border-left: #bbb 1px solid;
			padding: 3px;
		}
		#container .ui-resizable-n {
			height: 10px;
			background:#e1e7f2 url(../images/splitpane_handle-sn.gif) no-repeat scroll 50% 55% !important;
			border-top: #bbb 1px solid;
			padding: 3px;
		}
	
	

	.ui-toolbar-item-hide-icon { 
		padding-left: 16px; height: 16px;
		background-image: url(../images/icons_2.png);
		background-repeat: no-repeat; margin: 0 2px;
		display: inline-block;
	}

	.ui-toolbar-item-hide-icon { background-position: -64px 50%; } 
	
	.proxy { border: 1px dashed #000; };