Nebular theme fonction nb-install-component not working












0














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);
}
}









share|improve this question



























    0














    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);
    }
    }









    share|improve this question

























      0












      0








      0







      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);
      }
      }









      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 18 '18 at 14:22









      Ayoub EL AbassiAyoub EL Abassi

      216




      216
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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],
          })





          share|improve this answer





















            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            0














            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],
            })





            share|improve this answer


























              0














              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],
              })





              share|improve this answer
























                0












                0








                0






                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],
                })





                share|improve this answer












                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],
                })






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 19 '18 at 2:17









                Ayoub EL AbassiAyoub EL Abassi

                216




                216






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?