Skip to content

Commit

Permalink
Merge pull request #198 from leomoon/master
Browse files Browse the repository at this point in the history
Adds msising border for th and table margin
  • Loading branch information
leomoon committed Sep 28, 2024
2 parents 37c08c0 + 95662c9 commit 7963f77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.58
1.0.59
9 changes: 4 additions & 5 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ input::-webkit-input-placeholder{unicode-bidi: plaintext;text-align:start;}

/* fixes long strings making side menu freeze */
h1, h2, h3, h4, p, article ul li, article ol li, td {overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; hyphens: auto;}
/* based on markdown rules, tables should be 100% */
table{width:100%;}
/* font must be defined for international langs to display in monospace */
code, pre {font-family: Consolas, 'Courier New', Courier, monospace;}

Expand Down Expand Up @@ -70,9 +68,10 @@ img.polaroid{width:100%;height:auto;padding:9px;background-color:#ffffff;border:
code{background:#f0f0f0;padding:0 5px;}

/* tables */
table{width:100%;}
td{padding:9px;border:1px solid #999999;}
th{padding:0 9px 0 9px;font-size:0.9rem;font-weight:bold;color:var(--theme-color)}
/* based on markdown rules, tables should be 100% */
table{width:100%;margin:1rem 0 1rem 0;;}
td{padding: 9px; border:1px solid #999999;}
th{padding: 9px; border:1px solid #999999;font-weight:bold;color:var(--theme-color)}

/* input colors */
input:not([type]):focus:not([readonly]),
Expand Down

0 comments on commit 7963f77

Please sign in to comment.