Is there a way to use a CSS external file to change the color of the selection Bar in paper-tab component that works either in Safari and Firefox?
I've tried with the following settings that work on Chrome but not with the other Browsers
Thanks for you precious help.
paper-tabs.pink paper-tab::shadow #ink {
color: #ff4081;
-moz-column-rule-color: #ff4081;
-webkit-column-rule-color: #ff4081;
}
paper-tabs.pink {
color: #ff4081;
-moz-column-rule-color: #ff4081;
-webkit-column-rule-color: #ff4081;
}
paper-tabs::shadow paper-ripple#ink paper-tab::shadow #ink {
background-color: #ff4081;
-moz-column-rule-color: #ff4081;
-webkit-column-rule-color: #ff4081;
}
paper-tabs::shadow #selectionBar {
background-color: #ff4081;
-moz-column-rule-color: #ff4081;
-webkit-column-rule-color: #ff4081;
}