-
Notifications
You must be signed in to change notification settings - Fork 757
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dnn10-theme' of https://github.com/david-poindexter/Dnn…
….Platform into dnn10-theme
- Loading branch information
Showing
43 changed files
with
2,010 additions
and
1,140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
compressionLevel: mixed | ||
|
||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
DNN Platform/Connectors/GoogleAnalytics4/GoogleAnalytics4Connector.dnn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
227 changes: 227 additions & 0 deletions
227
DNN Platform/DotNetNuke.Abstractions/Portals/IPortalStyles.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,227 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information | ||
|
||
namespace DotNetNuke.Abstractions.Portals | ||
{ | ||
/// <summary> | ||
/// Provides css custom properties to customize the Dnn UI in the platform, themes and modules for an overall consistent look. | ||
/// </summary> | ||
public interface IPortalStyles | ||
{ | ||
/// <summary> | ||
/// Gets or sets the main shade of the primary color. | ||
/// </summary> | ||
StyleColor ColorPrimary { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the primary color. | ||
/// </summary> | ||
StyleColor ColorPrimaryLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the primary color. | ||
/// </summary> | ||
StyleColor ColorPrimaryDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the primary color shades. | ||
/// </summary> | ||
StyleColor ColorPrimaryContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the secondary color. | ||
/// </summary> | ||
StyleColor ColorSecondary { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the secondary color. | ||
/// </summary> | ||
StyleColor ColorSecondaryLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the secondary color. | ||
/// </summary> | ||
StyleColor ColorSecondaryDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the secondary color shades. | ||
/// </summary> | ||
StyleColor ColorSecondaryContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Tertiary color. | ||
/// </summary> | ||
StyleColor ColorTertiary { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Tertiary color. | ||
/// </summary> | ||
StyleColor ColorTertiaryLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Tertiary color. | ||
/// </summary> | ||
StyleColor ColorTertiaryDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Tertiary color shades. | ||
/// </summary> | ||
StyleColor ColorTertiaryContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Neutral color. | ||
/// </summary> | ||
StyleColor ColorNeutral { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Neutral color. | ||
/// </summary> | ||
StyleColor ColorNeutralLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Neutral color. | ||
/// </summary> | ||
StyleColor ColorNeutralDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Neutral color shades. | ||
/// </summary> | ||
StyleColor ColorNeutralContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Background color. | ||
/// </summary> | ||
StyleColor ColorBackground { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Background color. | ||
/// </summary> | ||
StyleColor ColorBackgroundLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Background color. | ||
/// </summary> | ||
StyleColor ColorBackgroundDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Background color shades. | ||
/// </summary> | ||
StyleColor ColorBackgroundContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Foreground color. | ||
/// </summary> | ||
StyleColor ColorForeground { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Foreground color. | ||
/// </summary> | ||
StyleColor ColorForegroundLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Foreground color. | ||
/// </summary> | ||
StyleColor ColorForegroundDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Foreground color shades. | ||
/// </summary> | ||
StyleColor ColorForegroundContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Info color. | ||
/// </summary> | ||
StyleColor ColorInfo { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Info color. | ||
/// </summary> | ||
StyleColor ColorInfoLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Info color. | ||
/// </summary> | ||
StyleColor ColorInfoDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Info color shades. | ||
/// </summary> | ||
StyleColor ColorInfoContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Success color. | ||
/// </summary> | ||
StyleColor ColorSuccess { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Success color. | ||
/// </summary> | ||
StyleColor ColorSuccessLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Success color. | ||
/// </summary> | ||
StyleColor ColorSuccessDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Success color shades. | ||
/// </summary> | ||
StyleColor ColorSuccessContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Warning color. | ||
/// </summary> | ||
StyleColor ColorWarning { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Warning color. | ||
/// </summary> | ||
StyleColor ColorWarningLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Warning color. | ||
/// </summary> | ||
StyleColor ColorWarningDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Warning color shades. | ||
/// </summary> | ||
StyleColor ColorWarningContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the main shade of the Danger color. | ||
/// </summary> | ||
StyleColor ColorDanger { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the light shade of the Danger color. | ||
/// </summary> | ||
StyleColor ColorDangerLight { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the dark shade of the Danger color. | ||
/// </summary> | ||
StyleColor ColorDangerDark { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a color that contrasts well over the Danger color shades. | ||
/// </summary> | ||
StyleColor ColorDangerContrast { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the controls border radius in pixels. | ||
/// </summary> | ||
double ControlsRadius { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the controls padding in pixels. | ||
/// </summary> | ||
double ControlsPadding { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the base font size in pixels. | ||
/// </summary> | ||
double BaseFontSize { get; set; } | ||
} | ||
} |
Oops, something went wrong.