diff --git a/src/app/theme/sass/conf/conf.scss b/src/app/theme/sass/conf/conf.scss index 4bfc057d..d418df74 100644 --- a/src/app/theme/sass/conf/conf.scss +++ b/src/app/theme/sass/conf/conf.scss @@ -1,3 +1,3 @@ @import 'mixins'; -@import 'colorSchemes/blur'; +@import 'colorSchemes/mint'; @import 'variables'; diff --git a/src/app/theme/sass/skins/_02_transparent.scss b/src/app/theme/sass/skins/_02_transparent.scss deleted file mode 100644 index c052397f..00000000 --- a/src/app/theme/sass/skins/_02_transparent.scss +++ /dev/null @@ -1,39 +0,0 @@ -&.mobile{ - background: none; - .body-bg{ - display: block; - position: fixed; - top: 0; - left: 0; - bottom: 0; - right: 0; - @include main-background(); - background-attachment: inherit; - } -} -.panel.panel-blur { - @include scrollbars(.4em, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.8)); - border-radius: 5px; - color: $default-text; - .panel-heading { - border-bottom: 1px solid rgba(0, 0, 0, 0.12); - box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.12); - } - .panel-body { - } -} -.btn-default { - color: $default; -} -.form-control, .bootstrap-tagsinput input { - @include placeholderStyle($default-text, 0.7); - border: 1px solid $border; - border-radius: 5px; - color: $default-text; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - @include placeholderStyle($default-text, 0.5); -} -.irs-grid-text { - color: $default-text; -} diff --git a/src/app/theme/theme.config.ts b/src/app/theme/theme.config.ts index 11eb5227..9404d4b7 100644 --- a/src/app/theme/theme.config.ts +++ b/src/app/theme/theme.config.ts @@ -9,14 +9,14 @@ export class BaThemeConfig { } private _config() { - this._baConfig.changeTheme({blur: true}); - - this._baConfig.changeColors({ - default: 'rgba(#000000, 0.2)', - defaultText: '#ffffff', - dashboard: { - white: '#ffffff', - }, - }); + // this._baConfig.changeTheme({blur: true}); + // + // this._baConfig.changeColors({ + // default: 'rgba(#000000, 0.2)', + // defaultText: '#ffffff', + // dashboard: { + // white: '#ffffff', + // }, + // }); } }