New styles for bulk hold and bulk tag inputs on search results page.
authorOwen Leonard <oleonard@myacpl.org>
Sat, 4 Apr 2009 18:53:48 +0000 (13:53 -0500)
committerGalen Charlton <galen.charlton@liblime.com>
Sun, 5 Apr 2009 17:00:39 +0000 (12:00 -0500)
This change gives the buttons a link style like is used on the lists page. My hope is that the similarity will help the user recognize the function, and the differentiation from the "Save" button will improve the clarity over having three similar buttons.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
koha-tmpl/opac-tmpl/prog/en/css/opac.css
koha-tmpl/opac-tmpl/prog/images/tag.gif [new file with mode: 0644]
koha-tmpl/opac-tmpl/prog/images/tags.gif [new file with mode: 0644]

index 6bf54e0..ec96b30 100644 (file)
@@ -456,14 +456,32 @@ a.send {
        text-decoration : none;
        padding-left : 21px;
 }
-a.hold {
+a.hold,#placehold input.submit {
        background-image: url(../../images/placereserve.gif);
        background-position : 9px center;
        background-repeat : no-repeat;
        text-decoration : none;
        padding-left : 34px;
 }
-
+#placehold input.submit,#tagsel_span input.submit {
+       border : 0;
+       background-color: transparent;
+       font-size : 100%;
+       font-weight : bold;
+       padding-left : 31px;
+       text-decoration : underline;
+       color : #336699;
+       cursor : pointer;
+}
+#tagsel_span input.submit {
+       background-image: url(../../images/tags.gif);
+       background-position : 9px center;
+       background-repeat : no-repeat;
+       padding-left : 24px;
+}
+#placehold input.submit:hover,#tagsel_span input.submit:hover {
+       color: #990033;
+}
 #toolbar a.empty {
        background-image: url(../../images/trash.gif);
 }
@@ -792,7 +810,7 @@ a.cancel {
        margin-top : 5px;
 }
 
-.cartlist input.submit {
+.cartlist input.submit, #tagsel_button {
        background-color : #d8deb8;
        background-image : none;
        border-color : #bebf84;
diff --git a/koha-tmpl/opac-tmpl/prog/images/tag.gif b/koha-tmpl/opac-tmpl/prog/images/tag.gif
new file mode 100644 (file)
index 0000000..7d9e9e7
Binary files /dev/null and b/koha-tmpl/opac-tmpl/prog/images/tag.gif differ
diff --git a/koha-tmpl/opac-tmpl/prog/images/tags.gif b/koha-tmpl/opac-tmpl/prog/images/tags.gif
new file mode 100644 (file)
index 0000000..e243c9e
Binary files /dev/null and b/koha-tmpl/opac-tmpl/prog/images/tags.gif differ