reintroducing intranetcolorstylesheet
authorPaul POULAIN <paul@koha-fr.org>
Wed, 24 Oct 2007 18:48:54 +0000 (13:48 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Wed, 24 Oct 2007 22:05:05 +0000 (17:05 -0500)
with a small blue.css file.

intranetcolorstylesheet is the last css included in the template.
(It should be used only for colors & graphic things)

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
koha-tmpl/intranet-tmpl/prog/en/css/blue.css [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc

diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/blue.css b/koha-tmpl/intranet-tmpl/prog/en/css/blue.css
new file mode 100644 (file)
index 0000000..2914572
--- /dev/null
@@ -0,0 +1,66 @@
+body {
+    text-align : left;
+    background-color:#EDF5FA;
+    color:#494949;
+}
+
+a, a:link, a:visited, a:active {
+    text-decoration:none;
+    color:#027ac6;
+}
+
+a:hover {
+    text-decoration:underline;
+    color:#0072b9;
+    }
+
+h1 {
+    margin-top:0.5em;
+    margin-bottom:0.5em;
+    font-size : 182%;
+    font-weight : bold;
+}
+h2 {
+    margin-top:0.3em;
+    margin-bottom:0.3em;
+    font-size : 150%;
+    font-weight : bold;
+}
+h3 {
+    font-size : 125%;
+    font-weight : bold;
+}
+
+h4 {
+    font-size : 110%;  
+    font-weight : bold;
+}
+
+h5 {
+    font-size : 100%;  
+    font-weight : bold;
+    background: url( /intranet-tmpl/prog/img/css_header.png );
+    background-repeat:repeat-x;
+    color:white;}
+
+h6 {
+    font-size : 93%;
+    font-weight : bold;
+}
+
+#navigation {
+       border-right : 1px solid #BCBCBC;
+}
+
+th {
+    color:white;
+    background: url( /intranet-tmpl/prog/img/css_header.png );
+    background-repeat:repeat-x;
+    border-bottom : 1px solid #BCBCBC;
+    border-left : 1px solid #BCBCBC;
+    padding : .5em;
+}
+
+.yui-u {
+border: 1px solid #bbbbbb;
+}
\ No newline at end of file
index d9aedf4..a989177 100644 (file)
@@ -56,3 +56,8 @@
 <!-- TMPL_IF NAME="login" --><link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/login.css" /><!-- /TMPL_IF -->
 <!-- TMPL_IF NAME="wizard" --><link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="themelang" -->/css/wizard.css" />
 <!-- /TMPL_IF -->
+
+<!-- local colors -->
+<!-- TMPL_IF name="intranetcolorstylesheet" -->
+    <link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR NAME="intranetcolorstylesheet" -->" />
+<!-- /TMPL_IF -->