Koha/koha-tmpl/intranet-tmpl/prog/en/css/preferences.css
Owen Leonard 18f9fe744d Bug 7645 - System preferences editor save button obscured by language chooser
This patch amends the preferences page's CSS file to add
bottom padding to the page container. This gives the bottom-
most submit button some breathing room.

Markup correction: Adding "row" and "col" attributes to
<textareas> to quiet validation errors. This doesn't
affect output at all (dimensions are specified in CSS).

To test, open the system preferences page to a tab like OPAC
which contains many preferences. At the bottom of the page
the last submit button should have about a line's worth of
white space below it.

Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
2012-03-13 14:37:24 +01:00

72 lines
No EOL
1,017 B
CSS

.preference-url, .preference-multi, .preference-long, .preference-file {
width: 20em;
}
.preference-short, .preference-email {
width: 10em;
}
.preference-integer, .preference-percent, .preference-date, .preference-currency {
width: 5em;
}
textarea.preference {
width: 35em;
height: 20em;
display: block;
}
textarea.preference-code, .preference-file {
font-family: monospace;
}
a.expand-textarea {
display: block;
}
dl {
margin-left : 1em;
}
dt {
padding : .1em;
}
h1 {
font-size : 149%;
}
h2 {
font-size : 134%;
}
table {
width : 100%;
}
caption {
color : #003399;
}
h3 {
color : #003366;
margin : .4em 0;
width : 25%;
}
h3.expanded {
background : transparent url("../../img/collapse.gif") 0 6px no-repeat;
cursor : pointer;
padding-left : 12px;
}
h3.collapsed {
background : transparent url("../../img/expand.gif") 0 6px no-repeat;
cursor : pointer;
padding-left : 12px;
}
.humanMsg strong {
display: block;
font-weight: normal;
}
#yui-main {
margin-bottom:2em;
}