Bug 5917 / Bug 6085 : Fixing not being able to change language
[koha.git] / koha-tt / intranet-tmpl / prog / en / css / pages / addbiblio.css
1 /* addbiblio.css */
2
3 /* MARC editor */
4
5 /* styles for the 11 buttons that the user can click on */
6 /* the design of the active tab button (only 1 at a given time)*/
7 .tab_active {
8     color: #6699CC;
9     background-color : #CCCCCC;
10     font-size : 1em;
11     border: 2px inset;
12     font-weight : bold;
13     text-decoration:none;
14     display: inline;
15     text-decoration:none;
16     margin-left:10px;
17 }
18
19 #onlinehelp {
20     float:right;
21 }
22
23 /* the design of the INactives tab buttons (all other tabs) */
24 .tab_inactive {
25     background-color : #6699CC;
26     color : #FFFFFF;
27     font-size : 1em;
28     font-weight : bold;
29     display:inline;
30     border: 2px outset;
31     text-decoration:none;
32     margin-left:10px;
33 }
34
35 /* the button of INactive tabs : we need this one to have white color on links, otherwise, default a look will be choosen */
36 #tabs a {
37     color:white;
38     text-decoration:none;
39     padding-right:10px;
40     padding-left:10px;
41 }
42
43 /* specify that we to do when the mouse is on 1 button */
44 #tabs a:hover {
45     border: 2px inset;
46 }
47
48 #tabs {
49     margin-top:45px;
50     margin-bottom:5px;
51 }
52
53 /* styles for the 11 content blocks */
54 /* the property for hidden tabs */
55 .content_hidden {
56     height:0px; /* you propably don't need to change this one */
57     visibility:hidden; /* you propably don't need to change this one */
58     display:none;
59 }
60
61 /* the property for the displayed tab */
62 .content_visible {
63     height:0px; /* you propably don't need to change this one */
64     visibility:visible; /* you propably don't need to change this one */
65     display:block;
66 }
67
68 /* the style of tag description */
69 p.tag {
70     font-weight:bold;
71 }
72 /* the style of subfield paragraph */
73 p.subfield {
74     
75 }