summaryrefslogtreecommitdiff
path: root/web/source/settings/style.css
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2024-08-24 11:49:37 +0200
committerLibravatar GitHub <noreply@github.com>2024-08-24 11:49:37 +0200
commitf23f04e0b1d117be714bf91d5266dab219ed741e (patch)
tree0b3ddd60d51c8729949c3669993910a7f8f32a7b /web/source/settings/style.css
parent[performance] ffmpeg ffprobe wrapper improvements (#3225) (diff)
downloadgotosocial-f23f04e0b1d117be714bf91d5266dab219ed741e.tar.xz
[feature] Interaction requests client api + settings panel (#3215)
* [feature] Interaction requests client api + settings panel * test accept / reject * fmt * don't pin rejected interaction * use single db model for interaction accept, reject, and request * swaggor * env sharting * append errors * remove ErrNoEntries checks * change intReqID to reqID * rename "pend" to "request" * markIntsPending -> mark interactionsPending * use log instead of returning error when rejecting interaction * empty migration * jolly renaming * make interactionURI unique again * swag grr * remove unnecessary locks * invalidate as last step
Diffstat (limited to 'web/source/settings/style.css')
-rw-r--r--web/source/settings/style.css58
1 files changed, 56 insertions, 2 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css
index d34dd0eb7..96ff0ff50 100644
--- a/web/source/settings/style.css
+++ b/web/source/settings/style.css
@@ -1317,10 +1317,10 @@ button.tab-button {
word-break: break-word;
}
- dt, dd {
+ dt, dd, span {
/*
Make sure any fa icons used in keys
- or values are properly aligned.
+ or values etc. are properly aligned.
*/
.fa {
vertical-align: middle;
@@ -1516,6 +1516,60 @@ button.tab-button {
}
}
+
+.interaction-requests-view {
+ .interaction-request {
+ display: flex;
+ flex-direction: column;
+ flex-wrap: nowrap;
+ gap: 0.5rem;
+ color: $fg;
+
+ .info-list {
+ border: none;
+
+ .info-list-entry {
+ grid-template-columns: max(20%, 8rem) 1fr;
+ background: none;
+ padding: 0;
+ }
+ }
+
+ .action-buttons {
+ display: flex;
+ gap: 0.5rem;
+ align-items: center;
+
+ > .mutation-button
+ > button {
+ font-size: 1rem;
+ line-height: 1rem;
+ }
+ }
+ }
+}
+
+.interaction-request-detail {
+ .overview {
+ margin-top: 1rem;
+ }
+
+ h2 {
+ font-size: 1rem;
+ }
+
+ .thread .status .status-info {
+ border-bottom-left-radius: $br;
+ border-bottom-right-radius: $br;
+ }
+
+ .action-buttons {
+ display: flex;
+ gap: 0.5rem;
+ align-items: center;
+ }
+}
+
@media screen and (orientation: portrait) {
.reports .report .byline {
grid-template-columns: 1fr;