Nebular theme fonction nb-install-component not working
I have a problem in using nebular theme in other component
I have used it in other component and it worked very well but in other component is doesn't work
this is my code
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
this is my scss file
@import '../../../@theme/styles/themes';
@include nb-install-component() {
$color_1: #555;
$color_2: nb-theme(color-fg-text);
$color_3: #000;
$color_4: #999;
$color_5: #ccc;
.disabled {
cursor: default !important;
color: $color_2;
background: #fbefef;
}
.highlight {
color: $color_2;
}
}
When i remove the @include nb-install-component the style work but without using global colors and if i use nb-install-component the style doesn't work at all
please tell me if i have any mistakes in this
even thought that i used the same method here
@Component({
selector: 'ngx-file-uploader',
templateUrl: './ngx-file-uploader.component.html',
styleUrls: ['../scss/ngx-file-uploader.component.scss'],
})
My sass file
@import './../../../@theme/styles/themes';
@include nb-install-component() {
.drop-zone {
height: 100px;
font-size: nb-theme(form-control-font-size);
box-shadow: nb-theme(card-shadow);
font-weight: nb-theme(card-font-weight);
border: nb-theme(card-border-width) nb-theme(card-border-type) nb-theme(card-border-color);
border-radius: nb-theme(card-border-radius);
background: nb-theme(card-bg);
color: nb-theme(card-fg-text);
margin-bottom: nb-theme(card-margin);
margin-top: nb-theme(card-margin);
}
.content {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.over {
background-color: nb-theme(color-bg-active);
}
}
angular sass nebular
add a comment |
I have a problem in using nebular theme in other component
I have used it in other component and it worked very well but in other component is doesn't work
this is my code
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
this is my scss file
@import '../../../@theme/styles/themes';
@include nb-install-component() {
$color_1: #555;
$color_2: nb-theme(color-fg-text);
$color_3: #000;
$color_4: #999;
$color_5: #ccc;
.disabled {
cursor: default !important;
color: $color_2;
background: #fbefef;
}
.highlight {
color: $color_2;
}
}
When i remove the @include nb-install-component the style work but without using global colors and if i use nb-install-component the style doesn't work at all
please tell me if i have any mistakes in this
even thought that i used the same method here
@Component({
selector: 'ngx-file-uploader',
templateUrl: './ngx-file-uploader.component.html',
styleUrls: ['../scss/ngx-file-uploader.component.scss'],
})
My sass file
@import './../../../@theme/styles/themes';
@include nb-install-component() {
.drop-zone {
height: 100px;
font-size: nb-theme(form-control-font-size);
box-shadow: nb-theme(card-shadow);
font-weight: nb-theme(card-font-weight);
border: nb-theme(card-border-width) nb-theme(card-border-type) nb-theme(card-border-color);
border-radius: nb-theme(card-border-radius);
background: nb-theme(card-bg);
color: nb-theme(card-fg-text);
margin-bottom: nb-theme(card-margin);
margin-top: nb-theme(card-margin);
}
.content {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.over {
background-color: nb-theme(color-bg-active);
}
}
angular sass nebular
add a comment |
I have a problem in using nebular theme in other component
I have used it in other component and it worked very well but in other component is doesn't work
this is my code
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
this is my scss file
@import '../../../@theme/styles/themes';
@include nb-install-component() {
$color_1: #555;
$color_2: nb-theme(color-fg-text);
$color_3: #000;
$color_4: #999;
$color_5: #ccc;
.disabled {
cursor: default !important;
color: $color_2;
background: #fbefef;
}
.highlight {
color: $color_2;
}
}
When i remove the @include nb-install-component the style work but without using global colors and if i use nb-install-component the style doesn't work at all
please tell me if i have any mistakes in this
even thought that i used the same method here
@Component({
selector: 'ngx-file-uploader',
templateUrl: './ngx-file-uploader.component.html',
styleUrls: ['../scss/ngx-file-uploader.component.scss'],
})
My sass file
@import './../../../@theme/styles/themes';
@include nb-install-component() {
.drop-zone {
height: 100px;
font-size: nb-theme(form-control-font-size);
box-shadow: nb-theme(card-shadow);
font-weight: nb-theme(card-font-weight);
border: nb-theme(card-border-width) nb-theme(card-border-type) nb-theme(card-border-color);
border-radius: nb-theme(card-border-radius);
background: nb-theme(card-bg);
color: nb-theme(card-fg-text);
margin-bottom: nb-theme(card-margin);
margin-top: nb-theme(card-margin);
}
.content {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.over {
background-color: nb-theme(color-bg-active);
}
}
angular sass nebular
I have a problem in using nebular theme in other component
I have used it in other component and it worked very well but in other component is doesn't work
this is my code
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
this is my scss file
@import '../../../@theme/styles/themes';
@include nb-install-component() {
$color_1: #555;
$color_2: nb-theme(color-fg-text);
$color_3: #000;
$color_4: #999;
$color_5: #ccc;
.disabled {
cursor: default !important;
color: $color_2;
background: #fbefef;
}
.highlight {
color: $color_2;
}
}
When i remove the @include nb-install-component the style work but without using global colors and if i use nb-install-component the style doesn't work at all
please tell me if i have any mistakes in this
even thought that i used the same method here
@Component({
selector: 'ngx-file-uploader',
templateUrl: './ngx-file-uploader.component.html',
styleUrls: ['../scss/ngx-file-uploader.component.scss'],
})
My sass file
@import './../../../@theme/styles/themes';
@include nb-install-component() {
.drop-zone {
height: 100px;
font-size: nb-theme(form-control-font-size);
box-shadow: nb-theme(card-shadow);
font-weight: nb-theme(card-font-weight);
border: nb-theme(card-border-width) nb-theme(card-border-type) nb-theme(card-border-color);
border-radius: nb-theme(card-border-radius);
background: nb-theme(card-bg);
color: nb-theme(card-fg-text);
margin-bottom: nb-theme(card-margin);
margin-top: nb-theme(card-margin);
}
.content {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.over {
background-color: nb-theme(color-bg-active);
}
}
angular sass nebular
angular sass nebular
asked Nov 18 '18 at 14:22
Ayoub EL AbassiAyoub EL Abassi
216
216
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I found the probleme it was in my component
the scss file was already compiled but due to the encapsulation is disabled the style is not working when i remove this line from my component it worked very well
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
become
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
})
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53361899%2fnebular-theme-fonction-nb-install-component-not-working%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found the probleme it was in my component
the scss file was already compiled but due to the encapsulation is disabled the style is not working when i remove this line from my component it worked very well
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
become
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
})
add a comment |
I found the probleme it was in my component
the scss file was already compiled but due to the encapsulation is disabled the style is not working when i remove this line from my component it worked very well
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
become
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
})
add a comment |
I found the probleme it was in my component
the scss file was already compiled but due to the encapsulation is disabled the style is not working when i remove this line from my component it worked very well
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
become
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
})
I found the probleme it was in my component
the scss file was already compiled but due to the encapsulation is disabled the style is not working when i remove this line from my component it worked very well
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
encapsulation: ViewEncapsulation.None,
})
become
@Component({
selector: 'ngx-my-date-picker',
templateUrl: './ngx-my-date-picker.component.html',
styleUrls: ['./../style/ngx-my-date-picker.scss'],
exportAs: 'mydatepicker',
providers: [LocaleService, UtilService, MYDP_VALUE_ACCESSOR],
})
answered Nov 19 '18 at 2:17
Ayoub EL AbassiAyoub EL Abassi
216
216
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53361899%2fnebular-theme-fonction-nb-install-component-not-working%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown