diff --git a/backend/src/Squidex/Areas/IdentityServer/Views/Account/Login.cshtml b/backend/src/Squidex/Areas/IdentityServer/Views/Account/Login.cshtml index 04527ee7e..27180d067 100644 --- a/backend/src/Squidex/Areas/IdentityServer/Views/Account/Login.cshtml +++ b/backend/src/Squidex/Areas/IdentityServer/Views/Account/Login.cshtml @@ -72,7 +72,7 @@ - + } else diff --git a/frontend/src/app/features/administration/routes.ts b/frontend/src/app/features/administration/routes.ts index 33f3ba8d7..26a0e377a 100644 --- a/frontend/src/app/features/administration/routes.ts +++ b/frontend/src/app/features/administration/routes.ts @@ -6,10 +6,10 @@ */ import { Routes } from '@angular/router'; -import { HelpComponent, UsersService } from '@app/shared'; +import { HelpComponent } from '@app/shared'; import { AdministrationAreaComponent } from './administration-area.component'; import { userMustExistGuard } from './guards/user-must-exist.guard'; -import { EventConsumersService, EventConsumersState, UsersState } from './internal'; +import { EventConsumersService, EventConsumersState, UsersService, UsersState } from './internal'; import { EventConsumersPageComponent } from './pages/event-consumers/event-consumers-page.component'; import { RestorePageComponent } from './pages/restore/restore-page.component'; import { UserPageComponent } from './pages/users/user-page.component'; diff --git a/frontend/src/app/features/apps/pages/apps-page.component.html b/frontend/src/app/features/apps/pages/apps-page.component.html index c94de37cb..f7e1241fb 100644 --- a/frontend/src/app/features/apps/pages/apps-page.component.html +++ b/frontend/src/app/features/apps/pages/apps-page.component.html @@ -32,7 +32,7 @@
-
+
diff --git a/frontend/src/app/features/content/shared/forms/array-editor.component.html b/frontend/src/app/features/content/shared/forms/array-editor.component.html index 6318bd658..9b7485aa0 100644 --- a/frontend/src/app/features/content/shared/forms/array-editor.component.html +++ b/frontend/src/app/features/content/shared/forms/array-editor.component.html @@ -11,7 +11,6 @@ [class.first]="isFirst" [class.last]="isLast"> - +
@@ -39,7 +38,6 @@ [class.first]="scroll.viewPortInfo.startIndexWithBuffer + i === 0" [class.last]="scroll.viewPortInfo.startIndexWithBuffer + i === items.length - 1">
; diff --git a/frontend/src/app/features/content/shared/forms/component.component.html b/frontend/src/app/features/content/shared/forms/component.component.html index a7cf481cf..498df29d5 100644 --- a/frontend/src/app/features/content/shared/forms/component.component.html +++ b/frontend/src/app/features/content/shared/forms/component.component.html @@ -6,7 +6,6 @@
-
+
diff --git a/frontend/src/app/theme/_common.scss b/frontend/src/app/theme/_common.scss index 74b6c6727..fd153972c 100644 --- a/frontend/src/app/theme/_common.scss +++ b/frontend/src/app/theme/_common.scss @@ -281,6 +281,14 @@ hr { display: none !important; } +.disabled { + pointer-events: none; + + & { + opacity: .5; + } +} + // Hidden helper (fast *ngIf replacement) .invisible { visibility: hidden; diff --git a/frontend/src/app/theme/_mixins.scss b/frontend/src/app/theme/_mixins.scss index 6470abdda..1c7e82348 100644 --- a/frontend/src/app/theme/_mixins.scss +++ b/frontend/src/app/theme/_mixins.scss @@ -28,7 +28,7 @@ &:disabled, &.disabled { - border: none; + border-color: transparent; border-radius: 0; opacity: .4; }