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

paul poulain paul at koha-fr.org
Wed Jan 31 16:25:37 CET 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	paul poulain <tipaul>	07/01/31 15:25:36

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

Log message:
	- adding tag & subfield styles, for MARCdetail and MARC editor.
	- setting label to display:block, with a fixed length, adding clear:left to p.
	
	Now, labels have a fixed length and all <form> look highly better.
	fixed a missing <p></p> in MARC editor.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/catalogue/MARCdetail.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.3.2.16&r2=1.3.2.17
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.28&r2=1.7.2.29

Patches:
Index: catalogue/MARCdetail.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/catalogue/MARCdetail.tmpl,v
retrieving revision 1.3.2.16
retrieving revision 1.3.2.17
diff -u -b -r1.3.2.16 -r1.3.2.17
--- catalogue/MARCdetail.tmpl	16 Jan 2007 15:01:01 -0000	1.3.2.16
+++ catalogue/MARCdetail.tmpl	31 Jan 2007 15:25:36 -0000	1.3.2.17
@@ -52,14 +52,14 @@
     <div name="0XX" id="0XX" class="content_visible">
         <!-- TMPL_LOOP NAME="0XX" -->
                 <!-- TMPL_IF name="tag" -->
-                    <p>
+                    <p class="tag">
                         <!-- TMPL_VAR NAME="tag" -->
                     </p>
                 <!-- TMPL_ELSE -->
                     <br />
                 <!-- /TMPL_IF -->
             <!-- TMPL_LOOP NAME="subfield" -->
-                <p>
+                <p class="subfield">
                     <label>&nbsp;
                     <!-- TMPL_UNLESS name="hide_marc" --><!-- TMPL_VAR NAME="marc_subfield" --><!-- /TMPL_UNLESS -->
                     <span title="<!-- TMPL_VAR name="long_desc" -->"><!-- TMPL_VAR NAME="short_desc" --></span></label>

Index: includes/intranet.css
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css,v
retrieving revision 1.7.2.28
retrieving revision 1.7.2.29
diff -u -b -r1.7.2.28 -r1.7.2.29
--- includes/intranet.css	25 Jan 2007 17:41:29 -0000	1.7.2.28
+++ includes/intranet.css	31 Jan 2007 15:25:36 -0000	1.7.2.29
@@ -55,7 +55,19 @@
     font-size : 1em;
     font-weight : bold;
 }
+label {
+    font-style:italic;
+    vertical-align:top;
+    display:block;
+    float:left;
+/*     text-align:right; */
+    width:10em;
+    margin-right:0.2em;
+}
 
+p {
+clear:left;
+}
 .searchresults table tr:hover{
     background-color: #CCFFFF;
 }
@@ -395,6 +407,17 @@
     display:block;
 }
 
+/* the style of tag description */
+p.tag {
+    font-weight:bold;
+}
+/* the style of subfield paragraph */
+p.subfield {
+    
+}
+
+
+
 .lineSelected {
     background-color:yellow;
 }





More information about the Koha-cvs mailing list