Compare commits
3 commits
0fa7a15296
...
e681d7be23
Author | SHA1 | Date | |
---|---|---|---|
e681d7be23 | |||
e14c07204a | |||
979f6a3a80 |
4 changed files with 22 additions and 12 deletions
2
build.py
2
build.py
|
@ -9,7 +9,7 @@ name = 'dda-masto-embed'
|
||||||
MODULE = 'not-used'
|
MODULE = 'not-used'
|
||||||
PROJECT_ROOT_PATH = '.'
|
PROJECT_ROOT_PATH = '.'
|
||||||
|
|
||||||
version = "1.0.1-dev"
|
version = "1.0.2-dev"
|
||||||
|
|
||||||
@init
|
@init
|
||||||
def initialize(project):
|
def initialize(project):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "dda-masto-embed",
|
"name": "dda-masto-embed",
|
||||||
"author": "meissa GmbH",
|
"author": "meissa GmbH",
|
||||||
"version": "1.0.1-SNAPSHOT",
|
"version": "1.0.2-SNAPSHOT",
|
||||||
"homepage": "https://github.com/DomainDrivenArchitecture/dda-masto-embed",
|
"homepage": "https://github.com/DomainDrivenArchitecture/dda-masto-embed",
|
||||||
"repository": "https://github.com/DomainDrivenArchitecture/dda-masto-embed",
|
"repository": "https://github.com/DomainDrivenArchitecture/dda-masto-embed",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
|
|
@ -8,7 +8,10 @@
|
||||||
grid: ". post ." / auto auto auto;
|
grid: ". post ." / auto auto auto;
|
||||||
|
|
||||||
font-size: calc(clamp(0.8rem, 19200.75rem - 40000vw, 1.0rem) + max(0.75rem, 0.5rem + 0.5208333vw) - 0.75rem);
|
font-size: calc(clamp(0.8rem, 19200.75rem - 40000vw, 1.0rem) + max(0.75rem, 0.5rem + 0.5208333vw) - 0.75rem);
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
word-break: break-word;
|
||||||
|
|
||||||
.mastodon-post {
|
.mastodon-post {
|
||||||
grid-area: post;
|
grid-area: post;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
|
@ -119,9 +122,10 @@
|
||||||
.mastodon-post-link-info {
|
.mastodon-post-link-info {
|
||||||
grid-area: info;
|
grid-area: info;
|
||||||
grid:
|
grid:
|
||||||
"." "link-title" "."
|
"link-title"
|
||||||
"." "link-description" "."
|
"link-description"
|
||||||
"." "link-url" "." / auto auto auto;
|
"link-url"
|
||||||
|
/ auto;
|
||||||
padding: var(--small);
|
padding: var(--small);
|
||||||
|
|
||||||
.mastodon-post-link-title {
|
.mastodon-post-link-title {
|
||||||
|
@ -131,8 +135,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.mastodon-post-link-description {
|
.mastodon-post-link-description {
|
||||||
color: #383838;
|
|
||||||
grid-area: link-description;
|
grid-area: link-description;
|
||||||
|
color: #383838;
|
||||||
|
padding-bottom: var(--medium);
|
||||||
}
|
}
|
||||||
|
|
||||||
.mastodon-post-link-url {
|
.mastodon-post-link-url {
|
||||||
|
|
|
@ -8,7 +8,10 @@
|
||||||
grid: ". post ." / auto auto auto;
|
grid: ". post ." / auto auto auto;
|
||||||
|
|
||||||
font-size: calc(clamp(0.8rem, 19200.75rem - 40000vw, 1.0rem) + max(0.75rem, 0.5rem + 0.5208333vw) - 0.75rem);
|
font-size: calc(clamp(0.8rem, 19200.75rem - 40000vw, 1.0rem) + max(0.75rem, 0.5rem + 0.5208333vw) - 0.75rem);
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
word-break: break-word;
|
||||||
|
|
||||||
.mastodon-post {
|
.mastodon-post {
|
||||||
grid-area: post;
|
grid-area: post;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
|
@ -119,9 +122,10 @@
|
||||||
.mastodon-post-link-info {
|
.mastodon-post-link-info {
|
||||||
grid-area: info;
|
grid-area: info;
|
||||||
grid:
|
grid:
|
||||||
"." "link-title" "."
|
"link-title"
|
||||||
"." "link-description" "."
|
"link-description"
|
||||||
"." "link-url" "." / auto auto auto;
|
"link-url"
|
||||||
|
/ auto;
|
||||||
padding: var(--small);
|
padding: var(--small);
|
||||||
|
|
||||||
.mastodon-post-link-title {
|
.mastodon-post-link-title {
|
||||||
|
@ -131,8 +135,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.mastodon-post-link-description {
|
.mastodon-post-link-description {
|
||||||
color: #383838;
|
|
||||||
grid-area: link-description;
|
grid-area: link-description;
|
||||||
|
color: #383838;
|
||||||
|
padding-bottom: var(--medium);
|
||||||
}
|
}
|
||||||
|
|
||||||
.mastodon-post-link-url {
|
.mastodon-post-link-url {
|
||||||
|
|
Loading…
Reference in a new issue