mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
fix event location UI #1804
This commit is contained in:
parent
f7713c40bc
commit
87f2b4d9ad
@ -182,13 +182,20 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 0.2rem;
|
||||
a {
|
||||
color: @cryptpad_color_link;
|
||||
text-decoration: underline;
|
||||
}
|
||||
span {
|
||||
.event-location {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
a {
|
||||
margin:0.1rem;
|
||||
border-radius: @variables_radius;
|
||||
color: @cryptpad_color_link;
|
||||
text-decoration: underline;
|
||||
&:focus-visible{
|
||||
outline: @variables_focus_style;
|
||||
}
|
||||
}
|
||||
span {
|
||||
overflow: hidden;
|
||||
word-break: break-word;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
@ -409,7 +409,7 @@ define([
|
||||
APP.nextLocationUid = uid;
|
||||
}
|
||||
let location_icon = h('i.fa.fa-map-marker.tui-full-calendar-icon', { 'aria-label': Messages.calendar_loc }, []);
|
||||
return location_icon.outerHTML + str;
|
||||
return `<div class="event-location"> ${location_icon.outerHTML} ${str} </div>`;
|
||||
},
|
||||
popupDetailBody: function(schedule) {
|
||||
var str = schedule.body;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user