summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-12-10 16:45:16 -0500
committerUnknwon <u@gogs.io>2015-12-10 16:45:16 -0500
commitddcc8d998c93d6e252319a82b116dbe553a919ad (patch)
treed15ae6bd62056fdc6b23b8dbd47892b55ae67115 /public
parent99e9bbef6c291e983ec919406ed50a91b929c34c (diff)
downloadgitea-ddcc8d998c93d6e252319a82b116dbe553a919ad.tar.gz
gitea-ddcc8d998c93d6e252319a82b116dbe553a919ad.zip
fix markdown table header CSS
Diffstat (limited to 'public')
-rwxr-xr-xpublic/css/gogs.css2
-rw-r--r--public/less/_markdown.less4
2 files changed, 3 insertions, 3 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css
index 56a64cfd8e..96ee81209d 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -1303,7 +1303,7 @@ footer .container .links > *:first-child {
.markdown table th,
.markdown table td {
padding: 6px 13px !important;
- border: 1px solid #ddd;
+ border: 1px solid #ddd !important;
}
.markdown table tr {
background-color: #fff;
diff --git a/public/less/_markdown.less b/public/less/_markdown.less
index 7d433dc448..2321724bd3 100644
--- a/public/less/_markdown.less
+++ b/public/less/_markdown.less
@@ -249,8 +249,8 @@
table th,
table td {
- padding:6px 13px !important;
- border:1px solid #ddd;
+ padding: 6px 13px !important;
+ border: 1px solid #ddd !important;
}
table tr {