From 56ce08201a654a09a4697eeec4a451e36d516546 Mon Sep 17 00:00:00 2001 From: james Date: Thu, 10 Jun 2010 20:37:11 +0000 Subject: [PATCH] Add schedule database --- db/db.code.version.txt | 2 +- db/db.update.178.sql | 10 ++++++++++ theme/default/sfiab.css | 8 +++++++- 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 db/db.update.178.sql diff --git a/db/db.code.version.txt b/db/db.code.version.txt index 1057e9a..f84d24e 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -176 +178 diff --git a/db/db.update.178.sql b/db/db.update.178.sql new file mode 100644 index 0000000..e530112 --- /dev/null +++ b/db/db.update.178.sql @@ -0,0 +1,10 @@ +CREATE TABLE `sfiab`.`schedule` ( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , + `conferences_id` INT NOT NULL , + `locations_id` INT NOT NULL , + `events_id` INT NOT NULL , + `hour` INT NOT NULL , + `minute` INT NOT NULL , + `duration` INT NOT NULL , + `date` DATE NOT NULL +) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci; diff --git a/theme/default/sfiab.css b/theme/default/sfiab.css index 764454f..e845ddd 100644 --- a/theme/default/sfiab.css +++ b/theme/default/sfiab.css @@ -524,10 +524,16 @@ ul.conferencenav li a:hover { } .scheduleevent { - border: 1px solid red; + position: absolute; + border: 2px solid red; background: orange; width: 150px; margin:0; + width: 148px; + z-index: 1000; + display: none; + overflow: auto; + font-size: 0.75em; } #scheduleeventeditor {