fix: table shows abnormal (#142 #181)

pull/230/head
Seaton Jiang 2020-03-16 11:26:51 +08:00
parent c11ceeac1d
commit 1b789393d3
2 changed files with 8 additions and 2 deletions

View File

@ -930,7 +930,8 @@ button:focus {
display: table;
overflow: auto;
width: 100%;
word-break: keep-all;
table-layout: fixed;
word-break: break-all;
}
.k-main .details .article .content table th,
@ -1058,6 +1059,11 @@ button:focus {
font-size: 15px;
}
.k-main .details .article .content table {
display: block;
word-break: keep-all;
}
.k-main .details .article .header .meta span:not(:first-child) {
margin-left: 5px;
}

File diff suppressed because one or more lines are too long