mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 04:52:14 +09:00
Fix non-adjustable font in tables
공통 css와 기본 스킨 css에서 <table>의 폰트와 글자 크기 등이 고정되어 있어 사용자가 선택한 폰트와 크기 등이 적용되지 않는 문제 수정 https://xetown.com/questions/1665747
This commit is contained in:
parent
2b83fe75f7
commit
988d50ad0e
2 changed files with 7 additions and 1 deletions
|
|
@ -42,6 +42,9 @@ a img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
table {
|
||||||
|
font: inherit;
|
||||||
|
}
|
||||||
blockquote {
|
blockquote {
|
||||||
padding: 2px 0;
|
padding: 2px 0;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
|
|
|
||||||
|
|
@ -510,6 +510,9 @@
|
||||||
.read_body .xe_content {
|
.read_body .xe_content {
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
|
.read_body .xe_content table {
|
||||||
|
font: inherit;
|
||||||
|
}
|
||||||
.read_footer {
|
.read_footer {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue