• Recent
    • Tags
    • Popular
    • Register
    • Login

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website

    angular menu color palettes

    Dashboard Designer & Custom AngularJS Pages
    2
    6
    1.9k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A
      atkins.chrisw
      last edited by

      Is there a way to make the menu background be a lite grey instead of white.
      I like it highlighting in lite-blue, but I would like a lite grey backgound as well.

      0_1473389744241_upload-78649611-13cc-4f0b-92a0-93b59b15787f

      1 Reply Last reply Reply Quote 0
      • Jared WiltshireJ
        Jared Wiltshire
        last edited by

        Find the navigation side bar in main.html and change the background color there, try background-100 or background-200
        e.g.

        <md-content flex role="navigation" md-colors="{background: 'background-100'}">
        

        If you need more control of the color insert something like this in your styles.css

        md-content[role=navigation] {
          background-color: lightGrey !important;
        }
        

        Developer at Radix IoT

        1 Reply Last reply Reply Quote 0
        • A
          atkins.chrisw
          last edited by

          Thanks Jared, that worked great!!!

          Is there a way I could have the background image i am using on the index page, stretch out behind the side navigation bar.

          1 Reply Last reply Reply Quote 0
          • Jared WiltshireJ
            Jared Wiltshire
            last edited by

            You could try setting the background on the body element then making the side navigation bar background color transparent or semi transparent (opacity).

            Developer at Radix IoT

            1 Reply Last reply Reply Quote 0
            • A
              atkins.chrisw
              last edited by

              Jared. I did this.

              main.css
              html {
              font-size: 62.5%;
              line-height: 1.4;
              }

              body {
              font-size: 1.6rem;
              background-image: url(/modules/dashboards/web/vitalimages/vitalicons/Test3.jpg);

              }

              I don't know where to set it up for the sidenav to be transparent. Do I still try this in the index.html, or do I move to the main.html page?

              Jared WiltshireJ 1 Reply Last reply Reply Quote 0
              • Jared WiltshireJ
                Jared Wiltshire @atkins.chrisw
                last edited by

                @atkins.chrisw
                Add some CSS to your styles file which sets background-color: transparent; on the sidenav element (you may need to add !important as the sidenav may have inline styles I think). Or add md-colors="{background: 'background-A100-0.0'}" to the sidenav element.

                Developer at Radix IoT

                1 Reply Last reply Reply Quote 0
                • First post
                  Last post