Opened 12 years ago
Closed 12 years ago
#7392 closed enhancement (wontfix)
border-right on middle button on buttonset()
Reported by: | reyx | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.button | Version: | 1.8.13 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have update the line 356 on minified version:
.addClass("ui-corner-right").end().end()
With this:
.addClass("ui-corner-right").end().not(':first, :last').css({'border-right':'none'}).end().end()
To remove extra border on buttonset()
Note: See
TracTickets for help on using
tickets.
This change would result in poor styling for active buttons. Also, it's not correct to define styles in JavaScript.