From eba4eeb189ba6d26c012e92c4d15e7587a12d4d3 Mon Sep 17 00:00:00 2001 From: tipaul Date: Fri, 14 Apr 2006 09:36:51 +0000 Subject: [PATCH] - adding some css properties (minor) - adding links in members menu improvements from SAN Ouest Provence : * introducing a category_type into categories. It can be A (adult), C (children), P (Professionnal), I (institution/organisation). * each category_type has it's own forms to create members. * the borrowers table has been heavily modified (many fields changed), to get something more logic & readable * reintroducing guarantor/guanrantee system that is now independant from hardcoded C/A for categories * updating templates to fit template rules (see mail feb, 17 on koha-devel "new features for borrowers" for more details) --- .../prog/en/includes/holidays-bottom.inc | 4 + .../prog/en/includes/holidays-top.inc | 164 ++++++++++++++++++ .../prog/en/includes/intranet.css | 22 ++- .../prog/en/includes/menu-admin.inc | 3 - .../prog/en/includes/menu-members.inc | 6 +- .../prog/en/includes/menu-tools.inc | 8 + .../intranet-tmpl/prog/en/includes/menus.inc | 1 + 7 files changed, 202 insertions(+), 6 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/holidays-bottom.inc create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/holidays-top.inc create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/menu-tools.inc diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holidays-bottom.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holidays-bottom.inc new file mode 100644 index 0000000000..0bf3aa6407 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holidays-bottom.inc @@ -0,0 +1,4 @@ + + + + diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holidays-top.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holidays-top.inc new file mode 100644 index 0000000000..1d761d57be --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holidays-top.inc @@ -0,0 +1,164 @@ + +/includes/calendar/calendar-system.css"> + + + + + + + + + + + + diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css b/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css index eb86c6ae00..147d29cdaf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/intranet.css @@ -1,6 +1,6 @@ body { font-family : Verdana, Geneva, Arial, sans-serif; - font-size : .7em; + font-size : .9em; } table { @@ -33,6 +33,14 @@ th[scope=row] { text-align : right; } +input { + font-size:0.9em; +} + +select { + font-size:0.9em; +} + input[type=submit], input[type=button], input[type=reset] { background-color : #6699cc; color : #FFFFFF; @@ -50,4 +58,16 @@ tr.highlight td, tr.highlight th { #admin_stopwords_select UL LI { white-space: nowrap; +} +fieldset { + display:inline; + vertical-align:top; +} +legend { + font-size:120%; + font-weight:bold; +} + +label { + width:10em; } \ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/menu-admin.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/menu-admin.inc index 6760433b5d..b881c63eec 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/menu-admin.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/menu-admin.inc @@ -14,8 +14,5 @@ Printers Stop words Z39.50 Servers - Export Reservoir - Barcodes - Log viewer

\ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/menu-members.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/menu-members.inc index d75c2bf321..45819ad3f5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/menu-members.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/menu-members.inc @@ -1,5 +1,7 @@

Search - Add member - Add organisation + Add adult + Add child + Add prof + Add org

\ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/menu-tools.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/menu-tools.inc new file mode 100644 index 0000000000..d1cfcb2063 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/menu-tools.inc @@ -0,0 +1,8 @@ +

+ Cities + Holidays + Export + Reservoir + Barcodes + Log viewer +

\ No newline at end of file diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/menus.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/menus.inc index 94a10aa4e8..e1d84588d1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/menus.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/menus.inc @@ -12,6 +12,7 @@ function Help() { Authorities Reports Parameters + Tools About Help

\ No newline at end of file -- 2.20.1