Releases: atomicpages/skeleton-sass
Releases · atomicpages/skeleton-sass
2.0.0-rc2
- Fixed hard coded value in breakpoint
2.0.0-rc1
- 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
- Squashed a bunch of bugs in the gradient mixins
2.0.0-b11
- Fixed naming issue with
box-shadow
in theme mixins - Fixed parameter for
transition
andborder-shadow
- Almost done with the
upgrade.rb
script
2.0.0-b10
- 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
$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
Fixed weird styling that forced strong
and b
elements to have a color of #333
.
2.0.0-b7
- 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
- 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
- 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