Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MyMatrix #269

Open
wants to merge 26 commits into
base: develop
Choose a base branch
from
Open

MyMatrix #269

wants to merge 26 commits into from

Commits on Mar 4, 2014

  1. Merge branch 'hotfix/2.6.3'

    chambaz committed Mar 4, 2014
    Configuration menu
    Copy the full SHA
    dff1c89 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2014

  1. upgrade bundled modular-scale to v2.0.5

    Keegan committed May 6, 2014
    Configuration menu
    Copy the full SHA
    7b83e75 View commit details
    Browse the repository at this point in the history
  2. - adjust references to $ratio to use $ms-ratio and golden() to $golden.

    - use px value for $base-line-height as ms(1) no longer defaults to 26px like modular-scale v1 did
    - resolves #219
    Keegan committed May 6, 2014
    Configuration menu
    Copy the full SHA
    728af5b View commit details
    Browse the repository at this point in the history
  3. recompile demo css

    Keegan committed May 6, 2014
    Configuration menu
    Copy the full SHA
    7582fe7 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2014

  1. Fixing all of the Modular Scale, Compass, and Sass version issues. Gu…

    …mby works with the latest after this fix
    Craig Keller authored and Craig Keller committed Aug 25, 2014
    2 Configuration menu
    Copy the full SHA
    8473e11 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #237 from craigkeller/master

    Fixing all of the Modular Scale, Compass, and Sass version issues. Gumby...
    craigkeller committed Aug 25, 2014
    Configuration menu
    Copy the full SHA
    d4093cb View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2014

  1. Configuration menu
    Copy the full SHA
    b9b5033 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    654ba75 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2014

  1. Quote unicode values

    If the unicode values are not quoted then they are escaped and treated as text instead of a single value.
    lonnylot committed Oct 4, 2014
    Configuration menu
    Copy the full SHA
    9280fd0 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2014

  1. Adding <select multiple> styles

    I am using Gumby in a new project and while updating HTML elements such as radio buttons, check boxes, and select elements I found that multi selects were not part of the Gumby UI demo.  I checked the CSS files and found no styling other than '.picker select'.  Prefacing the <select> elements with the 'picker' class triggers Gumby's design updates to the select (making multi-selects appear like drop down selects) so instead I think a new class of 'multi-picker' could help and be used as the wrapper for multi-selects instead of 'picker'.
    
    Select "Picker" Example:
    <div class="picker">
        <select>
            <option value="#" disabled="">Favorite Dalek phrase...</option>
            <option>EXTERMINATE</option>
            <option>EXTERMINATE</option>
            <option>EXTERMINATE</option>
        </select>
    </div>
    
    Select "Multi-Picker" Example:
    <div class="multi-picker">
        <select multiple="multiple">
            <option value="#" disabled="">Favorite Dalek phrase...</option>
            <option>EXTERMINATE</option>
            <option>EXTERMINATE</option>
            <option>EXTERMINATE</option>
        </select>
    </div>
    
    The proposed styles attempt to use many of the same styles already used in Gumby's UI for <select> differing only where needed such as background-image/color, padding, etc.
    jasontipton committed Nov 2, 2014
    Configuration menu
    Copy the full SHA
    537c52f View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2014

  1. Adding a blank list option.

    To go along with the .circle, .square, .disc classes for an un-ordered list a .blank option for those times where you want the list items to be indented but do not want a list-style applied.
    
    This can also be added to the Gumby UI page with the other list examples:
    <div class="four columns">
        <h4 class="lead">ul.blank</h4>
        <ul class="blank">
            <li>List item</li>
            <li>List item</li>
            <li>List item</li>
                <ul class="blank">
                    <li>Nested item</li>
                    <li>Nested item</li>
                </ul>
            <li>List item</li>
            <li>List item</li>
            <li>List item</li>
            <li>List item</li>
        </ul>
    </div>
    jasontipton committed Nov 16, 2014
    Configuration menu
    Copy the full SHA
    e53721b View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2015

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

Commits on Feb 14, 2015

  1. Merge pull request #244 from lonnylot/patch-1

    [Issue 179] Quote unicode values
    danhere committed Feb 14, 2015
    Configuration menu
    Copy the full SHA
    7b910ec View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop' of https://github.com/GumbyFramework/Gumby int…

    …o pr/221
    Dan Saksa committed Feb 14, 2015
    Configuration menu
    Copy the full SHA
    2e527e5 View commit details
    Browse the repository at this point in the history
  3. Merging in pr#221

    Dan Saksa committed Feb 14, 2015
    Configuration menu
    Copy the full SHA
    b2352b7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #261 from PeterDaveHello/patch-1

    Use svg instead of png to get better image quality
    danhere committed Feb 14, 2015
    Configuration menu
    Copy the full SHA
    b54ebc0 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2015

  1. Update to latest Modular Scale version and update settings file to wo…

    …rk with newer version
    Dan Saksa committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    8a98a87 View commit details
    Browse the repository at this point in the history
  2. Change config to use bundled modular scale and give users option to u…

    …se system installed instead.
    Dan Saksa committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    52dd679 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #240 from vasiliy0s/master

    Add SASS sources to "main" entry in bower.json
    danhere committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    911fe9b View commit details
    Browse the repository at this point in the history
  4. Merge pull request #239 from joshwlewis/master

    Actually use the header-link-hover-color variable.
    danhere committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    662b26d View commit details
    Browse the repository at this point in the history
  5. Update incorrect border-radius value in _navbar.scss

    Dan Saksa committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    b722946 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4d7eac5 View commit details
    Browse the repository at this point in the history
  7. Remove duplicate %zero-margin-left

    Dan Saksa committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    cadbd4c View commit details
    Browse the repository at this point in the history
  8. Merge pull request #251 from jasontipton/patch-2

    Adding a blank list option.
    danhere committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    54725a6 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #248 from jasontipton/patch-1

    Adding <select multiple> styles
    danhere committed Feb 15, 2015
    Configuration menu
    Copy the full SHA
    abee447 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2015

  1. Update README.md

    Adam Chambers committed May 21, 2015
    Configuration menu
    Copy the full SHA
    2160fc5 View commit details
    Browse the repository at this point in the history