From 14794fb8e99c0dcf8f6bdde7f612bd13cf1d513c Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Mon, 5 Apr 2021 11:46:40 -0400 Subject: [PATCH] Remove minified CSS --- resources/style.min.css | 1 - src/stagit-index.c | 4 ++-- src/stagit.c | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) delete mode 100644 resources/style.min.css diff --git a/resources/style.min.css b/resources/style.min.css deleted file mode 100644 index 063054a..0000000 --- a/resources/style.min.css +++ /dev/null @@ -1 +0,0 @@ -body{font-size:.8rem;font-family:monospace;color:#ebdbb2;background-color:#282828;max-width:max-content;min-width:min-content}pre{tab-size:4}h1,h2,h3,h4,h5,h6{margin:0}img,h1,h2{vertical-align:middle}img{border:0}a:target{background-color:#eee}a.d,a.h,a.i,a.line{text-decoration:none}#blob{display:block;max-width:100%}article.markup{font-size:15px;border:2px solid #eee;border-radius:10px;font-family:sans-serif;padding:2.5em;margin:2em 0}article.markup code{font-size:.9em;border:1px solid #dbdbdb;background-color:#f7f7f7;padding:0 .3em;border-radius:.3em}article.markup pre code{border:none;background:0 0;padding:0;border-radius:0}article.markup pre{background-color:#f7f7f7;padding:1em;border:1px solid #dbdbdb;border-radius:.3em}article.markup h1{font-size:2.4em;padding-bottom:6px;border-bottom:5px solid #0000000a}article.markup h2{font-size:1.9em;padding-bottom:5px;border-bottom:2px solid #00000014}article.markup h3{font-size:1.5em}article.markup h4{font-size:1.3em}article.markup h5{font-size:1.1em}article.markup h6{font-size:1em}article img{max-width:100%}.linenos{margin-right:0;border-right:1px solid rgb(0 0 0/8%);user-select:none}.linenos a{margin-right:.9em;user-select:none;text-decoration:none}#blob a{color:#777}#blob a:hover{color:#eee;text-decoration:none}a{color:#83a598}table thead td{font-weight:700}table td{padding:0 .4em}#content table td{vertical-align:top;white-space:nowrap}#branches tr:hover td,#tags tr:hover td,#index tr:hover td,#log tr:hover td,#files tr:hover td{background-color:#333}#index tr td:nth-child(2),#tags tr td:nth-child(3),#branches tr td:nth-child(3),#log tr td:nth-child(2){white-space:normal}td.num{text-align:right}.desc{color:#928374}hr{border:0;border-top:1px solid #928374;height:1px}pre{font-family:monospace}pre a.h{color:#fe8019}.A,span.i,pre a.i{color:#b8bb26}.D,span.d,pre a.d{color:#fb4934}pre a.h:hover,pre a.i:hover,pre a.d:hover{text-decoration:none}.url td:nth-child(2){padding-top:.2em;padding-bottom:.9em}.url td:nth-child(2) span{padding:1px 5px;border:1px solid #ebdbb2;border-radius:5px}.url td:nth-child(2) span a{color:#ebdbb2} \ No newline at end of file diff --git a/src/stagit-index.c b/src/stagit-index.c index 8a4d974..545fda3 100644 --- a/src/stagit-index.c +++ b/src/stagit-index.c @@ -72,7 +72,7 @@ writeheader(char *path) "", fp); xmlencode(fp, description, strlen(description)); fprintf(fp, "\n\n", relpath); - fprintf(fp, "\n", relpath); + fprintf(fp, "\n", relpath); fputs("\n\n", fp); fprintf(fp, "\n\n" "
\"\"

", relpath); @@ -223,7 +223,7 @@ main(int argc, char *argv[]) /* copy css */ char cwd[PATH_MAX]; strcpy(cwd, getcwd(cwd, sizeof(cwd))); - cp("/usr/local/share/stagit/style.min.css", strcat(cwd, "/style.min.css")); + cp("/usr/local/share/stagit/style.css", strcat(cwd, "/style.css")); /* cleanup */ git_repository_free(repo); diff --git a/src/stagit.c b/src/stagit.c index 6ffcea5..6e20754 100644 --- a/src/stagit.c +++ b/src/stagit.c @@ -357,7 +357,7 @@ writeheader(FILE *fp, const char *title) fprintf(fp, "\n\n", relpath); fprintf(fp, "\n", name, relpath); - fprintf(fp, "\n", relpath); + fprintf(fp, "\n", relpath); fprintf(fp, "\n", relpath); fputs("\n\n
", fp); fprintf(fp, "\"\"", @@ -1154,7 +1154,7 @@ main(int argc, char *argv[]) strcpy(cwd, getcwd(cwd, sizeof(cwd))); cp("/usr/local/share/stagit/syntax.css", strcat(cwd, "/syntax.css")); strcpy(cwd, getcwd(cwd, sizeof(cwd))); - cp("/usr/local/share/stagit/style.min.css", strcat(cwd, "/style.min.css")); + cp("/usr/local/share/stagit/style.css", strcat(cwd, "/style.css")); /* strip .git suffix */ if (!(strippedname = strdup(name))) -- 2.39.2