Fix table styling for posts
This commit is contained in:
parent
af8ac6c520
commit
2f2259ce8e
|
@ -8,7 +8,7 @@
|
|||
|------|---------|------------|----------|
|
||||
| Notabug Dracula | 1.0.5 | [notabug.io](https://notabug.io) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/notabug-dracula/notabug-dracula.user.css) |
|
||||
| Tildes Compact | 1.0.4 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-compact/tildes-compact.user.css) |
|
||||
| Tildes Dracula | 2.0.4 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-dracula/tildes-dracula.user.css) |
|
||||
| Tildes Dracula | 2.0.5 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-dracula/tildes-dracula.user.css) |
|
||||
| Tildes Monokai | 1.1.4 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-monokai/tildes-monokai.user.css) |
|
||||
|
||||
## Installing
|
||||
|
|
|
@ -183,6 +183,18 @@ body:not(.theme) input,body:not(.theme) textarea,body:not(.theme) .form-input,bo
|
|||
background-color: #282a36;
|
||||
}
|
||||
|
||||
body:not(.theme) th,body.theme-light th,body.theme-dark th,body.theme-black th {
|
||||
border-color: #6272a4;
|
||||
}
|
||||
|
||||
body:not(.theme) td,body.theme-light td,body.theme-dark td,body.theme-black td {
|
||||
border-color: #44475a;
|
||||
}
|
||||
|
||||
body:not(.theme) tbody tr:nth-of-type(n),body.theme-light tbody tr:nth-of-type(n),body.theme-dark tbody tr:nth-of-type(n),body.theme-black tbody tr:nth-of-type(n) {
|
||||
background-color: #282a36;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #8be9fd;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* ==UserStyle==
|
||||
@name Tildes Dracula
|
||||
@namespace tildes.net
|
||||
@version 2.0.4
|
||||
@version 2.0.5
|
||||
@author Bauke
|
||||
@description Dracula theme for Tildes.net
|
||||
@homepageURL https://gitlab.com/Bauke/styles
|
||||
|
@ -194,6 +194,18 @@ body:not(.theme) input,body:not(.theme) textarea,body:not(.theme) .form-input,bo
|
|||
background-color: #282a36;
|
||||
}
|
||||
|
||||
body:not(.theme) th,body.theme-light th,body.theme-dark th,body.theme-black th {
|
||||
border-color: #6272a4;
|
||||
}
|
||||
|
||||
body:not(.theme) td,body.theme-light td,body.theme-dark td,body.theme-black td {
|
||||
border-color: #44475a;
|
||||
}
|
||||
|
||||
body:not(.theme) tbody tr:nth-of-type(n),body.theme-light tbody tr:nth-of-type(n),body.theme-dark tbody tr:nth-of-type(n),body.theme-black tbody tr:nth-of-type(n) {
|
||||
background-color: #282a36;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #8be9fd;
|
||||
}
|
||||
|
|
|
@ -39,6 +39,15 @@ body.theme-black
|
|||
border-color: $comment
|
||||
background-color: $background
|
||||
|
||||
th
|
||||
border-color: $comment
|
||||
|
||||
td
|
||||
border-color: $selection
|
||||
|
||||
tbody tr:nth-of-type(n)
|
||||
background-color: $background
|
||||
|
||||
a
|
||||
color: $cyan
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"options": {
|
||||
"name": "Tildes Dracula",
|
||||
"namespace": "tildes.net",
|
||||
"version": "2.0.4",
|
||||
"version": "2.0.5",
|
||||
"author": "Bauke",
|
||||
"description": "Dracula theme for Tildes.net",
|
||||
"homepageURL": "https://gitlab.com/Bauke/styles",
|
||||
|
|
Loading…
Reference in New Issue