Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
3
Code licensed under the BSD License:
4
http://developer.yahoo.com/yui/license.html
5
version: 2.9.0
6
*/
7
.yui-navset .yui-nav li a, .yui-navset .yui-content {
8
    border:1px solid #000;  /* label and content borders */
9
}
10
 
11
.yui-navset .yui-nav .selected a, .yui-navset .yui-nav a:hover, .yui-navset .yui-content {
12
    background-color:#f6f7ee; /* active tab, tab hover, and content bgcolor */
13
}
14
 
15
.yui-navset .yui-nav li em { padding:.5em; } /* tab padding */
16
 
17
/* defaults to orientation "top" */
18
.yui-navset .yui-nav .selected a {
19
    border-bottom-width:0; /* no bottom border for active tab */
20
    padding-bottom:1px; /* to match height of other tabs */
21
}
22
 
23
.yui-navset .yui-content {
24
    margin-top:-1px; /* for active tab overlap */
25
}
26
 
27
/* overrides for other orientations */
28
 
29
.yui-navset-bottom .yui-nav .selected a {
30
    border-width:0 1px 1px; /* no top border for active tab */
31
    padding:1px 0 0; /* to match height of other tabs */
32
}
33
 
34
.yui-navset-bottom .yui-content {
35
    margin:0 0 -1px; /* for active tab overlap */
36
}
37
 
38
.yui-navset-left .yui-nav li.selected a {
39
    border-width:1px 0 1px 1px; /* no right border for active tab */
40
    padding:0 1px 0 0; /* to match width of other tabs */
41
}
42
 
43
.yui-navset-left .yui-content {
44
    margin:0 0 0 -1px; /* for active tab overlap */
45
}
46
 
47
.yui-navset-right .yui-nav li.selected a {
48
    border-width:1px 1px 1px 0; /* no left border for active tab */
49
    padding:0 0 0 1px; /* to match width of other tabs */
50
}
51
 
52
.yui-navset-right .yui-content {
53
    margin:0 -1px 0 0; /* for active tab overlap */
54
}