diff options
author | Miquel Lionel <lionel@les-miquelots.net> | 2021-07-18 12:04:08 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2021-07-18 16:03:51 +0100 |
commit | d55095b26b988192a209218fd00af872d9811302 (patch) | |
tree | 9b0055cc402383893696158a1e7977a9c1f7f92b /styles.css | |
parent | de854ac0a8fe72a1b0d0137c351b39de25e0adfe (diff) | |
download | gpigeon-d55095b26b988192a209218fd00af872d9811302.tar.gz gpigeon-d55095b26b988192a209218fd00af872d9811302.zip |
Added file upload support and others fixes
- Added support for file upload from master branch
- Adjusted gpigeonctl.def file for BINPREFIX variable
- Did cleanup of dead variables and functions. Moved
text in their script, no need to do complicated sed.
$text_strings use is justified in gpigeon.cgi, not in
link-tmpl.cgi.
- Fixed seds in the Makefile
- Removed NotifIfDefined function, found a simpler
way for displaying/not displaying notifs.
- Removing $argon2id_hash variable. Unused and has its place
in the mono-user version of gpigeon.
Diffstat (limited to 'styles.css')
-rw-r--r-- | styles.css | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -10,6 +10,7 @@ body{ } h1, #msgbelow{ + display:block; text-align:center; } @@ -40,6 +41,14 @@ h1, #msgbelow{ border:1px solid black; } +#logoutbtn { + display: inline; + float:right; + top: 0; + right: 0; + position:absolute; +} + #msg{ display:block; margin-left:auto; @@ -64,7 +73,7 @@ h1, #msgbelow{ color:red; } -#loginbox { +#loginbox #loginerr{ border:none; margin-right:auto; margin-left:auto @@ -115,6 +124,10 @@ h1, #msgbelow{ font-size:0.8em; } + h1{ + font-size:1.5em; + } + #linkstable th,td{ padding:3px; } @@ -130,6 +143,13 @@ h1, #msgbelow{ line-height:15px; } + #logoutbtn { + float:none; + top:unset; + right:unset; + position:revert; + } + #mailfield{ padding: 3px; } |