Add link on feed items

This commit is contained in:
2020-08-16 22:17:24 +02:00
parent f05cdbf351
commit b40d813634
9 changed files with 128 additions and 52 deletions

View File

@@ -4,13 +4,15 @@ $panel-width: 30%;
$panel-width-max: "400px + 3 * #{$block-spacing}";
//Feed colors
$post-input-bg: #ffffff; //#d9deff;
$post-color: #333; //#323268;
$post-bg: rgba(255,255,255,.8); //#B4BDFF;
$message-color: #326526;
$message-bg: #6DFF58;
$media-color: #333; //#635C28;
$media-bg: rgba(255,255,255,.8); //#F3EC9F;
$post-input-bg: #ffffff; //#d9deff;
$post-color: #333; //#323268;
$post-color-hover: darken($post-color, 10%);
$post-bg: rgba(255,255,255,.8); //#B4BDFF;
$message-color: #326526;
$message-color-hover: darken($message-color, 10%);
$message-bg: #6DFF58;
$media-color: #333; //#635C28;
$media-bg: rgba(255,255,255,.8); //#F3EC9F;
//Settings colors
$title-color: $post-color;
@@ -331,6 +333,13 @@ $legend-color: $post-color;
margin-top: $block-spacing;
}
a {
color: $post-color;
&:hover {
color: $post-color-hover;
}
}
.message {
margin: 0;
}
@@ -353,6 +362,10 @@ $legend-color: $post-color;
&.index {
width: 25%;
.link, .link:visited, .link_copied {
margin-left: 0.5em;
}
}
&.time {
@@ -389,6 +402,9 @@ $legend-color: $post-color;
a {
color: $message-color;
&:hover {
color: $message-color-hover;
}
}
a.drill {