Koha/koha-tmpl/intranet-tmpl/prog/en/css/blue.css
Owen Leonard 538ab5631e Bug 2774 - Path to theme is hard-coded in many places
This patch corrects more places in Koha where the path to the "prog"
theme is hard-coded in templates, CSS, and scripts.

Staff client home page:

Paths to the Koha logo background image and the module image sprite have
been corrected. Inactive and hover states of the module links
(circulation, patrons, etc) should look correct.

addbiblio.pl:

An <img> tag is replaced with a text link and an
additional CSS class. CSS uses an image-replacement technique to display
the image as before.

To test, open a blank or existing bibliographic record for editing.
Confirm that the "tag editor" icon displays correctly in two cases: 1)
tags linked to plugin editors and 2) tags linked to authorities. Both
should look correct and work correctly.

System preferences:

The system preferences editor appends a "loading" image to system
preference submit buttons when they are clicked. This patch changes
ajax.js to insert a <span> styled with a background-image instead.

To test, open system preferences and modify any preference. Submit the
change and confirm that the "loading" image appears correctly.

Background jobs:

Any place in Koha where a background job is used displays a progress
bar. This patch corrects the path in CSS to the progress bar image. To
test, perform an action which triggers the display of a progress bar.
For instance, batch modification of items. Confirm that the progress bar
image displays correctly.

blue.css:

I don't know if this is still used by anyone, but a couple of image
paths in this CSS file have been corrected.

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Passes all tests, QA script and test plan.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
2013-07-18 16:49:18 +00:00

110 lines
1.7 KiB
CSS

body {
text-align : left;
background-color:#EDF5FA;
color:#494949;
}
a, a:link, a:visited, a:active {
text-decoration:none;
color:#027ac6;
}
a:hover {
text-decoration:underline;
color:#0072b9;
}
h1 {
margin-top:0.5em;
margin-bottom:0.5em;
font-size : 182%;
font-weight : bold;
}
h2 {
margin-top:0.3em;
margin-bottom:0.3em;
font-size : 150%;
font-weight : bold;
}
h3 {
font-size : 125%;
font-weight : bold;
}
h4 {
font-size : 110%;
font-weight : bold;
}
h5 {
font-size : 100%;
font-weight : bold;
background: url( ../../img/css_header.png );
background-repeat:repeat-x;
color:white;}
h6 {
font-size : 93%;
font-weight : bold;
}
#navigation {
border-right : 1px solid #BCBCBC;
}
th {
color:white;
background: url( ../../img/css_header.png );
background-repeat:repeat-x;
border-bottom : 1px solid #BCBCBC;
border-left : 1px solid #BCBCBC;
padding : .5em;
}
.yui-u {
border: 1px solid #bbbbbb;
}
input[type=submit], input[type=button], input[type=reset] {
background: url( ../../img/css_header.png );
color:white;
border:1px inset;
margin-top:10px;
}
input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover {
border:1px outset;
}
.labelsubfield {
}
div.tag_title {
text-align: left;
clear:left;
font-weight: bold;
}
div.subfield_line {
padding-right : .4em;
text-align: left;
clear:left;
margin-left:10px;
margin-right:-10px;
}
.subfield-label {
font-weight: bold;
font-style: italic;
}
.dialog input.approve {
color:#027ac6;
}
.dialog input.deny {
color:red;
}
th.header {
color:#0072b9;
}