forked from expo/troggle
[svn] Make header scroll with page because Julian said so
This commit is contained in:
parent
5fc891195a
commit
06f7bfa979
@ -236,7 +236,8 @@ class PersonExpedition(TroggleModel):
|
|||||||
class LogbookEntry(TroggleModel):
|
class LogbookEntry(TroggleModel):
|
||||||
date = models.DateField()
|
date = models.DateField()
|
||||||
expedition = models.ForeignKey(Expedition,blank=True,null=True) # yes this is double-
|
expedition = models.ForeignKey(Expedition,blank=True,null=True) # yes this is double-
|
||||||
author = models.ForeignKey(PersonExpedition,blank=True,null=True) # the person who writes it up doesn't have to have been on the trip
|
author = models.ForeignKey(PersonExpedition,blank=True,null=True) # the person who writes it up doesn't have to have been on the trip.
|
||||||
|
# Re: the above- so this field should be "typist" or something, not "author". - AC 15 jun 09
|
||||||
title = models.CharField(max_length=200)
|
title = models.CharField(max_length=200)
|
||||||
cave = models.ForeignKey('Cave',blank=True,null=True)
|
cave = models.ForeignKey('Cave',blank=True,null=True)
|
||||||
place = models.CharField(max_length=100,blank=True,null=True,help_text="Only use this if you haven't chosen a cave")
|
place = models.CharField(max_length=100,blank=True,null=True,help_text="Only use this if you haven't chosen a cave")
|
||||||
|
@ -227,7 +227,7 @@ img.thumbnail {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div#header {
|
div#header {
|
||||||
position:fixed;
|
position:absolute;
|
||||||
left:100px;
|
left:100px;
|
||||||
right:100px;
|
right:100px;
|
||||||
top:0;
|
top:0;
|
||||||
@ -427,4 +427,3 @@ a.deletelink:link, a.deletelink:visited {
|
|||||||
a.deletelink:hover {
|
a.deletelink:hover {
|
||||||
color: #993333;
|
color: #993333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user