0

Where is the border color defined in onsen-ui version 2 css?

I'm talking about the widget defined under the "Segment" section in the documentation.

pashute
  • 3,965
  • 3
  • 38
  • 65

1 Answers1

1

Simple you can add this code in css file:

.ons-css .button-bar__button {
  color: rgba(224, 18, 18, 0.77) !important;
  border: 1px solid rgb(224, 85, 18) !important;
}
Chandra Kumar
  • 4,127
  • 1
  • 17
  • 25
  • I don't know how I missed the border:... rgba... in my css file. – pashute Jul 30 '17 at 14:55
  • Before you seen default border color from `onsen-ui`, and now you can set own color from above code like: rgba(224, 85, 18, 0.77), rgb(244, 233, 20), hex color(#000000) – Chandra Kumar Jul 30 '17 at 14:59