diff options
| author | lowercasename <raphaelkabo@gmail.com> | 2019-08-24 11:48:55 +0100 | 
|---|---|---|
| committer | lowercasename <raphaelkabo@gmail.com> | 2019-08-24 11:48:55 +0100 | 
| commit | fd018d54b38c89426bd7ff9b42203b8475c16db8 (patch) | |
| tree | d4864c92c9a727234c9d6d2dba7961891441671d /public/css | |
| parent | 5c16bf37dca9f9ce1acaf2a9cf65290f40a9d142 (diff) | |
Some tweaks to event page display
Diffstat (limited to 'public/css')
| -rwxr-xr-x | public/css/style.css | 18 | 
1 files changed, 15 insertions, 3 deletions
diff --git a/public/css/style.css b/public/css/style.css index ed755e3..3793e8f 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -140,10 +140,14 @@ body, html {  	margin-bottom: 0.8em;  } -.eventInformation > li > .eventInformationAction { +#copyEventLink {  	margin-left: 5px;  } +.eventInformationAction:not(#copyEventLink) { +	margin-top: 0.25rem; +} +  .commentContainer {  	background: #fafafa;  	border-radius: 5px; @@ -239,11 +243,19 @@ body, html {      height: 2.25rem !important;  } -#removeAttendee { +.attendee-name { +	white-space: nowrap; +	overflow: hidden; +	text-overflow: ""; +	overflow: hidden; +	max-width: 62px; +} + +.remove-attendee {  	color: #fff;  } -#removeAttendee:hover { +.remove-attendee:hover {  	color: #016418;  }  | 
