1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 01:28:39 +00:00

ugly fix for FF

This commit is contained in:
Lu Wang 2013-02-06 20:52:53 +08:00
parent 3789842b47
commit 3bc732ae0f
2 changed files with 5 additions and 5 deletions

View File

@ -163,8 +163,11 @@ span {
page-break-inside:avoid;
}
@-moz-document url-prefix() {
/* fix page truncation for Firefox */
.d {overflow:visible;}
/* fix page truncation for FireFox */
.d {
overflow:visible;
border:1px solid #FFFFFF;
}
.p {overflow:visible;}
.b {overflow:visible;}
}

View File

@ -66,9 +66,6 @@ public:
}
void dump_print_css(std::ostream & out, double scale) {
//debug
std::cout << imp->get_css_class_name << ' ' << scale << std::endl;
for(auto iter = value_map.begin(); iter != value_map.end(); ++iter)
{
out << "." << imp->get_css_class_name() << iter->second << "{";