mirror of https://github.com/Squidex/squidex.git
18 changed files with 215 additions and 60 deletions
@ -0,0 +1,14 @@ |
|||||
|
// ==========================================================================
|
||||
|
// SquidexCoreModel.cs
|
||||
|
// Squidex Headless CMS
|
||||
|
// ==========================================================================
|
||||
|
// Copyright (c) Squidex Group
|
||||
|
// All rights reserved.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
namespace Squidex.Domain.Apps.Core |
||||
|
{ |
||||
|
public static class SquidexCoreModel |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,14 @@ |
|||||
|
// ==========================================================================
|
||||
|
// SquidexEvents.cs
|
||||
|
// Squidex Headless CMS
|
||||
|
// ==========================================================================
|
||||
|
// Copyright (c) Squidex Group
|
||||
|
// All rights reserved.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
namespace Squidex.Domain.Apps.Events |
||||
|
{ |
||||
|
public static class SquidexEvents |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,14 @@ |
|||||
|
// ==========================================================================
|
||||
|
// SquidexInfrastructure.cs
|
||||
|
// Squidex Headless CMS
|
||||
|
// ==========================================================================
|
||||
|
// Copyright (c) Squidex Group
|
||||
|
// All rights reserved.
|
||||
|
// ==========================================================================
|
||||
|
|
||||
|
namespace Squidex.Infrastructure |
||||
|
{ |
||||
|
public static class SquidexInfrastructure |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
@ -1,10 +1,26 @@ |
|||||
@import '_vars'; |
@import '_vars'; |
||||
@import '_mixins'; |
@import '_mixins'; |
||||
|
|
||||
.failed { |
sqx-toggle { |
||||
color: $color-theme-error; |
display: inline-block; |
||||
} |
} |
||||
|
|
||||
.success { |
.table-items { |
||||
color: $color-theme-green; |
tbody { |
||||
|
td { |
||||
|
padding-bottom: .5rem; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.step-if { |
||||
|
padding-left: 1.25rem; |
||||
|
padding-right: 0; |
||||
|
text-align: left; |
||||
|
} |
||||
|
|
||||
|
.step-then { |
||||
|
padding-left: 0; |
||||
|
padding-right: 0; |
||||
|
text-align: center; |
||||
} |
} |
||||
Loading…
Reference in new issue