Basic TPAC Boreal branding: colours and logo and links
authorDan Scott <dscott@laurentian.ca>
Tue, 31 Jul 2012 18:53:48 +0000 (14:53 -0400)
committerDan Scott <dscott@laurentian.ca>
Thu, 31 May 2018 20:21:28 +0000 (16:21 -0400)
Link from logo to College Boreal itself
Remove "Tembec" from name, hide old OPAC link
Change links to union catalogue for Boreal tpac skin

Signed-off-by: Dan Scott <dscott@laurentian.ca>
Open-ILS/src/templates_boreal/opac/css/style_overrides.css.tt2 [new file with mode: 0644]
Open-ILS/src/templates_boreal/opac/parts/css/colors.tt2 [new file with mode: 0644]
Open-ILS/src/templates_boreal/opac/parts/footer.tt2 [new file with mode: 0644]
Open-ILS/src/templates_boreal/opac/parts/homesearch.tt2 [new file with mode: 0644]
Open-ILS/src/templates_boreal/opac/parts/topnav_links.tt2 [new file with mode: 0644]
Open-ILS/src/templates_boreal/opac/parts/topnav_logo.tt2 [new file with mode: 0644]
Open-ILS/web/images/boreal_logo.png [new file with mode: 0644]
Open-ILS/web/images/boreal_logo_small.png [new file with mode: 0644]

