Browse Source

Fix divider on vertical basic button group #1677

pull/1698/merge
jlukic 10 years ago
parent
commit
99a3ba222a
2 changed files with 9 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 8
      src/definitions/elements/button.less

1
RELEASE-NOTES.md

@ -11,6 +11,7 @@
**Bugs**
- **Button** - Fixes formatting for `disabled button` inside `ui buttons`
- **API** - Fixed bug where API would query resource immediately when specifying `on: false`
- **API** - Fixed bug where `$.api('get xhr')` was not correctly returning xhr promise
- *Sticky** - Fixes issue with container size not being set explicitly on rail due to improper method renaming

8
src/definitions/elements/button.less

@ -718,6 +718,14 @@
border-left: none;
}
.ui.basic.vertical.buttons .button {
border-left-width: 0px;
border-top: @basicGroupBorder;
}
.ui.basic.vertical.buttons .button:first-child {
border-top-width: 0px;
}
/*--------------

Loading…
Cancel
Save