diff --git a/admin/admin_template/default/style.css b/admin/admin_template/default/style.css index c885737..6e88a63 100755 --- a/admin/admin_template/default/style.css +++ b/admin/admin_template/default/style.css @@ -241,6 +241,7 @@ header background-size: 20px 20px; margin-left: 20px; margin-right: 10px; + margin-top:5px; } @@ -410,6 +411,11 @@ a.printReport:active { text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } +#pageContent +{ + height: 100% !important; +} + #pageContent div { background-color:#fff !important; } @@ -580,11 +586,22 @@ table, tr, td, th { background-color:#eee !important; } - .fullWidth { width: 100%; } +.mceToolbar tr td +{ + + padding:0px !important; + margin:0px !important; + border-top: none !important; + border-left: none !important; + border-right: none !important; + border-bottom: none !important; + +} + /*---------- contentdisk @@ -981,7 +998,7 @@ icon #listsFrame { width: 100%; - height: 100%; + height: 600px !important; } #iframeDragger { @@ -1046,4 +1063,9 @@ input.small_input { .mceToolbar table td { border: 0; +} + +.highlighted +{ + background-color:#ffde5a !important; } \ No newline at end of file diff --git a/install/index.php b/install/index.php index 0a8e95e..d046550 100755 --- a/install/index.php +++ b/install/index.php @@ -20,6 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ + include "settings.php"; if (file_exists($config_file_path)) { header("location: ".$application_start_file); @@ -44,7 +45,7 @@ - Slims Installer + Start | Slims Installer diff --git a/install/install.php b/install/install.php index 209ed33..3cba7b4 100755 --- a/install/install.php +++ b/install/install.php @@ -25,7 +25,7 @@ - Step 2 | Slims's Easy Installer Guide + Step 1 | Slims Installer diff --git a/install/install2.php b/install/install2.php index 82eecf9..26cfb68 100755 --- a/install/install2.php +++ b/install/install2.php @@ -2,7 +2,7 @@ /** * Slims Installer files * - * Copyright 2006 - 2012 Advanced Power of PHP + * Copyright © 2006 - 2012 Advanced Power of PHP * Some modifications & patches by Eddy Subratha (eddy.subratha@gmail.com) * * This program is free software; you can redistribute it and/or modify @@ -103,7 +103,7 @@ function apphp_db_install($database, $sql_file) { function apphp_db_select_db($database) { global $link; - return mysqli_select_db($database); + return mysqli_select_db($link, $database); } function apphp_db_query($query) { @@ -120,78 +120,83 @@ function apphp_db_query($query) { $error_mg = array(); if ($_POST['submit'] == "step2") { - $database_host = isset($_POST['database_host'])?$_POST['database_host']:''; - $database_name = isset($_POST['database_name'])?$_POST['database_name']:''; - $database_username = isset($_POST['database_username'])?$_POST['database_username']:''; - $database_password = isset($_POST['database_password'])?$_POST['database_password']:''; - $database_sample = isset($_POST['install_sample'])?$_POST['install_sample']:''; + $database_host = isset($_POST['database_host'])?$_POST['database_host']:""; + $database_name = isset($_POST['database_name'])?$_POST['database_name']:""; + $database_username = isset($_POST['database_username'])?$_POST['database_username']:""; + $database_password = isset($_POST['database_password'])?$_POST['database_password']:""; + $database_sample = isset($_POST['install_sample'])?$_POST['install_sample']:""; if (empty($database_host)){ - $error_mg[] = '
  • Database host can not be empty
  • '; + $error_mg[] = "
  • Database host can not be empty
  • "; } if (empty($database_name)){ - $error_mg[] = '
  • Database name can not be empty
  • '; + $error_mg[] = "
  • Database name can not be empty
  • "; } if (empty($database_username)){ - $error_mg[] = '
  • Database username can not be empty
  • '; + $error_mg[] = "
  • Database username can not be empty
  • "; } if (empty($database_password)){ - $error_mg[] = '
  • Database password can not be empty
  • '; + $error_mg[] = "
  • Database password can not be empty
  • "; } if(empty($error_mg)){ $config_file = file_get_contents($config_file_default); - $config_file = str_replace('_DB_HOST_', $database_host, $config_file); - $config_file = str_replace('_DB_NAME_', $database_name, $config_file); - $config_file = str_replace('_DB_USER_', $database_username, $config_file); - $config_file = str_replace('_DB_PASSWORD_', $database_password, $config_file); - - $f = @fopen($config_file_path, "w+"); - if (@fwrite($f, $config_file) > 0) { - $link = @mysqli_connect($database_host, $database_username, $database_password); - if($link){ - if (@mysqli_select_db($link, $database_name)) { - apphp_db_install($database_name, $sql_dump); - if($db_error){ - $error_mg[] = "
  • Could not read file ".$sql_dump."! Please check if the file exists
  • "; - @unlink($config_file_path); - } else { - if ($_POST['install_sample'] == 'yes') { - apphp_db_install($database_name, $sql_sample); - if ($db_error) { - $error_mg[] = "
  • Could not read file ".$sql_sample."! Please check if the file exists
  • "; - }else{ - $completed = true; - } - } else { - $completed = true; - } - } - } else { - $error_mg[] = "
  • Database connecting error! Check your database exists.
  • "; - @unlink($config_file_path); - } - } else { - $error_mg[] = "
  • Database connecting error! Check your connection parameters
  • "; - @unlink($config_file_path); - } + $config_file = str_replace("_DB_HOST_", $database_host, $config_file); + $config_file = str_replace("_DB_NAME_", $database_name, $config_file); + $config_file = str_replace("_DB_USER_", $database_username, $config_file); + $config_file = str_replace("_DB_PASSWORD_", $database_password, $config_file); + + if(!@copy('../sysconfig.local.inc-sample.php', $config_file_path)) { + $error_mg[] = "
  • Could not create file ".$config_file_name."! Please check if the sysconfig.local.inc-sample.php file is exists, or + try to manually copy this file and then rename it to sysconfig.local.inc.php and make sure this file is writable to your host's web server.
  • "; } else { - $error_mg[] = "
  • Can not open configuration file ".$config_file_directory.$config_file_name.". - Looks like your web server doesn't have write access to this file, - try to create this file manually and make sure it is writable by host's web server if the problem persist.
  • "; + @chmod($config_file_path,0777); + $f = @fopen($config_file_path, "w+"); + if (@fwrite($f, $config_file) > 0){ + $link = @mysqli_connect($database_host, $database_username, $database_password); + if($link){ + if (@mysqli_select_db($link, $database_name)) { + if(false == ($db_error = apphp_db_install($database_name, $sql_dump))){ + $error_mg[] = "
  • Could not read file ".$sql_dump."! Please check if the file exists or change its permission so it is readable by web server
  • "; + @unlink($config_file_path); + }else{ + if($_POST['install_sample'] == 'yes') + { + if(false == ($db_error = apphp_db_install($database_name, $sql_sample))){ + $error_mg[] = "
  • Could not read file ".$sql_sample."! Please check if the file exists or change its permission so it is readable by web server
  • "; + }else{ + $completed = true; + } + } else { + $completed = true; + } + } + } else { + $error_mg[] = "
  • Database connecting error! Check if your database exists
  • "; + @unlink($config_file_path); + } + } else { + $error_mg[] = "
  • Database connecting error! Check your connection parameters
  • "; + @unlink($config_file_path); + } + } else { + $error_mg[] = "
  • Can not open configuration file ".$config_file_directory.$config_file_name."
  • "; + } + @fclose($f); + @chmod($config_file_path,0755); } - @fclose($f); } + @fclose($f); } ?> - Start | Slims's Easy Installer Guide + Step 2 | Slims Installer @@ -229,8 +234,8 @@ function apphp_db_query($query) {
    - + - \ No newline at end of file + diff --git a/install/styles.css b/install/styles.css index a40a75a..ca6b266 100755 --- a/install/styles.css +++ b/install/styles.css @@ -68,7 +68,7 @@ h4 /*----------------------------------------------------------------*/ .wrapper { - width:640px; + width:660px; margin-left: auto; margin-right: auto; border: solid 1px #efefef; diff --git a/lib/lang/locale/id_ID/LC_MESSAGES/messages.mo b/lib/lang/locale/id_ID/LC_MESSAGES/messages.mo index eb68747..d89d7f6 100755 Binary files a/lib/lang/locale/id_ID/LC_MESSAGES/messages.mo and b/lib/lang/locale/id_ID/LC_MESSAGES/messages.mo differ diff --git a/lib/lang/locale/id_ID/LC_MESSAGES/messages.po b/lib/lang/locale/id_ID/LC_MESSAGES/messages.po index d942d8c..3b584aa 100755 --- a/lib/lang/locale/id_ID/LC_MESSAGES/messages.po +++ b/lib/lang/locale/id_ID/LC_MESSAGES/messages.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: Senayan3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-14 17:29+0700\n" -"PO-Revision-Date: 2012-04-14 17:29+0700\n" +"POT-Creation-Date: 2012-04-21 16:23+0700\n" +"PO-Revision-Date: 2012-04-21 16:23+0700\n" "Last-Translator: Arif Syamsudin \n" "Language-Team: Arie Nugraha; Hendro Wicaksono; Wardiyono \n" "Language: \n" @@ -21,79 +21,79 @@ msgstr "" "X-Poedit-Basepath: ../../../../../\n" "X-Poedit-SearchPath-0: .\n" -#: sysconfig.inc.php:525 +#: sysconfig.inc.php:529 msgid "Personal Name" msgstr "Nama Orang" -#: sysconfig.inc.php:526 +#: sysconfig.inc.php:530 msgid "Organizational Body" msgstr "Badan Organisasi" -#: sysconfig.inc.php:527 +#: sysconfig.inc.php:531 msgid "Conference" msgstr "Konferensi" -#: sysconfig.inc.php:530 +#: sysconfig.inc.php:534 msgid "Topic" msgstr "Topik" -#: sysconfig.inc.php:531 +#: sysconfig.inc.php:535 msgid "Geographic" msgstr "Geografis" -#: sysconfig.inc.php:532 +#: sysconfig.inc.php:536 msgid "Name" msgstr "Nama" -#: sysconfig.inc.php:533 +#: sysconfig.inc.php:537 msgid "Temporal" msgstr "Masa" -#: sysconfig.inc.php:534 +#: sysconfig.inc.php:538 msgid "Genre" msgstr "Aliran" -#: sysconfig.inc.php:535 +#: sysconfig.inc.php:539 msgid "Occupation" msgstr "Pekerjaan" -#: sysconfig.inc.php:538 +#: sysconfig.inc.php:542 msgid "Primary Author" msgstr "Pengarang Utama" -#: sysconfig.inc.php:539 +#: sysconfig.inc.php:543 msgid "Additional Author" msgstr "Pengarang Tambahan" -#: sysconfig.inc.php:540 +#: sysconfig.inc.php:544 msgid "Editor" msgstr "Penyunting" -#: sysconfig.inc.php:541 +#: sysconfig.inc.php:545 msgid "Translator" msgstr "Penerjemah" -#: sysconfig.inc.php:542 +#: sysconfig.inc.php:546 msgid "Director" msgstr "Direktur" -#: sysconfig.inc.php:543 +#: sysconfig.inc.php:547 msgid "Producer" msgstr "Produser" -#: sysconfig.inc.php:544 +#: sysconfig.inc.php:548 msgid "Composer" msgstr "Penggubah" -#: sysconfig.inc.php:545 +#: sysconfig.inc.php:549 msgid "Illustrator" msgstr "Ilustrator" -#: sysconfig.inc.php:546 +#: sysconfig.inc.php:550 msgid "Creator" msgstr "Pencipta" -#: sysconfig.inc.php:547 +#: sysconfig.inc.php:551 msgid "Contributor" msgstr "Kontributor" @@ -109,19 +109,23 @@ msgstr "Anda saat ini masuk sebagai anggota" msgid "LOGOUT" msgstr "KELUAR" -#: template/lightweight/index_template.inc.php:20 +#: template/lightweight/index_template.inc.php:53 msgid "Home" msgstr "Beranda depan" -#: template/lightweight/index_template.inc.php:21 +#: template/lightweight/index_template.inc.php:56 msgid "Library Information" msgstr "Info Perpustakaan" -#: template/lightweight/index_template.inc.php:22 +#: template/lightweight/index_template.inc.php:59 msgid "Help on Search" msgstr "Bantuan pencarian" -#: template/lightweight/index_template.inc.php:39 +#: template/lightweight/index_template.inc.php:62 +msgid "Full Site" +msgstr "Moda Non-bergerak" + +#: template/lightweight/index_template.inc.php:113 msgid "Search" msgstr "Pencarian" @@ -347,13 +351,10 @@ msgid "Quick Return Collection" msgstr "Pengembalian Kilat Koleksi" #: admin/default/submenu.php:33 -#: admin/modules/membership/submenu.php:28 -#: admin/modules/membership/index.php:292 msgid "Add New Member" msgstr "Tambah Anggota" #: admin/default/submenu.php:33 -#: admin/modules/membership/submenu.php:28 msgid "Add New Library Member Data" msgstr "Tambah Data Anggota Perpustakaan" @@ -846,6 +847,7 @@ msgstr "Toleransi Keterlambatan" #: admin/modules/membership/member_type.php:251 #: admin/modules/circulation/fines_list.php:229 +#: admin/modules/circulation/member_loan_hist.php:88 msgid "Found {result->num_rows} from your keywords" msgstr "Ditemukan {result->num_rows} dari pencarian Anda melalui kata kunci" @@ -930,16 +932,10 @@ msgid "You are going to edit fines data" msgstr "Anda akan menyunting data denda" #: admin/modules/circulation/member_loan_hist.php:62 -#: admin/modules/circulation/loan_list.php:96 -#: admin/modules/circulation/loan.php:141 -#: admin/modules/circulation/reserve_list.php:96 msgid "Item Code" msgstr "Kode Eksemplar" #: admin/modules/circulation/member_loan_hist.php:64 -#: admin/modules/circulation/loan_list.php:96 -#: admin/modules/circulation/circulation_action.php:291 -#: admin/modules/circulation/loan.php:141 msgid "Loan Date" msgstr "Tanggal Pinjam" @@ -2135,6 +2131,7 @@ msgstr "Laporan Pengunjung Perpustakaan" #: admin/modules/reporting/customs/visitor_report.php:66 #: admin/modules/reporting/customs/loan_by_class.php:101 #: admin/modules/reporting/customs/fines_report.php:81 +#: admin/modules/reporting/customs/visitor_report_day.php:81 msgid "Year" msgstr "Tahun" @@ -2142,6 +2139,7 @@ msgstr "Tahun" #: admin/modules/reporting/customs/loan_by_class.php:130 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:48 +#: admin/modules/reporting/customs/visitor_report_day.php:48 msgid "Jan" msgstr "Jan" @@ -2149,6 +2147,7 @@ msgstr "Jan" #: admin/modules/reporting/customs/loan_by_class.php:131 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:49 +#: admin/modules/reporting/customs/visitor_report_day.php:49 msgid "Feb" msgstr "Feb" @@ -2156,6 +2155,7 @@ msgstr "Feb" #: admin/modules/reporting/customs/loan_by_class.php:132 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:50 +#: admin/modules/reporting/customs/visitor_report_day.php:50 msgid "Mar" msgstr "Mar" @@ -2163,6 +2163,7 @@ msgstr "Mar" #: admin/modules/reporting/customs/loan_by_class.php:133 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:51 +#: admin/modules/reporting/customs/visitor_report_day.php:51 msgid "Apr" msgstr "Apr" @@ -2170,6 +2171,7 @@ msgstr "Apr" #: admin/modules/reporting/customs/loan_by_class.php:134 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:52 +#: admin/modules/reporting/customs/visitor_report_day.php:52 msgid "May" msgstr "Mei" @@ -2177,6 +2179,7 @@ msgstr "Mei" #: admin/modules/reporting/customs/loan_by_class.php:135 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:53 +#: admin/modules/reporting/customs/visitor_report_day.php:53 msgid "Jun" msgstr "Jun" @@ -2184,6 +2187,7 @@ msgstr "Jun" #: admin/modules/reporting/customs/loan_by_class.php:136 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:54 +#: admin/modules/reporting/customs/visitor_report_day.php:54 msgid "Jul" msgstr "Jul" @@ -2191,6 +2195,7 @@ msgstr "Jul" #: admin/modules/reporting/customs/loan_by_class.php:137 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:55 +#: admin/modules/reporting/customs/visitor_report_day.php:55 msgid "Aug" msgstr "Agu" @@ -2198,6 +2203,7 @@ msgstr "Agu" #: admin/modules/reporting/customs/loan_by_class.php:138 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:56 +#: admin/modules/reporting/customs/visitor_report_day.php:56 msgid "Sep" msgstr "Sep" @@ -2205,6 +2211,7 @@ msgstr "Sep" #: admin/modules/reporting/customs/loan_by_class.php:139 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:57 +#: admin/modules/reporting/customs/visitor_report_day.php:57 msgid "Oct" msgstr "Okt" @@ -2212,6 +2219,7 @@ msgstr "Okt" #: admin/modules/reporting/customs/loan_by_class.php:140 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:58 +#: admin/modules/reporting/customs/visitor_report_day.php:58 msgid "Nov" msgstr "Nop" @@ -2219,6 +2227,7 @@ msgstr "Nop" #: admin/modules/reporting/customs/loan_by_class.php:141 #: admin/modules/reporting/customs/loan_by_class.php:150 #: admin/modules/reporting/customs/fines_report.php:59 +#: admin/modules/reporting/customs/visitor_report_day.php:59 msgid "Dec" msgstr "Des" @@ -2301,6 +2310,7 @@ msgid "NON Decimal Classes" msgstr "Kelas Non-Desimal" #: admin/modules/reporting/customs/fines_report.php:94 +#: admin/modules/reporting/customs/visitor_report_day.php:94 msgid "Month" msgstr "Bulan" @@ -2490,6 +2500,7 @@ msgid "Document Publisher" msgstr "Penerbit Dokumen" #: admin/modules/master_file/submenu.php:29 +#: admin/modules/master_file/supplier.php:135 msgid "Supplier" msgstr "Agen" @@ -2519,7 +2530,7 @@ msgid "Document Content Language" msgstr "Bahasa Konten Dokumen" #: admin/modules/master_file/submenu.php:38 -#: admin/modules/master_file/label.php:167 +#: admin/modules/master_file/label.php:160 msgid "Label" msgstr "Label" @@ -2683,43 +2694,43 @@ msgstr "Kode Bahasa" msgid "You are going to edit language data" msgstr "Anda akan menyunting data bahasa" -#: admin/modules/master_file/label.php:115 +#: admin/modules/master_file/label.php:108 msgid "Label Data Successfully Updated" msgstr "Data Label Berhasil Diperbaharui" -#: admin/modules/master_file/label.php:117 +#: admin/modules/master_file/label.php:110 msgid "Label Data FAILED to Updated. Please Contact System Administrator" msgstr "Label GAGAL Diperbaharui. Hubungi Administrator Sistem" -#: admin/modules/master_file/label.php:123 +#: admin/modules/master_file/label.php:116 msgid "New Label Data Successfully Saved" msgstr "Label Baru Berhasil Disimpan" -#: admin/modules/master_file/label.php:125 +#: admin/modules/master_file/label.php:118 msgid "Label Data FAILED to Save. Please Contact System Administrator" msgstr "Label GAGAL Disimpan. Hubungi Administrator Sistem" -#: admin/modules/master_file/label.php:171 +#: admin/modules/master_file/label.php:164 msgid "Label List" msgstr "Daftar Label" -#: admin/modules/master_file/label.php:172 +#: admin/modules/master_file/label.php:165 msgid "Add New Label" msgstr "Tambah Label" -#: admin/modules/master_file/label.php:215 -#: admin/modules/master_file/label.php:246 -#: admin/modules/master_file/label.php:250 +#: admin/modules/master_file/label.php:208 +#: admin/modules/master_file/label.php:239 +#: admin/modules/master_file/label.php:243 msgid "Label Name" msgstr "Nama Label" -#: admin/modules/master_file/label.php:228 -#: admin/modules/master_file/label.php:245 -#: admin/modules/master_file/label.php:249 +#: admin/modules/master_file/label.php:221 +#: admin/modules/master_file/label.php:238 +#: admin/modules/master_file/label.php:242 msgid "Label Description" msgstr "Deskripsi Label" -#: admin/modules/master_file/label.php:232 +#: admin/modules/master_file/label.php:225 msgid "You are going to edit Label data" msgstr "Anda akan menyunting data Label" @@ -4026,6 +4037,7 @@ msgid "Type to search for existing topics or to add a new one" msgstr "Ketik untuk mencari topik atau menambah baru" #: admin/modules/bibliography/pop_topic.php:156 +#: admin/modules/bibliography/pop_author.php:155 msgid "Insert To Bibliography" msgstr "Sisipkan Dalam Bibliografi" diff --git a/template/lightweight/index_template.inc.php b/template/lightweight/index_template.inc.php index bb156ff..c1b7711 100755 --- a/template/lightweight/index_template.inc.php +++ b/template/lightweight/index_template.inc.php @@ -1,11 +1,10 @@ array('url' => 'index.php?p=help', 'text' => __('Help on Search') ), - 'site' => array('url' => 'index.php?fullsite=1', - 'text' => __('Full Site') + 'site' => array('url' => 'index.php?p=member', + 'text' => __('Member Area') ) ); @@ -68,20 +67,20 @@ you may modified as you need. ----------------------------------------------------*/ $social = array ( - 'facebook' => array('url' => 'http://www.facebook.com/groups/senayan.slims/', - 'text' => 'Facebook' + 'facebook' => array( 'url' => 'http://www.facebook.com/groups/senayan.slims/', + 'text' => 'Facebook' ), - 'twitter' => array('url' => 'http://twitter.com/#!/slims_official', - 'text' => 'Twitter' + 'twitter' => array( 'url' => 'http://twitter.com/#!/slims_official', + 'text' => 'Twitter' ), - 'youtube' => array('url' => 'http://www.youtube.com/user/senayanslims', - 'text' => 'Youtube' + 'youtube' => array( 'url' => 'http://www.youtube.com/user/senayanslims', + 'text' => 'Youtube' ), - 'gihub' => array('url' => 'https://github.com/slims/', - 'text' => 'Github' + 'gihub' => array( 'url' => 'https://github.com/slims/', + 'text' => 'Github' ), - 'forum' => array('url' => 'http://slims.web.id/forum/', - 'text' => 'Forum' + 'forum' => array( 'url' => 'http://slims.web.id/forum/', + 'text' => 'Forum' ) ); @@ -92,6 +91,7 @@ +
    @@ -114,7 +114,13 @@
    -
    + +
    + +
    + +
    +
    @@ -127,7 +133,7 @@ 0) { ?> @@ -136,7 +142,9 @@
    + Fullsite
    +
    diff --git a/template/lightweight/style.css b/template/lightweight/style.css index 1892a84..1115427 100755 --- a/template/lightweight/style.css +++ b/template/lightweight/style.css @@ -183,6 +183,13 @@ select { border-bottom:solid 1px #efefef; } + +.subinfo +{ + background-color: #efefef; + padding:10px; + color:#999999; +} /*----------------------------------------------------------------*/ /* Item Layout */ /*----------------------------------------------------------------*/ @@ -261,15 +268,25 @@ select { padding:5px; } -.keywords, .search +.keywords, +.search, +.biblioMarkFormAction input, +.memberDetail input, +#loginButton, +a.basket, +#memberLogout, +.login_input input, +.memberButton, +.errorBox { - padding: 6px; + padding:5px; border: none; border-radius: 50px; -moz-border-radius: 50px; -webkit-border-radius: 50px; -webkit-appearance: none; outline: 0; + cursor: pointer; } .keywords @@ -293,6 +310,48 @@ select { padding: 6px 15px; } +.biblioMarkFormAction +{ + padding:10px 0px; +} + +.biblioMarkFormAction input, +#loginButton, +a.basket, +#memberLogout, +.memberButton +{ + color: #ffffff; + background: #93d176; + border: solid 1px #75c450; + padding: 8px; +} + +.errorBox +{ + color: #ffffff; + background: #df7569; + border: solid 1px #d64f3f; + padding: 8px; + text-align: center; +} + +.subItem label +{ + font-size:12px; + color:#d16446; +} + +.memberBasketAction +{ + padding:10px 0px; +} + +#memberLogout +{ + padding:4px 7px; + clear: both; +} /*----------------------------------------------------------------*/ /* Detail Layout */ /*----------------------------------------------------------------*/ @@ -313,13 +372,38 @@ select { text-align: right; } -.content h3 +.content h3, .memberInfoHead, .tagline, .fieldLabel { color: #df7568; - font-size:20px; + font-size:16px; letter-spacing: -1px; } +.loginInfo +{ + padding-top:5px; +} + + +/*----------------------------------------------------------------*/ +/* Member Layout */ +/*----------------------------------------------------------------*/ +.memberDetail, .memberLoanList +{ + width:100%; +} +.memberDetail td, .memberLoanList td +{ + padding:3px ; + border-bottom: dotted 1px #999; +} + +.dataListHeader a +{ + color:#333333; + font-weight:bold; +} + /*----------------------------------------------------------------*/ /* Footer Layout */ /*----------------------------------------------------------------*/