src/cm/media/js/lib/yui/yui3.0.0/examples/node-focusmanager/assets/tabview.css
changeset 0 40c8f766c9b8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui3.0.0/examples/node-focusmanager/assets/tabview.css	Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,124 @@
+.yui-tabview {
+	margin: 10px;
+}
+
+.yui-tabview div {
+	border: solid 1px #000;
+}
+
+.yui-tabview div div {
+	border: solid 1px #999;
+}
+
+.yui-tabview ul {
+	list-style-type: none;
+	margin: 0;
+	padding: 0;
+	zoom: 1;	/* Clear the floated <LI> elements in IE */
+}
+
+.yui-tabview ul:after {  /* Clear the floated <LI> elements in Webkit, Opera and Gecko */
+    content: ".";
+    display: block;
+    clear: both;
+    visibility: hidden;
+    height: 0;
+    line-height: 0;
+}
+
+.yui-tabview .yui-tab {
+	list-style-type: none;
+	margin: 0;
+	padding: 0;
+	float: left;
+	border: solid 1px #000;
+	margin: 0 -1px -1px 0;
+	background-color: #ccc;
+	*position: relative;	/* Necessary to get negative margins in IE */
+	*bottom: -1px;
+}
+
+.yui-tabview .yui-tab a {
+	display: block;
+	text-decoration: none;
+	color: #000;
+	border: solid 1px #ccc;
+	cursor: hand;	/* Needed for IE 8, which by default renders the text selection cursor. */
+}
+
+.yui-tabview .yui-tab a em {
+	font-style: normal;
+	display: block;
+	padding: 2px 10px;			
+}
+
+.yui-tabview .yui-tab-focus a {
+	border-color: #B3D4FF;
+}
+
+.yui-tabview .yui-tab-focus a:focus {  
+	outline: 0;	/* Suppress default browser focus */
+}
+
+.yui-tabview .yui-tab-selected a {	
+	background-color: #999;
+	border-color: #999;
+	border-bottom-width: 2px;
+	margin-bottom: -1px;
+	*position: relative;	/* Necessary to get negative margins in IE */
+}
+
+.yui-tabview .yui-tab-selected a em {			
+	background-color: #fff;
+	border-bottom: 3px solid #fff;
+	margin-bottom: -3px;
+	*position: relative;	/* Necessary to get negative margins in IE */
+}
+
+.yui-tabview .yui-tab-focus a em {
+	background-color: #B3D4FF;
+	border-color: #B3D4FF;
+	_display: inline-block;	/* Necessary fix the disappearing background color bug in IE 6 */
+}
+
+.yui-tabview .yui-tabpanel {
+	background-color: #fff;
+	display: none;
+}
+
+.yui-tabview .yui-tabpanel-selected {
+	display: block;
+	padding: 10px;
+}
+
+.yui-tabview div div div.paging {
+	text-align: right;
+	height: 12px;
+	border: 0;
+}
+
+
+/*	Replace the text of each <BUTTON> with an icon by hiding the 
+	
+	Hide the text of each <BUTTON> offscreen so that it is still 
+	accessible to users of screen readers */
+
+.yui-tabview .paging button {
+	display: inline-block;
+	height: 12px;
+	width: 12px;
+	overflow: hidden;
+	padding: 0;
+	margin: 0;
+	border: 0;
+	text-indent: -999em;
+	background: url(arrows.png) 0 0 no-repeat;
+}
+
+.yui-tabview .paging button.yui-tabview-prevbtn {
+	background-position: 0 0;	
+}
+
+.yui-tabview .paging button.yui-tabview-nextbtn {
+	background-position: 0 -12px;			
+}
\ No newline at end of file