Merge remote branch 'kc/master' into new/enh/bug_5917
[koha.git] / koha-tt / intranet-tmpl / prog / en / lib / jquery / plugins / ui.tabs.css
1 /* Caution! Ensure accessibility in print and other media types... */
2 @media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
3     .ui-tabs-hide {
4         display: none;
5     }
6 }
7
8 /* Hide useless elements in print layouts... */
9 @media print {
10     .ui-tabs-nav {
11         display: none;
12     }
13 }
14
15 /* Skin */
16 .ui-tabs-nav, .ui-tabs-panel {
17 }
18 .ui-tabs-nav {
19     list-style: none;
20 }
21 .ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
22     display: block;
23     clear: both;
24     content: " ";
25 }
26 .ui-tabs-nav li {
27     float: left;
28          list-style-type : none;
29 }
30 .ui-tabs-nav a, .ui-tabs-nav a span {
31     float: left; /* fixes dir=ltr problem and other quirks IE */
32  }
33 .ui-tabs-nav a {
34     margin: 0; /* position: relative makes opacity fail for disabled tab in IE */
35     white-space: nowrap; /* @ IE 6 */
36     outline: 0; /* @ Firefox, prevent dotted border after click */    
37 }
38 .ui-tabs-nav a:link, .ui-tabs-nav a:visited {
39 }
40 .ui-tabs-nav .ui-tabs-selected a {
41  }
42 .ui-tabs-nav a span {
43     padding-top: 1px;
44     padding-right: 0;
45     height: 20px;
46     line-height: 20px;
47 }
48 .ui-tabs-nav .ui-tabs-selected a span {
49     padding-top: 0;
50     height: 20px;
51     line-height: 20px;
52 }
53 .ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited,
54 .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
55     cursor: text;
56 }
57 .ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
58 .ui-tabs-nav .ui-tabs-unselect a:hover, .ui-tabs-nav .ui-tabs-unselect a:focus, .ui-tabs-nav .ui-tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */
59     cursor: pointer;
60 }
61 .ui-tabs-disabled {
62     opacity: .4;
63     filter: alpha(opacity=40);
64 }
65 .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited {
66     color: #000;
67 }
68 .ui-tabs-panel {
69     border: 1px solid #E8E8E8;
70         padding : 1em;
71     background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
72 }
73
74 /* Additional IE specific bug fixes... */
75 * html .ui-tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
76     display: inline-block;
77 }
78 *:first-child+html .ui-tabs-nav  { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
79     display: inline-block;
80 }