我正在使用
-(NSString*) getJavscriptCookieString {
return [NSString stringWithFormat: @"document.cookie = '%@=%@'", [self getSessionName], [self getSessionValue]];
}
我尝试将一些css应用于现有的类,但遗憾的是没有任何效果。任何帮助将不胜感激。提前致谢。颜色不适用于未选中的单选按钮图标。
答案 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;
}