mirror of
https://github.com/welpo/tabi.git
synced 2025-10-11 07:46:15 +02:00

- add color and background color variables for consistent styling
- update margins and padding for better layout
♻️ refactor(css): migrate and rename webmention CSS to SCSS
- move webmention.css to sass/parts/_webmention.scss
- remove unused webmention.min.css
- update template to remove old stylesheet link
96 lines
No EOL
1.7 KiB
SCSS
96 lines
No EOL
1.7 KiB
SCSS
#webmentions {
|
|
margin: 0;
|
|
position: relative;
|
|
z-index: 100;
|
|
line-height: 1.2em;
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
#webmentions .comments {
|
|
max-height: 20em;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
font-size: 80%;
|
|
}
|
|
|
|
#webmentions h2 {
|
|
font-size: medium;
|
|
margin: 0;
|
|
margin-top: 1.4em;
|
|
margin-bottom: 1.2em;
|
|
padding: 2px;
|
|
background: var(--background-color);
|
|
}
|
|
|
|
#webmentions .reacts img {
|
|
margin: 3px -1ex 1px 0;
|
|
display: inline;
|
|
}
|
|
|
|
#webmentions img.missing {
|
|
background: white;
|
|
border: dashed black 1px;
|
|
}
|
|
|
|
#webmentions ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 4px;
|
|
}
|
|
|
|
#webmentions li {
|
|
text-indent: -1em;
|
|
padding-left: 1em;
|
|
}
|
|
|
|
#webmentions a.reaction {
|
|
position: relative;
|
|
text-decoration: none;
|
|
text-shadow: 0px 0px 3px white;
|
|
margin-right: 0;
|
|
letter-spacing: -1ex;
|
|
margin-right: 1ex;
|
|
}
|
|
|
|
#webmentions a.source {
|
|
margin-right: 1ex;
|
|
text-decoration: none;
|
|
color: var(--primary-color);
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
#webmentions a.reaction img {
|
|
max-height: 1.3em;
|
|
display: inline;
|
|
width: auto;
|
|
margin-right: -1ex;
|
|
border-radius: 25%;
|
|
}
|
|
|
|
#webmentions a.reaction sub {
|
|
font-size: 50%;
|
|
}
|
|
|
|
#webmentions .comments li {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#webmentions .comments li .text {
|
|
color: var(--meta-color);
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
text-wrap: wrap;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
#webmentions .comments li .name {
|
|
color: var(--meta-color);
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
#webmentions .comments li .emoji {
|
|
display: none;
|
|
} |