From 9d1600f32edb24e9aa5538749f37d84242b3d15f Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Wed, 24 Oct 2007 13:48:54 -0500 Subject: [PATCH] reintroducing intranetcolorstylesheet 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 Signed-off-by: Joshua Ferraro --- koha-tmpl/intranet-tmpl/prog/en/css/blue.css | 66 +++++++++++++++++++ .../prog/en/includes/doc-head-close.inc | 5 ++ 2 files changed, 71 insertions(+) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/css/blue.css 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 index 0000000000..2914572371 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/css/blue.css @@ -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 diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc index d9aedf45de..a989177e51 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-close.inc @@ -56,3 +56,8 @@ /css/login.css" /> /css/wizard.css" /> + + + + " /> + -- 2.39.5