Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jbub/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jonsson <dannie92@gmail.com>2017-01-07 00:27:28 +0300
committerJuraj Bubniak <juraj.bubniak@gmail.com>2017-01-07 00:27:28 +0300
commitad7b023bd754778bbf64871fa15b118d37d98673 (patch)
tree7292c659564c0d116e854cfa765cd940ccb8320e
parenta1dec69d7a46d7c5023af11943dc05f44e1e3665 (diff)
Remove border between rows in Github Gist source listings
-rw-r--r--static/dist/styles.css1
-rw-r--r--static/styles/style.scss6
2 files changed, 7 insertions, 0 deletions
diff --git a/static/dist/styles.css b/static/dist/styles.css
index 7dac569..680a6bb 100644
--- a/static/dist/styles.css
+++ b/static/dist/styles.css
@@ -133,6 +133,7 @@ table tr { border-bottom: 1px dotted #aeadad; }
.post-content:last-child { margin-bottom: 0; }
.post-content .footnote { border-spacing: 0; margin-bottom: 0; }
.post-content .footnote .label + td { width: 100%; }
+.post-content .gist tr { border-bottom: 0; }
.post-footer { margin-top: 5px; }
.post-tags, .share { color: #aeadad; font-size: 14px; }
.post-tags span, .share span { font-weight: 600; }
diff --git a/static/styles/style.scss b/static/styles/style.scss
index ca3efe4..3a0f412 100644
--- a/static/styles/style.scss
+++ b/static/styles/style.scss
@@ -322,6 +322,12 @@ table {
width: 100%;
}
}
+
+ .gist {
+ tr {
+ border-bottom: 0;
+ }
+ }
}
.post-footer { margin-top: 5px; }