* src/plugins/NavWebPage.py: Support side-by-side gallery images

* src/data/main*.css: Support side-by-side gallery images


svn: r5333
This commit is contained in:
Martin Hawlisch
2005-10-18 20:52:57 +00:00
parent dc33238d74
commit d7e373e05a
8 changed files with 47 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2005-10-18 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/plugins/NavWebPage.py: Support side-by-side gallery images
* src/data/main*.css: Support side-by-side gallery images
2005-10-18 Alex Roitman <shura@gramps-project.org>
* src/plugins/CmdRef.py: Use <para> withing the <listitem>.
* doc/graps-manual/C/cmdplug.xml: Update.

View File

@@ -172,6 +172,13 @@ TD.field {
.thumbnail {
margin: 0em 2em 0em 2em;
}
#gallery .thumbnail {
margin: 1em;
float:left;
width:150px;
height:150px;
text-align:center;
}
.thumbnail p {
margin: 0;
padding: 0;

View File

@@ -175,6 +175,13 @@ TD.field {
.thumbnail {
margin: 0em 2em 0em 2em;
}
#gallery .thumbnail {
margin: 1em;
float:left;
width:150px;
height:150px;
text-align:center;
}
.thumbnail p {
margin: 0;
padding: 0;

View File

@@ -189,6 +189,13 @@ TD.field {
.thumbnail {
margin: 0em 2em 0em 2em;
}
#gallery .thumbnail {
margin: 1em;
float:left;
width:150px;
height:150px;
text-align:center;
}
.thumbnail p {
margin: 0;
padding: 0;

View File

@@ -202,6 +202,13 @@ TD.field {
.thumbnail {
margin: 0em 2em 0em 2em;
}
#gallery .thumbnail {
margin: 1em;
float:left;
width:150px;
height:150px;
text-align:center;
}
.thumbnail p {
margin: 0;
padding: 0;

View File

@@ -207,6 +207,13 @@ TD.data {
.thumbnail {
margin: 0em 0em 0em 7em;
}
#gallery .thumbnail {
margin: 1em;
float:left;
width:150px;
height:150px;
text-align:center;
}
.thumbnail p {
margin: 0;
padding: 0;

View File

@@ -194,6 +194,13 @@ SPAN.grampsid {
.thumbnail {
margin: 10px 10% 10px 10%;
}
#gallery .thumbnail {
margin: 1em;
float:left;
width:150px;
height:150px;
text-align:center;
}
.thumbnail P {
margin: 0;
padding: 0;

View File

@@ -370,6 +370,7 @@ class BasePage:
except (IOError,OSError),msg:
WarningDialog(_("Could not add photo to page"),str(msg))
of.write('<br clear="all" />\n')
of.write('</div>\n')
def display_note_object(self,of,noteobj=None):