Skip to content

Releases: webpixels/css

v1.2.6

Choose a tag to compare

@extrabright extrabright released this 16 May 14:31
8750793

What's Changed

  • removed horizontal padding for the .accordion-button when .accordion-flush is in use
  • removed horizontal padding for the .accordion-body when .accordion-flush is in use
  • lightened the body color (from gray-700 to gray-600)
  • some improvements for the .article typography element

v1.2.5

Choose a tag to compare

@extrabright extrabright released this 30 Dec 06:59
236e9d2

v1.2.4

Choose a tag to compare

@extrabright extrabright released this 13 Dec 18:25
6956f0a
  • Extracted colors in a separate module
  • Added responsive border widths
  • Minor bug fixes

v1.2.3

Choose a tag to compare

@extrabright extrabright released this 08 Dec 09:51
524cdc4

Improvements

  • Added new CSS variables for customizing navbar links
  • Minor bug fixes

New utilities

  • Added scroll and scroll-snap utility classes
  • Added a new offset-left-* for screen width (e.g: offset-left-screen-lg)

v1.2.13

Choose a tag to compare

@extrabright extrabright released this 25 Oct 14:23
ce08b8e
  • Now you can customize color and spacing utilities through maps
  • Reduce the compiled CSS size by removing unused utilities

Example

// Functions
 @import "core/functions";
 @import "core/variables";

 // Spacing
 $spacer-values: (
   0: 0,
   1: $spacer * 0.25,
   2: $spacer * 0.5,
   3: $spacer * 0.75,
   4: $spacer,
   5: $spacer * 1.25,
   6: $spacer * 1.5,
   7: $spacer * 1.75,
   8: $spacer * 2,
   10: $spacer * 2.5,
   12: $spacer * 3,
   14: $spacer * 3.5,
   16: $spacer * 4,
   18: $spacer * 4.5,
   20: $spacer * 5,
   24: $spacer * 6,
   px: 1px
 );

 // Utility maps
 $utilities-colors: $theme-colors-rgb;

 // Components
 @import "base";
 @import "forms";
 @import "components";

 // Utilities
 @import "utilities";

 // Remove transform utilities
 $utilities: map-remove($utilities,
   "transform",
   "transform-origin",
   "scale",
   "scale-x",
   "scale-y",
   "rotate",
   "negative-rotate",
   "rotate-y",
   "negative-rotate-y",
   "rotate-x",
   "negative-rotate-x",
   "perspective",
   "translate-y",
   "negative-translate-y",
   "translate-x",
   "negative-translate-x",
   "skew-y",
   "negative-skew-y",
   "skew-x",
   "negative-skew-x",
   "blur"
 );

 // Bootstrap API
 @import "bootstrap/scss/utilities/api";

v1.2.12

Choose a tag to compare

@extrabright extrabright released this 25 Oct 10:41
939ca3a

This update comes with some improvements to handle the removal of utility classes from your Sass file. To do that use the map-remove function, provided in Bootstrap 5.

$utilities: map-remove($utilities,
  "transform",
 "rotate"
);

Add any other key available in our utility list to the map-remove object.

v1.2.11

Choose a tag to compare

@extrabright extrabright released this 10 Oct 16:48
76a49d0

Highlights

  • Upgraded Bootstrap to v5.2.2
  • Upgraded Popper to v2.11.6
  • New utilities, CSS variables, and optimizations

Changes

  • The compiled css (index.scss) is now composed of 2 files for performance reasons. When a variables is changed, only the necessary files will be re-compiled:
    • main.scss (includes base, component, and form styles)
    • utility.scss (includes all the utility classes)
  • Borders are now using CSS variables (border-bottom-2 becomes border-bottom border-2)
  • New .form-check-linethrough variant
  • Fixed: table-spaced components shadows issue
  • Improved: gradients now make use of CSS variables entirely
    • Deprecated: border-card, border-base
  • Deprecated: _modal-vertical.scss (replaced with offcanvas)
  • Deprecated: .navbar-search (replaced with utilities)
  • Deprecated: bg-tint, bg-shade, bg-soft (replaced with utilities, for ex. bg-primary bg-opacity-50)

v1.1.92

Choose a tag to compare

@extrabright extrabright released this 07 Feb 15:28
  • Added .form-item-checkable
  • Added .list-group-borderless
  • Minor bug fixes

v1.1.89

Choose a tag to compare

@extrabright extrabright released this 10 Dec 15:11
  • Added soft shadows for all the available variables (e.g: shadow-soft-5, from 1 to 6)

v1.1.88

Choose a tag to compare

@extrabright extrabright released this 10 Dec 12:39
  • Removed btn-soft-* classes
  • Added hove focus states to bg/text-opacity modifiers
  • Minor bug fixes