showArticle -> like-Button
This commit is contained in:
@@ -239,4 +239,48 @@
|
||||
|
||||
.comment-login-hint p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/*
|
||||
Like-Button etc.
|
||||
*/
|
||||
|
||||
.category-and-likes-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.article-view-likes {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.article-view-likes .like-count {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.article-view-likes .login-hint {
|
||||
font-size: 0.8em;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
/* Interaktiver Like/Unlike-Button */
|
||||
.like-toggle-btn {
|
||||
text-decoration: none;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid #bbb;
|
||||
border-radius: 4px;
|
||||
background-color: #f5f5f5;
|
||||
color: #333;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s ease, border-color 0.2s ease;
|
||||
}
|
||||
|
||||
.like-toggle-btn:hover {
|
||||
background-color: #eaeaea;
|
||||
border-color: #999;
|
||||
}
|
||||
Reference in New Issue
Block a user