mirror of
https://github.com/nextcloud/calendar.git
synced 2024-10-07 16:40:09 +02:00
Fixed sharing input and loading icon position
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
74470ca146
commit
4be87dd126
3 changed files with 12 additions and 3 deletions
|
@ -252,6 +252,11 @@ $color-border: nc-darken($color-main-background, 8%) !default;
|
|||
z-index: 1000;
|
||||
}
|
||||
|
||||
#app-navigation .loader-list::after {
|
||||
left: 50% !important;
|
||||
top: 50% !important;
|
||||
}
|
||||
|
||||
/* ColorPicker overrides. */
|
||||
.colorpicker {
|
||||
display: block;
|
||||
|
@ -435,8 +440,12 @@ input.mailerInput {
|
|||
}
|
||||
|
||||
/* Calendar Sharing */
|
||||
.calendarShares {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
input.shareeInput {
|
||||
width: 89%;
|
||||
width: calc(100% - 12px);
|
||||
margin: 6px;
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
*
|
||||
*/
|
||||
?>
|
||||
<li ng-if="is.loading" class="icon-loading-small"><a></a></li>
|
||||
<li ng-if="is.loading" class="icon-loading-small loader-list"><a></a></li>
|
||||
<li ng-repeat="item in calendarListItems | orderBy: item.calendar.order | calendarListFilter"
|
||||
class="app-navigation-list-item"
|
||||
ng-class="{
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
*
|
||||
*/
|
||||
?>
|
||||
<li ng-if="is.loading" class="icon-loading-small"><a></a></li>
|
||||
<li ng-if="is.loading" class="icon-loading-small loader-list"><a></a></li>
|
||||
<li ng-repeat="item in calendarListItems | orderBy: item.calendar.order | subscriptionListFilter"
|
||||
class="app-navigation-list-item"
|
||||
ng-class="{
|
||||
|
|
Loading…
Reference in a new issue