Skip to content

Commit

Permalink
Fix display of RST image target links. Closes #87
Browse files Browse the repository at this point in the history
  • Loading branch information
adamzap committed Mar 11, 2015
1 parent 739de0e commit e217048
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,7 @@

## Master

- Fix display of RST image target links (#87)
- Fix relative path generation (#147)
- Add command line option for print version (#135)
- Add use of '---' as a slide separator to textile files (#163)
Expand Down
4 changes: 4 additions & 0 deletions src/landslide/themes/default/css/screen.css
Expand Up @@ -561,3 +561,7 @@ aside {
z-index: 64;
display: none;
}

.image-reference {
display: inline;
}
4 changes: 4 additions & 0 deletions src/landslide/themes/light/css/screen.css
Expand Up @@ -557,3 +557,7 @@ div.slide div.presenter_notes {
z-index: 64;
display: none;
}

.image-reference {
display: inline;
}
4 changes: 4 additions & 0 deletions src/landslide/themes/tango/css/screen.css
Expand Up @@ -570,3 +570,7 @@ div.slide div.presenter_notes {
z-index: 64;
display: none;
}

.image-reference {
display: inline;
}

0 comments on commit e217048

Please sign in to comment.