In response to paul's comment: "one user that just tested is confused by the green...
authorOwen Leonard <oleonard@myacpl.org>
Sat, 22 Dec 2007 00:11:16 +0000 (18:11 -0600)
committerJoshua Ferraro <jmf@liblime.com>
Sat, 22 Dec 2007 01:48:14 +0000 (19:48 -0600)
I've taken out the check and the X and replaced them with "edit" and "save" icons from the toolbars. Less confusing?

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css
koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl

index bd12796..f023494 100644 (file)
@@ -1054,12 +1054,24 @@ div.first fieldset {
  
 .dialog input.approve {
        background : #FFF url(../../img/approve.gif) no-repeat 4px center;
+       padding : .4em .4em .4em 25px;  
  }
 
 .dialog input.deny {
        background : #FFF url(../../img/deny.gif) no-repeat 4px center;
+       padding : .4em .4em .4em 25px;
  }
+
+.dialog input.save {
+       background: #fff url(../../img/toolbar-save.gif) no-repeat 4px center;
+       padding: .4em .4em .4em 34px;
+}
  
+.dialog input.edit {
+       background: #fff url(../../img/toolbar-edit.gif) no-repeat 4px center;
+       padding: .4em .4em .4em 34px;
+}
+
 .dialog input:hover {
        background-color : #ffc;
  }
index 1b75342..3be7e52 100644 (file)
@@ -447,10 +447,10 @@ function unHideSubfield(index,labelindex) { // FIXME :: is it used ?
                         <p>Is this a duplicate of <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- TMPL_VAR name="duplicatebiblionumber" -->" onclick="openWindow('../MARCdetail.pl?biblionumber=<!-- TMPL_VAR name="duplicatebiblionumber" -->&amp;popup=1', 'Duplicate biblio'; return false;)"><!-- TMPL_VAR name="duplicatetitle" --></a>?</p>
                         <form action="/cgi-bin/koha/cataloguing/additem.pl" method="get">
                             <input type="hidden" name="biblionumber" value="<!-- TMPL_VAR name="duplicatebiblionumber" -->" />
-                            <input type="submit" class="approve" value="Yes: Edit existing items" />
+                            <input type="submit" class="edit" value="Yes: Edit existing items" />
                         </form>
                         <form action="/cgi-bin/koha/cataloguing/addbiblio.pl" method="get">
-                            <input type="submit" class="deny" onclick="confirmnotdup(); return false;" value="No: Save as New Record" />
+                            <input type="submit" class="save" onclick="confirmnotdup(); return false;" value="No: Save as New Record" />
                         </form>
                     </div>
         <!-- /TMPL_IF -->