forked from science-ation/science-ation
Add schedule database
This commit is contained in:
parent
df3af58ffa
commit
56ce08201a
@ -1 +1 @@
|
||||
176
|
||||
178
|
||||
|
10
db/db.update.178.sql
Normal file
10
db/db.update.178.sql
Normal file
@ -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;
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user