diff --git a/Open-ILS/src/templates_boreal/opac/css/style_overrides.css.tt2 b/Open-ILS/src/templates_boreal/opac/css/style_overrides.css.tt2
new file mode 100644 (file)
index 0000000..61b8f3b
--- /dev/null
@@ -0,0 +1,20 @@
+#adv_search_tabs a.acct-tab-on, #acct_tabs a.acct-tab-on, #acct_fines_tabs a.acct-tab-on {
+    color: [% css_colors.primary %];
+}
+#acct_checked_tabs a, #acct_holds_tabs a, #acct_prefs_tabs a {
+    color: [% css_colors.text_invert %];
+}
+
+#acct_checked_tabs div.selected a, #acct_holds_tabs div.selected a, #acct_prefs_tabs div.selected a {
+    color: [% css_colors.text %];
+}
+
+#acct_checked_tabs, #acct_holds_tabs, #acct_prefs_tabs {
+    color: [% css_colors.text %];
+}
+
+.cached_list_div { height: 25px; }
+
+#header-wrap, #footer-wrap {
+    background: black !important;
+}
diff --git a/Open-ILS/src/templates_boreal/opac/parts/css/colors.tt2 b/Open-ILS/src/templates_boreal/opac/parts/css/colors.tt2
new file mode 100644 (file)
index 0000000..e59844f
--- /dev/null
@@ -0,0 +1,36 @@
+[%
+    css_colors = {
+
+        background = "#fff", # white
+        background_alert = "#ffcccc", # pink
+        background_invert = "#252525", # charcoal
+        text = "black", # black 
+        text_alert = "red", # red
+        text_attention = "#ffcc33", # pumpkin orange
+        text_badnews = "#f41d36", # cherry red
+        text_goodnews = "#1dd93c", # lime green
+        text_greatnews = "green", # green
+        text_invert = "#fff", # white
+        text_match = "#c00", # deep red
+        primary = "#4F007D", # dark purple
+        primary_fade = "#8930BE", # medium purple 
+        primary_offset = "#D8DCF7", # light purple
+        control = "#003E7E", # lighter green
+        accent_light = "#ccc", #  grey (light)
+        accent_lighter = "#ddd", #  grey (lighter)
+        accent_lighter2 = "#d8d8d8", #  grey (lighter again)
+        accent_lightest = "#eee", #  grey (lightest)
+        accent_ultralight = "#f0f0f0", # ivory
+        accent_medium = "#999", # gun metal grey (medium)
+        accent_mediumdark = "#888", # gun metal grey (medium dark)
+        accent_dark = "#666", # gun metal grey (dark)
+        accent_darker = "#5689BF", # gun metal grey (darker)
+        border_standard = "#e9ebf3", # light grey-blue
+        border_dark = "black", # black
+        border_alert = "red", # red
+        button_text = "#fbf9f9", # off-white 
+        button_text_shadow = "#555555", # medium grey
+        table_heading = "#d8d8d8", # grey-blue
+    };
+    
+%]
diff --git a/Open-ILS/src/templates_boreal/opac/parts/footer.tt2 b/Open-ILS/src/templates_boreal/opac/parts/footer.tt2
new file mode 100644 (file)
index 0000000..cad0969
--- /dev/null
@@ -0,0 +1,28 @@
+<div id="footer-wrap">
+<div id="footer">
+    <a href="http://boreal.libguides.com/biblio">[% l("Heures d'ouverture") %]</a> &nbsp;|&nbsp;
+    <a href="http://boreal.libguides.com/content.php?pid=332392&sid=2724470">[% l('Prêt entre bibliothèques') %]</a> &nbsp;|&nbsp;
+    <a href="http://boreal.libguides.com/biblio">[% l('Centre de ressources') %]</a> &nbsp;|&nbsp;
+    <a href="http://www.searchcollect.ca">[% l(' Catalogue de tous les collèges') %]</a> &nbsp;|&nbsp;
+    [% IF ctx.timing %]
+    <div id="timing">
+        [% FOR event IN ctx.timing %]
+        At <span class="timing-time">[% event.0 | format("%0.4f") %]</span>:
+        <span class="timing-event">[% event.1 %]</span><br />
+        [% END %]
+    </div>
+    [% END %]
+    <div id="copyright_text" style="margin-top: 2em;">
+        [% l('Copyright &copy; 2006-[_1] Georgia Public Library Service, and others', date.format(date.now, '%Y')) %]
+    </div>
+    <div id="footer_logo">
+        [% l('Powered by') %]
+        <a href="http://evergreen-ils.org">
+            <img src="[% ctx.media_prefix %]/opac/images/eg_tiny_logo.png"
+                style="border:none; width: 94px; height: 16px;"
+                alt="[% l('Evergreen') %]"
+            />
+        </a>
+    </div>
+</div>
+</div>
diff --git a/Open-ILS/src/templates_boreal/opac/parts/homesearch.tt2 b/Open-ILS/src/templates_boreal/opac/parts/homesearch.tt2
new file mode 100644 (file)
index 0000000..1e11d75
--- /dev/null
@@ -0,0 +1,3 @@
+<div id="homesearch_main_logo">
+<img alt="[% l('Collège Boréal') %]" src="[% ctx.media_prefix %]/images/boreal_logo.png" />
+</div>
diff --git a/Open-ILS/src/templates_boreal/opac/parts/topnav_links.tt2 b/Open-ILS/src/templates_boreal/opac/parts/topnav_links.tt2
new file mode 100644 (file)
index 0000000..5dcea6b
--- /dev/null
@@ -0,0 +1,10 @@
+<div id="gold-links-holder">
+    <div id="gold-links">
+        <div id="header-links">
+            <a href="http://boreal.libguides.com/biblio">[% l("Heures d'ouverture") %]</a>
+            <a href="http://boreal.libguides.com/content.php?pid=332392&sid=2724470">[% l('Prêt entre bibliothèques') %]
+            <a href="http://boreal.libguides.com/biblio">[% l('Centre de ressources') %]</a>
+            <a href="http://www.searchcollect.ca">[% l(' Catalogue de tous les collèges') %]</a>
+        </div>
+    </div>
+</div>
diff --git a/Open-ILS/src/templates_boreal/opac/parts/topnav_logo.tt2 b/Open-ILS/src/templates_boreal/opac/parts/topnav_logo.tt2
new file mode 100644 (file)
index 0000000..23fd0b3
--- /dev/null
@@ -0,0 +1,2 @@
+       <div id="topnav_logo"><a href="http://www.collegeboreal.ca/" title="Collège Boréal"><img alt="[% l('Collège Boréal') %]" 
+            src="[% ctx.media_prefix %]/images/boreal_logo_small.png" /></a></div>
diff --git a/Open-ILS/web/images/boreal_logo.png b/Open-ILS/web/images/boreal_logo.png
new file mode 100644 (file)
index 0000000..6d8b421
Binary files /dev/null and b/Open-ILS/web/images/boreal_logo.png differ
diff --git a/Open-ILS/web/images/boreal_logo_small.png b/Open-ILS/web/images/boreal_logo_small.png
new file mode 100644 (file)
index 0000000..8a2d1ca
Binary files /dev/null and b/Open-ILS/web/images/boreal_logo_small.png differ