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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bootstrap to the latest version 馃殌 #4022

Merged
merged 36 commits into from
Jul 25, 2018

Commits on Jul 24, 2018

  1. Configuration menu
    Copy the full SHA
    d72b77c View commit details
    Browse the repository at this point in the history
  2. Use sass instance of less

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    ce445d2 View commit details
    Browse the repository at this point in the history
  3. Use Sass syntax

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    218f133 View commit details
    Browse the repository at this point in the history
  4. Fix calc

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    24c2a39 View commit details
    Browse the repository at this point in the history
  5. Removes the themes

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    4ef23bc View commit details
    Browse the repository at this point in the history
  6. Fix @media

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    8e7c82e View commit details
    Browse the repository at this point in the history
  7. Add missing import on vars

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    8f33e5a View commit details
    Browse the repository at this point in the history
  8. Bootstrap upgrades

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    baa4ab9 View commit details
    Browse the repository at this point in the history
  9. Fix bootstrap path

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    6867772 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    37b5fda View commit details
    Browse the repository at this point in the history
  11. Fix calc

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    46bdec9 View commit details
    Browse the repository at this point in the history
  12. Fix screen breakpoints

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    a3b12ab View commit details
    Browse the repository at this point in the history
  13. Fix calc

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    32861ff View commit details
    Browse the repository at this point in the history
  14. Fix @font-face

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    77cbc65 View commit details
    Browse the repository at this point in the history
  15. Add missing vars import

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    7704706 View commit details
    Browse the repository at this point in the history
  16. Fix font-awesome import

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    a638cd4 View commit details
    Browse the repository at this point in the history
  17. Removes less inline

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    b5d0398 View commit details
    Browse the repository at this point in the history
  18. Convert px to rem

    With:
    !python3
     -*- coding: utf-8 -*-
    
    import glob
    import re
    
    for f in glob.glob('contribs/**/*.scss', recursive=True):
        with open(f, encoding='utf-8') as s:
            text = s.read()
    
        def calc(value):
            number = float(value.group(1)) / 10.0
            number = int(number) if number == int(number) else number
            return str(number) + 'rem'
    
        text = re.sub(r'\b([\.0-9]+)px\b', calc, text)
    
        with open(f, 'w', encoding='utf-8') as s:
            s.write(text)
    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    558374c View commit details
    Browse the repository at this point in the history
  19. Fix rem

    With:
    
    !python3
     -*- coding: utf-8 -*-
    
    import glob
    import re
    
    for f in glob.glob('contribs/**/*.scss', recursive=True):
        with open(f, encoding='utf-8') as s:
            text = s.read()
    
        def calc(value):
            number = float(value.group(1)) / 1.6
            number = str(int(number)) if number == int(number) else "{:.2f}".format(number)
            return number + 'rem'
    
        text = re.sub(r'\b([\.0-9]+)rem\b', calc, text)
    
        with open(f, 'w', encoding='utf-8') as s:
            s.write(text)
    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    bc97868 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    bb38cf9 View commit details
    Browse the repository at this point in the history
  21. Add missing z-index

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    ffaf225 View commit details
    Browse the repository at this point in the history
  22. Fix unit

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    dcb3118 View commit details
    Browse the repository at this point in the history
  23. Add calc

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    6478925 View commit details
    Browse the repository at this point in the history
  24. Compatilility layer

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    5699a14 View commit details
    Browse the repository at this point in the history
  25. Fix font awesome path

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    abb4ad1 View commit details
    Browse the repository at this point in the history
  26. Fix locations

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    c80bb6b View commit details
    Browse the repository at this point in the history
  27. Fix mobile interface

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    e53e090 View commit details
    Browse the repository at this point in the history
  28. Fix make lint

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    98b3f64 View commit details
    Browse the repository at this point in the history
  29. Fix fonts path

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    b509885 View commit details
    Browse the repository at this point in the history
  30. Fix some variable overloads

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    9887fe6 View commit details
    Browse the repository at this point in the history
  31. Use node-sass-importer

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    8e41d9b View commit details
    Browse the repository at this point in the history
  32. Correctly loads saaas files

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    6aaf377 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    f28a9df View commit details
    Browse the repository at this point in the history
  34. Add required assets

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    cf3669d View commit details
    Browse the repository at this point in the history
  35. Fix code style

    sbrunner committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    f34ed31 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2018

  1. Some codestyle and css fix

    sbrunner committed Jul 25, 2018
    Configuration menu
    Copy the full SHA
    b85ce2d View commit details
    Browse the repository at this point in the history