Merge "Fix disabled buttons" into stable-2.15

This commit is contained in:
Becky Siegel
2017-10-03 07:59:34 +00:00
committed by Gerrit Code Review

View File

@@ -60,6 +60,10 @@ limitations under the License.
background-color: var(--color-link);
color: #fff;
}
:host([primary][disabled]) paper-button[raised],
:host([disabled]) paper-button {
opacity: .5;
}
:host([link]) paper-button:hover,
:host([link]) paper-button:focus,
paper-button[raised]:hover,
@@ -112,7 +116,7 @@ limitations under the License.
color: #aaa;
}
</style>
<paper-button raised="[[!link]]">
<paper-button raised="[[!link]]" disabled="[[disabled]]">
<content></content>
<i class="downArrow"></i>
</paper-button>