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>
39 lines
859 B
CSS
39 lines
859 B
CSS
#progress_bar {
|
|
margin: 10px 0;
|
|
padding: 3px;
|
|
border: 1px solid #000;
|
|
font-size: 14px;
|
|
clear: both;
|
|
opacity: 0;
|
|
-moz-transition: opacity 1s linear;
|
|
-o-transition: opacity 1s linear;
|
|
-webkit-transition: opacity 1s linear;
|
|
}
|
|
#progress_bar.loading {
|
|
opacity: 1.0;
|
|
}
|
|
#progress_bar .percent {
|
|
color: #E6F0F2;
|
|
background-color: #004D99;
|
|
height: auto;
|
|
width: 0;
|
|
}
|
|
#server_response {
|
|
background-color: white;
|
|
background-image: url("../img/x_alt_16x16.png");
|
|
background-repeat: no-repeat;
|
|
background-origin: padding-box;
|
|
background-position: right top;
|
|
border: 1px solid #DDDDDD;
|
|
color: #999999;
|
|
font-size: 14px;
|
|
height: 30px;
|
|
left: 50%;
|
|
margin-left: -125px;
|
|
margin-top: -15px;
|
|
padding: 14px 0 2px;
|
|
position: fixed;
|
|
text-align: center;
|
|
top: 50%;
|
|
width: 250px;
|
|
}
|