所以我知道如何使用改变按钮的颜色
.app-Button--Blue {
color: #0277BD;
}
但是,这只让我在文本模式下更改按钮的颜色。有没有办法让它改变按钮的颜色?
当前将其用于下拉菜单,并且效果很好。只想用“图标模式”中的按钮做同样的事情。
.app-Dropdown--Custom .app-Dropdown-Arrow:after {
color: green;
opacity: 1;
}
所以我知道如何使用改变按钮的颜色
.app-Button--Blue {
color: #0277BD;
}
但是,这只让我在文本模式下更改按钮的颜色。有没有办法让它改变按钮的颜色?
当前将其用于下拉菜单,并且效果很好。只想用“图标模式”中的按钮做同样的事情。
.app-Dropdown--Custom .app-Dropdown-Arrow:after {
color: green;
opacity: 1;
}
无法组合变体,因此您的选择是:
.app-NewPage1-Button1,
.app-NewPage1-Button2 {
color: green;
}
.greenButton {
color: green;
}
.app-Button--GreenIcon {
color: green;
font-family: "Material Icons Extended";
font-feature-settings: 'liga';
font-size: 1.5rem;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
text-transform: lowercase;
-webkit-touch-callout: none;
-webkit-user-drag: none;
user-select: none;
white-space: nowrap;
}