diff options
author | Andrew Godwin | 2022-12-01 18:46:49 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-01 18:47:04 -0700 |
commit | 6f2f28a3a752cc47d9dc96bda862ed67cd75c9af (patch) | |
tree | 1165843b5c207d9e50028bf48db399df20cf7552 /static | |
parent | a826ae18ea41e44614ce20d5caad9425d76aa60d (diff) | |
download | takahe-6f2f28a3a752cc47d9dc96bda862ed67cd75c9af.tar.gz takahe-6f2f28a3a752cc47d9dc96bda862ed67cd75c9af.tar.bz2 takahe-6f2f28a3a752cc47d9dc96bda862ed67cd75c9af.zip |
Image attachment uploads
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index 9df9c59..637fc2f 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -586,6 +586,25 @@ form img.preview { align-self: center; } +form .uploaded-image { + margin: 0 0 10px 0; + overflow: hidden; +} + +form .uploaded-image img { + max-width: 200px; + max-height: 200px; + float: left; +} + +form .uploaded-image p { + margin-left: 220px; +} + +form .uploaded-image .buttons { + margin-left: 220px; +} + form .buttons { text-align: right; margin: -20px 0 15px 0; @@ -595,6 +614,15 @@ form p+.buttons { margin-top: 0; } +form .button.add-image { + margin: 10px 0 10px 0; +} + +form progress { + display: none; + width: 100%; +} + .right-column form .buttons { margin: 5px 10px 5px 0; } @@ -1062,7 +1090,8 @@ table.metadata td.name { cursor: pointer; } -.copied, .copied:hover { +.copied, +.copied:hover { color: var(--color-highlight); transition: 0.2s; } |