Skip to content

Commit

Permalink
Adds #2808, vertical divider can now be used multiple times in a column
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Aug 10, 2015
1 parent c9c81e0 commit a82cead
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
- **Menu** - Added new `tabular` menu types, `right tabular`, `bottom tabular`, added many new `tabular` menu variables for customizing
- **Label** - Added `basic` label variation, useful for item counts
- **Button** - Added `labeled button` variation for display a count next to a button.

- **Divider** - Vertical divider can now be used multiple times in a single column row (not just 50/50 split). #2808

**Additional Enhancements**
- **Menu** - `text menu` now uses padding for hitboxes to make target area for links larger
- **List** - Lists can now be `right floated` or `left floated`
- **Dropdown** - Dropdown arrow now has a variable `@dropdownArrowSize`, and is slightly smaller than previously
- **Dropdown** - Dropdown `@arrowSize` will now automatically reposition itself if size is changed with variable


**[Reported Bugs](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A2.1.0+is%3Aclosed)**
- **Container** - Fix issue with `fluid container` being `100% + gutter` at mobile resolution (causing overflow)
- **Modal** - Fix autofocus setting in modal not working due to improper selector #2737
- **Modal** - Increased `close` specificity, modal will now only close on `> .close` #2736
- **Accordion** - Added missing notation for accordion docs #2812

**Additional Bugs**
- **Build Tools** - Fixes issue on `win` platform where packaged theme would not correctly update when using watch due to regExp not matching windows path separators.
Expand Down
7 changes: 4 additions & 3 deletions src/definitions/elements/divider.less
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@
Coupling
---------------*/

.ui.grid > .ui.divider {
font-size: 1rem;
/* Allow divider between each column row */
.ui.grid > .column + .divider,
.ui.grid > .row > .column + .divider {
left: auto;
}


/*--------------
Horizontal
---------------*/
Expand Down

0 comments on commit a82cead

Please sign in to comment.