diff options
author | Raphael <mail@raphaelkabo.com> | 2024-02-06 09:18:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 09:18:19 +0000 |
commit | 9e249e508ead933cb26eba597003a3b4764e27a5 (patch) | |
tree | ff9c1b7784b436002a2ebfa86779c4e25ecf64b1 /public | |
parent | ecff04b132db687f67d9a6cda2d1c13831c45394 (diff) | |
parent | e40ef51f26d04620b85fcbb15b5c9de857fcbf7b (diff) |
Merge pull request #129 from lowercasename/rk/fix-pleroma
Pleroma federation fixes and hidden RSVP functionality
Diffstat (limited to 'public')
-rwxr-xr-x | public/css/style.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css index d50ab11..dd59d6b 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -187,6 +187,28 @@ body, html { font-weight: bold; } +.attendeesList > li.hidden-attendee { + border: 4px solid #ccc; + background: #eee; +} + +.attendeesList > li.hidden-attendee a { + color: #555; +} + +.hidden-attendees-message { + display: inline-block; + border: 4px solid #ccc; + text-align: center; + border-radius: 2em; + padding: 0.5em 1em; + background: #eee; + color: #555; + font-size: 0.95em; + font-weight: bold; + margin: 0; +} + .expand { -webkit-transition: height 0.2s; -moz-transition: height 0.2s; @@ -321,6 +343,10 @@ body, html { color: #fff; } +li.hidden-attendee .attendee-name { + color: #555; +} + .remove-attendee { color: #fff; } |