koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/koha-tmpl/intranet-tmpl/prog/en/includes a... [rel_3_0]


From: Antoine Farnault
Subject: [Koha-cvs] koha/koha-tmpl/intranet-tmpl/prog/en/includes a... [rel_3_0]
Date: Fri, 12 Jan 2007 14:27:44 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        07/01/12 14:27:44

Modified files:
        koha-tmpl/intranet-tmpl/prog/en/includes: action-catalogue.inc 
                                                  intranet.css 

Log message:
        Display enhancement for cataloguing action's button.
        
        To SAN OP:
        Peut être que ceci pourrait être à synchroniser sur votre 
san-op.css. As you want...

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/includes/action-catalogue.inc?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1.2.1&r2=1.1.2.2
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css?cvsroot=koha&only_with_tag=rel_3_0&r1=1.7.2.21&r2=1.7.2.22

Patches:
Index: action-catalogue.inc
===================================================================
RCS file: 
/sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/includes/Attic/action-catalogue.inc,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -b -r1.1.2.1 -r1.1.2.2
--- action-catalogue.inc        11 Jan 2007 17:09:46 -0000      1.1.2.1
+++ action-catalogue.inc        12 Jan 2007 14:27:44 -0000      1.1.2.2
@@ -1,4 +1,6 @@
     <div id="action">
+            
+            <div class="edit">
             <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->&frameworkcode=<!--TMPL_VAR 
Name="current_framework" -->&op=">
                 Edit biblio
             </a>
@@ -11,6 +13,9 @@
             <a href="javascript:confirm_deletion()">
                 Delete
             </a>
+            </div>
+            
+            <div class="view">
             <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->">
             Complete
             </a>
@@ -20,6 +25,9 @@
             <a href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->">
                 ISBD
             </a>
+            </div>
+            
+            <div class="others">
             <a href="#" 
onclick="JavaScript:window.open('/cgi-bin/koha/bookshelves/addbookbybiblionumber.pl?biblionumber=<!--
 TMPL_VAR NAME="biblionumber" 
-->','Add_to_bookshelf','width=500,height=400,toolbar=false,scrollbars=yes'); 
return false;">
                 Add to shelf
             </a>
@@ -38,9 +46,12 @@
                 </a>
             <!-- /TMPL_IF -->
             
-            <a href="/cgi-bin/koha/catalogue/issuehistory.pl?biblionumber=<!-- 
TMPL_VAR NAME="biblionumber" -->&title=<!-- TMPL_VAR 
NAME="title"-->&author=<!-- TMPL_VAR NAME="author"-->" >Issue history</a>
+                <a 
href="/cgi-bin/koha/catalogue/issuehistory.pl?biblionumber=<!-- TMPL_VAR 
NAME="biblionumber" -->&title=<!-- TMPL_VAR NAME="title"-->&author=<!-- 
TMPL_VAR NAME="author"-->" >
+                    Issue history
+                </a>
             
             <!-- TMPL_IF NAME="CAN_user_parameters"-->
            <a 
href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&module=CATALOGUING&action=MODIFY&object=<!--
 TMPL_VAR NAME="biblionumber"-->">Modification Log</a>
             <!-- /TMPL_IF -->            
     </div>
+    </div>

Index: intranet.css
===================================================================
RCS file: 
/sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css,v
retrieving revision 1.7.2.21
retrieving revision 1.7.2.22
diff -u -b -r1.7.2.21 -r1.7.2.22
--- intranet.css        10 Jan 2007 14:19:51 -0000      1.7.2.21
+++ intranet.css        12 Jan 2007 14:27:44 -0000      1.7.2.22
@@ -212,22 +212,71 @@
     color:white;
 }
 
+/*Action button*/
+#action {
+    /*float:right;*/
+}
+
 #action a {
-    background-color : #6699CC;
-    color : #FFFFFF;
     font-size : 1em;
     border: 2px outset;
     font-weight : bold;
-    margin:0px 5px 0px 0px;
-    padding-right:5px;
-    padding-left:5px;
+    margin:5px 0px 0px 0px;
+    padding:3px;
     text-decoration:none;
-    display: inline;
+    display:inline;
 }
 
-#action a:hover {
+/*edit action*/
+#action .edit {
+       display:inline;
+       margin-right:5px;
+}
+
+#action .edit a {
+    background-color : #6699CC;
+    color : white;
+    margin-top: 1px;
+}
+
+#action .edit a:hover {
     border: 2px inset;
-    background-color:#CCCCCC;
+    color: #6699CC;
+    background-color:white;
+}
+
+#action .view {
+       display:inline;
+       margin-right:5px;
+}
+
+#action .view a {
+    background-color : #CECEFF;
+    color : white;
+    margin-top: 1px;
+}
+
+#action .view a:hover {
+    border: 2px inset;
+    color: #CECEFF;
+    background-color:white;
+}
+
+#action .others {
+       display:inline;
+       margin-right:5px;
+}
+
+#action .others a {
+    background-color : #6699AA;
+    color : white;
+    margin-top: 1px;
+}
+
+#action .others a:hover {
+    border: 2px inset;
+    color: #6699AA;
+    background-color:white;
 }
 
 /* Main body style */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]