Angular Material Button Disable Style Change

15,418

the css should be

.md-button.md-raised.md-primary.formPage:not([disabled])

see http://jsfiddle.net/apxbutmf/

Share:
15,418
Mad-D
Author by

Mad-D

Updated on June 05, 2022

Comments

  • Mad-D
    Mad-D almost 2 years

    form.html

    <md-button class="md-raised md-primary pull-right formPage" ng-disabled="formPage.$invalid" ng-click ="submit()">SAVE</md-button>
    

    css

    .md-button.md-raised.md-primary.formPage {
        position: right !important;
        color: #FFFFFF;
        background-color:#008cba;    
    }
    

    Button is disabled but it has custom color from my css. How can i show the default disable style or maybe change button color if it is disable ?

    Jsfiddle