有没有办法改变ionic1中<ion-radio>按钮图标的颜色?

时间:2017-05-15 05:49:11

标签: angularjs ionic-framework

我正在使用

-(NSString*) getJavscriptCookieString {
    return  [NSString stringWithFormat: @"document.cookie = '%@=%@'", [self getSessionName], [self getSessionValue]];
}

我尝试将一些css应用于现有的类,但遗憾的是没有任何效果。任何帮助将不胜感激。提前致谢。颜色不适用于未选中的单选按钮图标。 PLease see the image: I want traditional radio button icon, and here it is not working for un-checked icons

2 个答案:

答案 0 :(得分:1)

您应该可以使用color属性来使其工作:

<ion-radio color="secondary"></ion-radio>

如果没有,您可以像在codepen中一样手动设置CSS样式:http://codepen.io/anon/pen/YVvZqp

答案 1 :(得分:1)

If you are using ionic v4 than use this style to change radio button checked color

-->  Radio in popup
.custom-popover {
    ion-radio {
        --color-checked: #75D154;
    }
}

and if you are using simple radio group than paste this style to change the color of radio button

--> Radio Button
ion-radio {`enter code here`
  --color-checked: #75D154;
}