Fix style for table on night and sepia themes

This commit is contained in:
Samy Pessé
2014-08-10 19:13:27 -07:00
parent f605f0b6c8
commit fc113ce0c3
2 changed files with 33 additions and 1 deletions
File diff suppressed because one or more lines are too long
+32
View File
@@ -401,6 +401,22 @@
@import "./highlight/sepia.less";
}
table {
th, td {
border-color: darken(#fdf6e3, 25%);
}
tr {
background: #fdf6e3;
color: inherit;
border-color: #444;
}
tr:nth-child(2n) {
background-color: darken(#fdf6e3, 5%);
}
}
}
.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal {
@@ -413,4 +429,20 @@
@import "./highlight/night.less";
}
table {
th, td {
border-color: #444;
}
tr {
background-color: black;
color: #eaeaea;
border-color: #444;
}
tr:nth-child(2n) {
background-color: #222;
}
}
}