Material: Toolbar: transparent styling

Created on 31 Aug 2015  路  5Comments  路  Source: angular/material

I want to have the toolbar at the top of my page be transparent. I've tried adding

.transparent{
  background-color: transparent;
}

with this HTML

<div layout="column" layout-fill>
      <md-toolbar>
          <div class="md-toolbar-tools transparent">
              <span>Drake Developers Club</span>
              <!-- fill up the space between left and right area -->
              <span flex></span>
              <md-button>
                  Right Bar Button
              </md-button>
          </div>
      </md-toolbar>
      <md-content>
          <ng-view></ng-view>
      </md-content>
  </div>

But it seemed to do nothing. Any suggestions would be nice.

Most helpful comment

this is not the best solution but you can force the css and it work.

.transparent{
  background-color: transparent !important;
}

All 5 comments

...
<md-toolbar class="transparent">
<div class="md-toolbar-tools">
...

@Thiago-Medeiros just to mention that your solution doesn't seem to work
would be nice to have a transparent option

this is not the best solution but you can force the css and it work.

.transparent{
  background-color: transparent !important;
}

+1

This seems to work as well if you don't want to use important


.transparent-background {
background-color: rgba(0, 0, 0, 0);
}

Was this page helpful?
0 / 5 - 0 ratings