diff --git a/share/base.css b/share/base.css index b941eb5..f96400e 100644 --- a/share/base.css +++ b/share/base.css @@ -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;} } diff --git a/src/util/StateManager.h b/src/util/StateManager.h index 59a5963..b84f94a 100644 --- a/src/util/StateManager.h +++ b/src/util/StateManager.h @@ -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 << "{";