Skip to content

Releases: CastleCSS/castlecss-core

v2.7

21 Feb 09:41
Compare
Choose a tag to compare

Release v2.7

#39 Moved flex utility classes to be used in wider context

V2.5

24 Jul 10:35
Compare
Choose a tag to compare

Grid

  • New formula for generating the grid
  • It's now possible to generate grid classes for $b7, $b8, etc. Just add them in your own variables.scss
  • Added gutter-map to variables, needed for generating the grid

Example of the new gutters:

/*
	Grid gutters
	Must be the same amount of breakpoints $breakpoint-map as above
*/
$grid-gutter:	 12px;
$grid-gutter-b1: 12px;
$grid-gutter-b2: 12px;
$grid-gutter-b3: 16px;
$grid-gutter-b4: 16px;
$grid-gutter-b5: 16px;
$grid-gutter-b6: 16px;

/*
	Gutter map
	Must be the same amount of gutters and $gutter-map as above
*/
$gutter-map: (
	1: $grid-gutter-b1,
	2: $grid-gutter-b2,
	3: $grid-gutter-b3,
	4: $grid-gutter-b4,
	5: $grid-gutter-b5,
	6: $grid-gutter-b6,
);

Utility classes

  • It's now possible to set no, small or large gutters per breakpoint with classes likegutter-b2-none and gutter-b4-large

V2.4

03 Jul 11:52
Compare
Choose a tag to compare

Equal Height

  • g-equal-height class for making the children of the grid items equal height
  • equal-height class for making the children of this class equal height

Color / Background-color utility classes

  • Added color and background-color utility classes.
    With these you can easily give a styling without having to create a stylesheet.
    For example: color-theme01 and bgcolor-color01

Bug Fixes

  • Use g-float to reset grid floating. grid-floating is now deprecated and will be removed in the next major version.
  • Fixed #26; Moved shorthands so they are declared before the longhands
  • Fixed #23; Fixed a bug where not every column on every breakpoint evenly distributed with the current grid columns. Every column should have the same amount of pixels. Otherwise this makes it harder to create correct Photoshop files. (half pixels don't exist in Photoshop ;))

v2.3

15 Feb 15:58
Compare
Choose a tag to compare

CastleCSS Forms Released!

v2.2.0

09 Feb 16:09
Compare
Choose a tag to compare

CastleCSS Breadcrumbs Released!

  • Added $breadcrumbs-separator to the variables for the new CastleCSS-breadcrumbs
  • Bugfix .fields class #22 in

2.1.0 release is live

20 Dec 09:05
Compare
Choose a tag to compare

v2.1.0 is live!

  • Added a standard h1-h6 styles so you don't have to. Also, we added .head and .head1-6 styles. With this you can style any element into a heading. For example you can make a strong or a h2 look like a h1, etc.
  • New notification / alert colors. Also added a warning color. Upgrade both your core and notification module to the last version to see these changes.

2016-12-20 10_05_27-start

2016-12-20 09_53_07-start
2016-12-20 09_53_36-start

2.0.1 is here!

23 Nov 22:46
Compare
Choose a tag to compare

Release v2.0.1 is live!

  • #10 Order of items per breakpoints is now available
  • Extra breakpoints can now be added by making adjustments in your own variables.scss (instructions)
  • Utility Spacers (padding/margin) can now scale with extra added breakpoints
  • The grid can now scale with extra added breakpoints
  • #16 Floating, clearing, text-align per breakpoint can now all scale with extra added breakpoints
  • #17 We changed things around with the order in your main.scss setup, this fixed an issue where utility classes didn't overwrite over classes
  • Documentation changes

Dependency fix and safari grid bug

03 Oct 15:24
Compare
Choose a tag to compare
  • We noticed there was a problem with the depencencies, because of our pre-release packages. We fixed this with version 1.8.1

Grid items not correct on Safari

  • Problem with grid items (for example 50%/50% wouldn't stay on one row) we fixed this by switching to an older version of clearfix.

v1.7.3

28 Jul 13:19
Compare
Choose a tag to compare

cba81b5

  • Added default margins to objects

0cb5861

  • Added a .wrapper element with overflow: hidden as a wrapper for the whole site.
  • whody and wrapper min-height 100%, width 100%.
  • Sms, tel and Fax links no longer browser default styled
  • Margin-bottom for dd

v1.7.2

24 Jul 23:28
Compare
Choose a tag to compare

Fixed a bug where gutter-none, gutter-small and gutter-large was affecting more then just the direct children