Skip to content

Releases: atomicpages/skeleton-sass

2.0.0-rc2

27 Jul 05:27
Compare
Choose a tag to compare
2.0.0-rc2 Pre-release
Pre-release
  • Fixed hard coded value in breakpoint

2.0.0-rc1

26 Jul 15:31
Compare
Choose a tag to compare
2.0.0-rc1 Pre-release
Pre-release
  • Squashed a few more bugs
  • Added dynamic calculation for fluid grid gutters
$gutter: percent($base-gutter-width) / 100;
.container {
    .column,
    .columns {
        margin: {
            left: $gutter / 2;
            right: $gutter / 2;
        }
    }
}

2.0.0-b12

26 Jul 04:03
Compare
Choose a tag to compare
2.0.0-b12 Pre-release
Pre-release
  • Squashed a bunch of bugs in the gradient mixins

2.0.0-b11

24 Jul 22:34
Compare
Choose a tag to compare
2.0.0-b11 Pre-release
Pre-release
  • Fixed naming issue with box-shadow in theme mixins
  • Fixed parameter for transition and border-shadow
  • Almost done with the upgrade.rb script

2.0.0-b10

07 Jul 22:57
Compare
Choose a tag to compare
2.0.0-b10 Pre-release
Pre-release
  • Added missing !global flag in _config.scss
  • Removed the following:
    • update.sh
    • setup.sh
    • theme_setup.sh
  • Rewrote all of the shell scripts as ruby scripts so they are cross-platform compatible! Wooh!

2.0.0-b9

16 Jun 07:06
Compare
Choose a tag to compare
2.0.0-b9 Pre-release
Pre-release
  • $base-width is now automatically calculated for you!
    • If fluid grid is used then it will default to 98%
    • This value can still be overridden and still has global scope

2.0.0-b8

06 Jun 05:40
Compare
Choose a tag to compare
2.0.0-b8 Pre-release
Pre-release

Fixed weird styling that forced strong and b elements to have a color of #333.

2.0.0-b7

05 Jun 06:27
Compare
Choose a tag to compare
2.0.0-b7 Pre-release
Pre-release
  • Moved files to a more centralized location
  • Themes are actually called themes now instead of a random bones folder
  • Executables have been updated
  • more updates!

2.0.0-b6

04 Jun 21:55
Compare
Choose a tag to compare
2.0.0-b6 Pre-release
Pre-release
  • Fixed @if directives by removing all == [bool] and to more unnecessary characters
  • Changed mobile fluid grid to percentages instead of using pixels. This should allow for greater control over how the fluid grid operates on mobile devices. This needs to be tested more though...

2.0.0-b5

28 May 23:21
Compare
Choose a tag to compare
2.0.0-b5 Pre-release
Pre-release
  • Fixed upgrade executable
  • Fixed incorrect selectors with fluid grid
  • Removed control structures in functions, I thought it behaved like php's function_exists – it doesn't.
  • Fixed a lot of import statements in various files