mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
better links
This commit is contained in:
parent
31f384377a
commit
8e93ff9f51
3 changed files with 28 additions and 1 deletions
|
@ -239,7 +239,7 @@ def save_post(form, post: Post):
|
|||
if file_ext.lower() == '.heic':
|
||||
register_heif_opener()
|
||||
|
||||
#Image.MAX_IMAGE_PIXELS = 89478485
|
||||
Image.MAX_IMAGE_PIXELS = 89478485
|
||||
|
||||
# resize if necessary
|
||||
img = Image.open(final_place)
|
||||
|
|
|
@ -401,6 +401,18 @@ body {
|
|||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: solid 2px transparent;
|
||||
}
|
||||
|
||||
#outer_container a:not(.btn):hover, footer a:not(.btn):hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
#outer_container a:not(.btn):active, footer a:not(.btn):active {
|
||||
border: dotted 2px #0A5CA0;
|
||||
}
|
||||
|
||||
div.navbar {
|
||||
border-bottom: 1px solid rgba(0, 40, 100, 0.12);
|
||||
min-height: 60px;
|
||||
|
|
|
@ -8,6 +8,21 @@ body {
|
|||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: solid 2px transparent;
|
||||
}
|
||||
|
||||
#outer_container, footer {
|
||||
a:not(.btn):hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:not(.btn):active {
|
||||
border: dotted 2px #0A5CA0;
|
||||
}
|
||||
}
|
||||
|
||||
div.navbar {
|
||||
border-bottom: 1px solid rgba(0, 40, 100, 0.12);
|
||||
min-height: 60px;
|
||||
|
|
Loading…
Reference in a new issue