From aa9c56eb70fc3202ccd84e72ff4b3ecf8e63500b Mon Sep 17 00:00:00 2001 From: Autumn Welles Date: Sun, 22 Sep 2019 13:11:07 -0400 Subject: Make attendee bubbles flexible width --- public/css/style.css | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'public') diff --git a/public/css/style.css b/public/css/style.css index 122c6ad..e9a0708 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -132,21 +132,15 @@ body, html { } .attendeesList > li { - height: 80px; - width: 80px; border: 4px solid #0ea130; - border-radius: 50%; + border-radius: 2em; + padding: .5em 1em; margin-right: 5px; margin-bottom: 5px; background: #57b76d; color: white; font-size: 0.95em; font-weight: bold; - overflow: hidden; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; } .expand { -- cgit v1.2.3 From 3ea394f87ee5f7db70ac0ce627ac2effdb319ec3 Mon Sep 17 00:00:00 2001 From: lowercasename Date: Sun, 22 Sep 2019 18:55:23 +0100 Subject: Tiny style changes, increased attendee name limit to 30 characters --- public/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public') diff --git a/public/css/style.css b/public/css/style.css index e9a0708..18f9b73 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -136,7 +136,7 @@ body, html { border-radius: 2em; padding: .5em 1em; margin-right: 5px; - margin-bottom: 5px; + margin-bottom: 10px; background: #57b76d; color: white; font-size: 0.95em; -- cgit v1.2.3 From eddfe0389047ac1df5a8194d36c3bde1fcc05866 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Mon, 30 Sep 2019 13:29:32 +0100 Subject: Event group functionality --- public/css/style.css | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'public') diff --git a/public/css/style.css b/public/css/style.css index 18f9b73..2202f8d 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -194,7 +194,7 @@ body, html { /* IMAGE UPLOAD FORM */ -#image-preview { +.image-preview { width: 100%; height: 200px; position: relative; @@ -204,14 +204,14 @@ body, html { border-radius: 5px; border: 1px dashed #ced4da; } -#image-preview input { +.image-preview input { line-height: 200px; font-size: 200px; position: absolute; opacity: 0; z-index: 10; } -#image-preview label { +.image-preview label { position: absolute; z-index: 5; opacity: 0.8; @@ -237,7 +237,8 @@ body, html { } #newEventFormContainer, -#importEventFormContainer { +#importEventFormContainer, +#newEventGroupFormContainer { display: none; } @@ -293,6 +294,10 @@ body, html { display: none; } +#eventGroupData { + display: none; +} + .edit-buttons { text-align: right; } @@ -324,3 +329,12 @@ body, html { margin-top: 0; } } + +.list-group-item-action:hover { + background-color: #d4edda; +} + +.code { + font-family: 'Courier New', Courier, monospace; + overflow-wrap: anywhere; +} \ No newline at end of file -- cgit v1.2.3 From 40ade71e0019bbb59710a2e2e5d74197c47cb1b0 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Mon, 30 Sep 2019 13:57:28 +0100 Subject: Fixes to iCal parser --- public/js/generate-timezones.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'public') diff --git a/public/js/generate-timezones.js b/public/js/generate-timezones.js index 2c7cbf9..01c9989 100644 --- a/public/js/generate-timezones.js +++ b/public/js/generate-timezones.js @@ -343,7 +343,8 @@ const timezones = [ "Pacific/Tarawa", "Pacific/Tongatapu", "Pacific/Wake", - "Pacific/Wallis" + "Pacific/Wallis", + "Etc/UTC" ]; const dateTimeUtc = moment().utc(); -- cgit v1.2.3