diff options
author | Mario <mario@mariovavti.com> | 2023-06-18 09:00:54 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-06-18 09:00:54 +0000 |
commit | d9f855b97e2851c7c55ff53a7293c9a667a2bf6e (patch) | |
tree | c719c7351ccbd8c4acc08af15ed0a51c11486c0d /view | |
parent | e275dae6e3fbb90dd66a52b7387108e64de88ed2 (diff) | |
download | volse-hubzilla-d9f855b97e2851c7c55ff53a7293c9a667a2bf6e.tar.gz volse-hubzilla-d9f855b97e2851c7c55ff53a7293c9a667a2bf6e.tar.bz2 volse-hubzilla-d9f855b97e2851c7c55ff53a7293c9a667a2bf6e.zip |
fix bogus html
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 4 | ||||
-rw-r--r-- | view/tpl/cdav_calendar.tpl | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 1696f10bd..3e34fff95 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -255,6 +255,10 @@ input[type=text], textarea { display: none; } +span.spinner { + display: block; +} + .spinner.s { height: 1rem; width: 1rem; diff --git a/view/tpl/cdav_calendar.tpl b/view/tpl/cdav_calendar.tpl index edfa2a422..1bf54103c 100644 --- a/view/tpl/cdav_calendar.tpl +++ b/view/tpl/cdav_calendar.tpl @@ -572,17 +572,17 @@ function exportDate() { <div class="dropdown"> <button id="view_selector" type="button" class="btn btn-outline-secondary btn-sm dropdown-toggle" data-bs-toggle="dropdown"></button> <div class="dropdown-menu"> - <a class="dropdown-item" href="#" onclick="changeView('dayGridMonth'); return false;">{{$month}}</a></li> - <a class="dropdown-item" href="#" onclick="changeView('timeGridWeek'); return false;">{{$week}}</a></li> - <a class="dropdown-item" href="#" onclick="changeView('timeGridDay'); return false;">{{$day}}</a></li> + <a class="dropdown-item" href="#" onclick="changeView('dayGridMonth'); return false;">{{$month}}</a> + <a class="dropdown-item" href="#" onclick="changeView('timeGridWeek'); return false;">{{$week}}</a> + <a class="dropdown-item" href="#" onclick="changeView('timeGridDay'); return false;">{{$day}}</a> <div class="dropdown-divider"></div> - <a class="dropdown-item" href="#" onclick="changeView('listMonth'); return false;">{{$list_month}}</a></li> - <a class="dropdown-item" href="#" onclick="changeView('listWeek'); return false;">{{$list_week}}</a></li> - <a class="dropdown-item" href="#" onclick="changeView('listDay'); return false;">{{$list_day}}</a></li> + <a class="dropdown-item" href="#" onclick="changeView('listMonth'); return false;">{{$list_month}}</a> + <a class="dropdown-item" href="#" onclick="changeView('listWeek'); return false;">{{$list_week}}</a> + <a class="dropdown-item" href="#" onclick="changeView('listDay'); return false;">{{$list_day}}</a> </div> <div class="btn-group"> <button id="prev-btn" class="btn btn-outline-secondary btn-sm" title="{{$prev}}"><i class="fa fa-backward"></i></button> - <button id="today-btn" class="btn btn-outline-secondary btn-sm" title="{{$today}}"><div id="events-spinner" class="spinner s"></div><i class="fa fa-bullseye" style="display: none; width: 1rem;"></i></button> + <button id="today-btn" class="btn btn-outline-secondary btn-sm" title="{{$today}}"><span id="events-spinner" class="spinner s"></span><i class="fa fa-bullseye" style="display: none; width: 1rem;"></i></button> <button id="next-btn" class="btn btn-outline-secondary btn-sm" title="{{$next}}"><i class="fa fa-forward"></i></button> </div> <button id="fullscreen-btn" type="button" class="btn btn-outline-secondary btn-sm" onclick="makeFullScreen();"><i class="fa fa-expand"></i></button> |