Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fomantic/Fomantic-UI
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.8.5
Choose a base ref
...
head repository: fomantic/Fomantic-UI
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.8.6
Choose a head ref
  • 17 commits
  • 63 files changed
  • 7 contributors

Commits on Jun 2, 2020

  1. build(deps): bump less from 3.11.1 to 3.11.2

    Bumps [less](https://github.com/less/less.js) from 3.11.1 to 3.11.2.
    - [Release notes](https://github.com/less/less.js/releases)
    - [Changelog](https://github.com/less/less.js/blob/master/CHANGELOG.md)
    - [Commits](less/less.js@v3.11.1...v3.11.2)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jun 2, 2020
    Configuration menu
    Copy the full SHA
    e78783f View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2020

  1. Configuration menu
    Copy the full SHA
    b3be317 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. Configuration menu
    Copy the full SHA
    c96ba01 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2020

  1. Configuration menu
    Copy the full SHA
    ffbb9ec View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2020

  1. fix(dimmer): page dimmer in firefox results in misaligned modals

    Firefox messes around with (large) modals in certain situations. For example when trying to drag inside an input inside a modal, it scrolls to the top of the modal. Even worse on Mac where the whole modals overlays other div containers...
    
    Reason for this is the perspective setting for the page dimmer. It seems this was introduced some years back to also fix some firefox issues, so i don't dare to remove this setting completely to avoid possible other, currently unknown, issues in probably other browsers as well.
    lubber-de authored Jun 6, 2020
    Configuration menu
    Copy the full SHA
    790587f View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2020

  1. build(deps): bump less from 3.11.2 to 3.11.3

    Bumps [less](https://github.com/less/less.js) from 3.11.2 to 3.11.3.
    - [Release notes](https://github.com/less/less.js/releases)
    - [Changelog](https://github.com/less/less.js/blob/master/CHANGELOG.md)
    - [Commits](less/less.js@v3.11.2...v3.11.3)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jun 8, 2020
    Configuration menu
    Copy the full SHA
    2f96b0b View commit details
    Browse the repository at this point in the history
  2. build(deps-dev): bump all-contributors-cli from 6.15.0 to 6.16.0

    Bumps [all-contributors-cli](https://github.com/all-contributors/all-contributors-cli) from 6.15.0 to 6.16.0.
    - [Release notes](https://github.com/all-contributors/all-contributors-cli/releases)
    - [Commits](all-contributors/cli@v6.15.0...v6.16.0)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jun 8, 2020
    Configuration menu
    Copy the full SHA
    1d7764d View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2020

  1. feat(chore): autoassign ko2in for pr reviews

    This will add @ko2in as a reviewer for the autoassign bot
    lubber-de authored Jun 10, 2020
    Configuration menu
    Copy the full SHA
    1d6ea76 View commit details
    Browse the repository at this point in the history
  2. fix(calendar): popup should not close when its trigger event is not c…

    …lick
    
    * fix(calendar): focus event listener closes the popup on window click
    
    * fix(calendar): popup should only close on window click if the calendar is on click too
    Lutonite authored Jun 10, 2020
    Configuration menu
    Copy the full SHA
    83e45ad View commit details
    Browse the repository at this point in the history
  3. fix(grid): very compact variation specificity and alignment

    * Fix very compact grid
    
    The padding rules weren't specific enough, so they were always overruled by those of compact grid.
    
    Also padding-right on line 1912 contained an incorrect placeholder.
    
    * Add left and right padding to very compact grid row
    hugopeek authored Jun 10, 2020
    Configuration menu
    Copy the full SHA
    bf8c159 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2020

  1. feat(transition): make effects optional

    This PR follows the principle of the dynamic LESS compilation and implements this now also for all transition effects so its possible for the user to reduce even more unneeded CSS within the existing variation.variables file.
    lubber-de authored Jun 11, 2020
    Configuration menu
    Copy the full SHA
    4187f1f View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2020

  1. fix(dropdown): left and right menu positioning regression

    This PR fixes the first level of simple dropdown inside the right menu
    was cropped and out of the screen when the parent menu item has short
    text, and the dropdown doesn't specify the class name `left`.
    
    To avoid this, all dropdown inside the right menu will be forced to
    appear leftward by default. The dropdown can also appear leftward or
    rightward by having `left` or `right` class name.
    
    This PR also fix the dropdown inside the buttons which are positioned
    incorrectly.
    ko2in authored Jun 12, 2020
    Configuration menu
    Copy the full SHA
    2cd5e9c View commit details
    Browse the repository at this point in the history
  2. fix(icon): vertical position for unsized icons and sized text

    This PR corrects/partly reverts the vertical alignment of unsized icons which unfortunately breaks the vertical alignment in most cases when icons are just used beside inline texts which is probably the most used case.
    I also recognized the text element needs the same line-height setting to avoid overlapping which is also fixed now.
    lubber-de authored Jun 12, 2020
    Configuration menu
    Copy the full SHA
    4ac35a7 View commit details
    Browse the repository at this point in the history
  3. fix(label): adjusted basic labels height and attached image labels

    basic labels have a border which increases the height in comparison to usual labels.
    When inline together the line height gets increased
    Because of that, a basic image label was not properly supported
    All attached labels were not really attached to the boundary of a segment (as every other attached component is doing) . That was especially visible when a basic attached label was used
    lubber-de authored Jun 12, 2020
    Configuration menu
    Copy the full SHA
    170a07b View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2020

  1. chore(release): bump version

    Sean Hamilton committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    275b515 View commit details
    Browse the repository at this point in the history
  2. chore(release): update dist

    Sean Hamilton committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    7a8dbf8 View commit details
    Browse the repository at this point in the history
  3. chore(release): update changelog

    Sean Hamilton committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    0269a82 View commit details
    Browse the repository at this point in the history
Loading