refactor(app): rename scss files

This commit is contained in:
Dmitry Nehaychik 2017-08-03 13:53:18 +03:00
parent 3f0463cca1
commit cc7a2ca228
44 changed files with 57 additions and 67 deletions

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../styles/themes';
@include nb-install-component() { @include nb-install-component() {
width: 100%; width: 100%;

View file

@ -1,4 +1,4 @@
@import '../../styles/variables'; @import '../../styles/themes';
@include nb-install-component() { @include nb-install-component() {
display: flex; display: flex;

View file

@ -1,4 +1,4 @@
@import '../../styles/variables'; @import '../../styles/themes';
@include nb-install-component() { @include nb-install-component() {
.settings-row { .settings-row {

View file

@ -1,4 +1,4 @@
@import '../../styles/variables'; @import '../../styles/themes';
@include nb-install-root-component() { @include nb-install-root-component() {

View file

@ -1,4 +1,4 @@
@import '../../styles/variables'; @import '../../styles/themes';
@include nb-install-root-component() { @include nb-install-root-component() {

View file

@ -1,4 +1,4 @@
@import '../../styles/variables'; @import '../../styles/themes';
@include nb-install-root-component() { @include nb-install-root-component() {

View file

@ -1,4 +1,4 @@
@import '../../styles/variables'; @import '../../styles/themes';
@include nb-install-root-component() { @include nb-install-root-component() {

View file

@ -1,17 +0,0 @@
@mixin ngx-global-theme() {
// any global, non-component styles go here
}
.nb-theme-cosmic {
}
//global styles for the whole application
[class^='col-'] {
padding: 0 0.75rem;
}
.row {
margin-right: -0.75rem;
margin-left: -0.75rem;
}

View file

@ -1,16 +1,25 @@
// themes - our custom or/and out of the box themes // themes - our custom or/and out of the box themes
@import 'variables'; @import 'themes';
// framework component themes (styles tied to theme variables) // framework component themes (styles tied to theme variables)
@import '~@nebular/theme/styles/globals'; @import '~@nebular/theme/styles/globals';
@import '~@nebular/auth/styles/all'; @import '~@nebular/auth/styles/all';
// custom global styles
@import 'global';
// install the framework and custom global styles // install the framework and custom global styles
@include nb-install() { @include nb-install() {
// framework global styles
@include nb-theme-global(); @include nb-theme-global();
@include nb-auth-global(); @include nb-auth-global();
@include ngx-global-theme();
// other global styles
[class^='col-'] {
padding: 0 0.75rem;
}
.row {
margin-right: -0.75rem;
margin-left: -0.75rem;
}
}; };

View file

@ -1,11 +1,9 @@
// @nebular theming framework // @nebular theming framework
@import '~@nebular/theme/styles/theming'; @import '~@nebular/theme/styles/theming';
// @nebular our of the box themes // @nebular out of the box themes
@import '~@nebular/theme/styles/themes'; @import '~@nebular/theme/styles/themes';
// TODO: rename into themes // which themes you what to enable (empty to enable all)
// which themes you what to enable (empty to enable all - not recommended)
$nb-enabled-themes: (default, light, cosmic); $nb-enabled-themes: (default, light, cosmic);
$nb-themes: nb-register-theme(( $nb-themes: nb-register-theme((

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
} }

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
} }

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
ngx-echarts-pie, ngx-echarts-pie,

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/hero-buttons'; @import '~@nebular/theme/styles/global/bootstrap/hero-buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../@theme/styles/variables'; @import '../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
.solar-card nb-card-header { .solar-card nb-card-header {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@import '~@nebular/theme/components/card/card.component.theme'; @import '~@nebular/theme/components/card/card.component.theme';
@import '~@nebular/theme/styles/global/typography/typography'; @import '~@nebular/theme/styles/global/typography/typography';

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
:host { :host {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
nb-card-header { nb-card-header {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/hero-buttons'; @import '~@nebular/theme/styles/global/bootstrap/hero-buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/hero-buttons'; @import '~@nebular/theme/styles/global/bootstrap/hero-buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@import '~@nebular/theme/components/card/card.component.theme'; @import '~@nebular/theme/components/card/card.component.theme';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/buttons'; @import '~@nebular/theme/styles/global/bootstrap/buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/buttons'; @import '~@nebular/theme/styles/global/bootstrap/buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
text-align: center; text-align: center;

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/buttons'; @import '~@nebular/theme/styles/global/bootstrap/buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
nb-action { nb-action {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/buttons'; @import '~@nebular/theme/styles/global/bootstrap/buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../../@theme/styles/variables'; @import '../../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/buttons'; @import '~@nebular/theme/styles/global/bootstrap/buttons';
@include nb-install-component() { @include nb-install-component() {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {
nb-tabset { nb-tabset {

View file

@ -1,4 +1,4 @@
@import '../../../@theme/styles/variables'; @import '../../../@theme/styles/themes';
@include nb-install-component() { @include nb-install-component() {