所以我知道如何使用
更改按钮的颜色.app-Button--Blue {
color: #0277BD;
}
然而,这只能让我在文本模式下更改按钮的颜色。有没有办法让它改变按钮的颜色?
目前使用此功能进行下拉菜单,效果非常好。只想用“图标模式”中的按钮做同样的事情。
.app-Dropdown--Custom .app-Dropdown-Arrow:after {
color: green;
opacity: 1;
}
答案 0 :(得分: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;
}
答案 1 :(得分:0)