From c390a0c32720f6afe852bc7a3a3f64c3afe9e401 Mon Sep 17 00:00:00 2001 From: r Date: Fri, 11 Feb 2022 11:18:02 +0000 Subject: Add lists --- static/style.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 4e2a196..10aff68 100644 --- a/static/style.css +++ b/static/style.css @@ -290,6 +290,10 @@ textarea { display: inline; } +.p-0 { + padding: 0; +} + .btn-link { border: none; outline: none; @@ -422,9 +426,6 @@ img.emoji { margin-right: 2px; } -.user-list-container { -} - .user-list-item { overflow: auto; margin: 0 0 12px 0; @@ -441,6 +442,10 @@ img.emoji { overflow: auto; } +.user-list-action { + margin: 0 12px; +} + #settings-form { margin: 8px 0; } -- cgit v1.2.3 From 153f4a492b92c9c25aa3bcb3d8ee1b8a72de6d69 Mon Sep 17 00:00:00 2001 From: r Date: Wed, 30 Mar 2022 17:06:19 +0000 Subject: Set max size for embedded images in profile description --- static/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 10aff68..2cb15b0 100644 --- a/static/style.css +++ b/static/style.css @@ -286,6 +286,14 @@ textarea { margin: 0; } +.user-profile-decription img { + height: auto; + width: auto; + max-height: 240px; + max-width: 280px; + object-fit: contain; +} + .d-inline { display: inline; } -- cgit v1.2.3 From 1661219ab6e3c12b29d676d57ce452feb81d0dd9 Mon Sep 17 00:00:00 2001 From: r Date: Tue, 10 May 2022 17:34:49 +0000 Subject: Fix CSS inconsistencies --- static/style.css | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css index 2cb15b0..19cceab 100644 --- a/static/style.css +++ b/static/style.css @@ -194,11 +194,14 @@ textarea { border-color: #777777; } -.notification-container.favourite .status-container, -.notification-container.reblog .status-container { +.notification-container .status-container { opacity: 0.6; } +.notification-container.mention .status-container { + opacity: unset; +} + .notification-info-text span { vertical-align: middle; } @@ -277,7 +280,8 @@ textarea { margin-top: 2px; } -.user-profile-decription { +.user-profile-decription, +.user-fields { overflow-wrap: break-word; margin: 8px 0; } @@ -366,10 +370,6 @@ a:hover, display: none; } -.post-form-field>* { - vertical-align: middle; -} - .emoji-item-container { width: 220px; display: inline-block; @@ -462,10 +462,6 @@ img.emoji { margin: 4px 0; } -.settings-form-field>* { - vertical-align: middle; -} - #settings-form button[type=submit] { margin-top: 8px; } -- cgit v1.2.3