Owen Leonard
6381d1853d
The staff client CSS is not language-specific, so it can be moved out of the en/ directory and thus not be duplicated for every translation. In order to be able to have a generic path to the YUI CSS files, the YUI directory is moved by this patch to the staff client's lib/ directory. To test, apply the patch and visit various pages in the staff client. Look in particular at pages which include more than the standard CSS. For example: - The staff client login page. - The staff client home page. - Patron -> Set permissions. - The advanced cataloging editor. - Acquisitions -> Vendor -> Basket groups. - Tools -> News -> Edit news. - Administration -> System preferences. Revised: I intended for this to be built on top of Bug 15883. Now it is. Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> On top of 15883 Works as described, all pages on test plan No Errors Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
105 lines
No EOL
1.5 KiB
CSS
105 lines
No EOL
1.5 KiB
CSS
.hierarchies {
|
|
background-color:#fff;
|
|
color:#000000;
|
|
padding:5px;
|
|
margin-left:50px;
|
|
-moz-border-radius:6px;
|
|
display:block;
|
|
font-size:10px;
|
|
}
|
|
.hierarchy {
|
|
padding:5px;
|
|
width:90%;
|
|
-moz-border-radius:6px;
|
|
display:block;
|
|
}
|
|
.child {
|
|
display:none;
|
|
margin-left : 50px;
|
|
width:150%;
|
|
}
|
|
.child a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.parent {
|
|
display:none;
|
|
margin-left : -50px;
|
|
}
|
|
.parent a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child0{
|
|
width : 20%;
|
|
text-align : left;
|
|
}
|
|
.child0 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child1{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 50px;
|
|
}
|
|
.child1 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child2{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 100px;
|
|
}
|
|
.child2 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child3{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 150px;
|
|
}
|
|
.child3 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child4{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 200px;
|
|
}
|
|
.child4 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child5{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 250px;
|
|
}
|
|
.child5 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child6{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 300px;
|
|
}
|
|
.child6 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child7{
|
|
width : 20%;
|
|
text-align : left;
|
|
margin-left : 350px;
|
|
}
|
|
.child7 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.child8{
|
|
width : 10%;
|
|
text-align : left;
|
|
margin-left : 400px;
|
|
}
|
|
.child8 a:hover{
|
|
background-color:#BFCFFF;
|
|
}
|
|
.parents{
|
|
display:inline;
|
|
cursor:crosshair;
|
|
} |