Merge branch 'develop' of codeberg.org:calckey/calckey into develop
This commit is contained in:
commit
49abfba71a
|
@ -110,12 +110,13 @@ id: 'aid'
|
||||||
#maxCaptionLength: 1500
|
#maxCaptionLength: 1500
|
||||||
|
|
||||||
# Reserved usernames that only the administrator can register with
|
# Reserved usernames that only the administrator can register with
|
||||||
reservedUsernames:
|
reservedUsernames: [
|
||||||
- root
|
'root',
|
||||||
- admin
|
'admin',
|
||||||
- administrator
|
'administrator',
|
||||||
- me
|
'me',
|
||||||
- system
|
'system'
|
||||||
|
]
|
||||||
|
|
||||||
# Whether disable HSTS
|
# Whether disable HSTS
|
||||||
#disableHsts: true
|
#disableHsts: true
|
||||||
|
|
|
@ -188,6 +188,7 @@ const previewable = (file: misskey.entities.DriveFile): boolean => {
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
pointer-events: none;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: "";
|
content: "";
|
||||||
|
@ -207,6 +208,7 @@ const previewable = (file: misskey.entities.DriveFile): boolean => {
|
||||||
> * {
|
> * {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
|
pointer-events: all;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[data-count="1"] {
|
&[data-count="1"] {
|
||||||
|
|
Loading…
Reference in New Issue