Merge branch 'develop' of codeberg.org:calckey/calckey into develop

This commit is contained in:
ThatOneCalculator 2023-05-08 13:00:44 -07:00
commit 49abfba71a
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
2 changed files with 9 additions and 6 deletions

View File

@ -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

View File

@ -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"] {