diff options
| author | Bobby <[email protected]> | 2025-07-19 15:22:22 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-07-19 15:22:22 +0530 |
| commit | d31111cf0133b223a8e665e6798b8ae09aa5c8a9 (patch) | |
| tree | 3f4d98333a4c7da4854b7482cdab80802a1dde59 /static/css/main.css | |
| parent | 1d582861feab127bdd588430d4d8374cf1d54fd5 (diff) | |
| download | imageboard-d31111cf0133b223a8e665e6798b8ae09aa5c8a9.tar.xz imageboard-d31111cf0133b223a8e665e6798b8ae09aa5c8a9.zip | |
post metadata update via edit
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 92 |
1 files changed, 90 insertions, 2 deletions
diff --git a/static/css/main.css b/static/css/main.css index cdd39e5..640303c 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -198,6 +198,7 @@ main { .itext, input[type="text"], +textarea, input[type="email"], input[type="password"], input[type="number"], @@ -210,6 +211,7 @@ input[type="url"] { .itext:focus, input[type="text"]:focus, +textarea:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, @@ -219,6 +221,30 @@ input[type="url"]:focus { outline: none; } +select { + background-color: #1a0033; + border: 1px solid #9999ff; + color: #ccccff; + padding: 3px 5px; + width: 100%; +} + +select:focus { + border-color: #ff99cc; + background-color: #260040; + outline: none; +} + +option { + background-color: #1a0033; + color: #ccccff; +} + +option:hover { + background-color: #260040; + color: #ff99cc; +} + input[type="button"], button[type="button"], input[type="submit"] { @@ -352,7 +378,15 @@ footer::before { gap: 4px; } -.fg-sub small { +.fg-sub-radio { + display: flex; + flex-direction: row; + gap: 8px; + align-items: center; +} + +.fg-sub small, +.fg-sub-radio small { color: #ff99cc; } @@ -363,6 +397,7 @@ footer::before { } .fg-sub input, +.fg-sub textarea, .fg-sub.itext { border-style: double; border-width: 3px; @@ -370,6 +405,13 @@ footer::before { width: 100%; } +.fg-sub select { + border-style: double; + border-width: 3px; + border-color: #9999ff; + width: 100%; +} + .fbtngrp { margin: 8px 0 0 0; } @@ -400,6 +442,13 @@ footer::before { text-align: center; } +.info { + background-color: #001a33; + border: 1px solid #0066cc; + padding: 8px; + margin-bottom: 16px; +} + .upload-drag-box { border: 2px dashed #9999ff; background-color: #1a0033; @@ -765,6 +814,10 @@ footer::before { color: #ff6b6b; } +.post-rating>a { + color: inherit; +} + .post-rating.Safe { color: #4caf50; } @@ -886,7 +939,6 @@ footer::before { .post-detail-label { color: #cccccc; - white-space: nowrap; } .post-favourite-actions { @@ -920,4 +972,40 @@ footer::before { width: 16px; height: 16px; fill: currentColor; +} + +.edit-post { + display: flex; + flex-direction: row; + height: 100%; + align-items: stretch; +} + +.edit-main { + flex: 1; + padding-right: 8px; + border-right: 1px solid #4d4d80; +} + +.edit-sidebar { + width: 264px; + flex-shrink: 0; + padding-left: 8px; + height: 100%; + display: flex; + flex-direction: column; + gap: 8px; +} + +.edit-sidebar>.post-detail-item { + align-items: flex-start; +} + +.edit-sidebar>.post-detail-item>.post-detail-label { + width: 72px; + flex-shrink: 0; +} + +.edit-sidebar>.post-detail-item>.post-detail-value { + word-break: break-all; }
\ No newline at end of file |
