diff options
-rw-r--r-- | src/html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -432,7 +432,7 @@ mq_html_notebook(gboolean vertical, const gchar *name, guint current_page, ...) len += strlen(i_str); len += strlen("\">\n"); len += strlen(child); - len += strlen("</div>\n<style>div.notebook-") + 1; + len += strlen("</div>\n<style>\ndiv.notebook-") + 1; len += strlen(" > input#_tab_"); len += name_len; len += strlen("_"); @@ -489,7 +489,7 @@ mq_html_notebook(gboolean vertical, const gchar *name, guint current_page, ...) ptr = g_stpcpy(ptr, "\">\n"); ptr = g_stpcpy(ptr, child); g_free(child); - ptr = g_stpcpy(ptr, "</div>\n<style>div.notebook-"); + ptr = g_stpcpy(ptr, "</div>\n<style>\ndiv.notebook-"); ptr = g_stpcpy(ptr, vertical ? "v" : "h"); ptr = g_stpcpy(ptr, " > input#_tab_"); ptr = g_stpcpy(ptr, name); |