1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-04 18:22:26 +00:00

Improve styling

This commit is contained in:
Unrud 2020-02-27 14:18:57 +01:00
parent 3c434f4efe
commit a66bf77b48
2 changed files with 12 additions and 2 deletions

View file

@ -94,6 +94,11 @@ BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override }
/* Override changes made by JS to HTMLElement */ /* Override changes made by JS to HTMLElement */
max-height: none !important; max-height: none !important;
} }
table, tr, td, th, thead {
border: 1px solid black;
border-collapse: collapse;
}
} }
@media print { @media print {

View file

@ -180,7 +180,7 @@ img, .tableContainer {
} }
.tableContainer { .tableContainer {
overflow-x: scroll; overflow: auto;
} }
blockquote { blockquote {
@ -200,11 +200,16 @@ blockquote > *:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
div.sourceCode { div.sourceCode, :not(div) > pre {
border-radius: 3px; border-radius: 3px;
background-color: #D2D7E3; background-color: #D2D7E3;
padding: 10px; padding: 10px;
border-left: 3px solid #a40000; border-left: 3px solid #a40000;
overflow: auto;
}
pre > code {
white-space: pre;
} }
:not(pre) > code { :not(pre) > code {