Releases: oo-loop/loop
Releases · oo-loop/loop
v0.4.15
v0.4.14
V0.4.13
Adjustment
- Remove scaling on button active status to avoid adding conflict in a case where the button needs to be animated
V0.4.12
Bug fixes
Fix grid when it contains elements with overflow content
v0.4.11
Features
- Ability to have a set of vertical gutters for
oo-columnvia the variable$columns-v-gutter-sizes - Responsive v-gutter modifiers
v-gutter-${gutterName}@{breakpoint}(assign the needed breakpoints to$columns-v-gutter-sizes-breakpoints-classes) see doc for more info.
Sample of use
<div oo-column="row v-gutter-less v-gutter-tiny@sm v-gutter-small@md v-gutter-large@lg">
<div oo-column="col"></div>
<div oo-column="col"></div>
<div oo-column="col"></div>
</div>Changes
- The variable
$anchor-color-hovergets a darker version of$anchor-coloras default value. (No more$color-secondary)
Functions
New functions available to facilitate the reuse of values coming from Map type variables
getColors($keyName)to get value from the$colorsmapgetTextColors($keyName)to get value from the$text-colorsmapgetBgColors($keyName)to get value from the$bg-colorsmapgetBorderColors($keyName)to get value from the$border-colorsmapgetTextSizes($keyName)to get value from the$text-sizesmapgetMapValue($map, $key)get map value by passing the map to retrieve from and the name of the key . (Combination of sass functionsmap-getandmap-has-key)
V0.4.10
Bug fixes
normalize.csshas been removed from dependencies and moved to its own loop partialloop/scss/base/_normalize.scss- Allowing the use of loop without any javascript task runner building the css file.
v0.4.9
Bug fixes
- Fix
Textareaheight and max-width when usingoo-form="input" - Fix custom input paddings bug created by firefox fix from
v0.4.8
V0.4.8
Bug fixes
- Firefox: form inputs and selects get the same height
- typo, correct class name =>
.container-fluidnow working
V0.4.7
Features
oo-grid="areas"Add template areas to Gridorder-{$number}@{$breakpoint}Add order modifier tooo-grid="col"$font-size-rootRoot font-size is now modifiable (default = 62.5%)$spacing-ratioRatio to translate px into rem. Spacing generated values are rem but className still use the pixel number for better representation$use-grid-layout$use-grid-areas$use-grid-order$use-grid-gap$use-v-grid-gapVariables to turn on/off the options
Deprecated
inArray()function in favour ofinList()andInNotList()
v0.4.6
Features
- Ability to have responsive gutter modifiers
gutter-${gutterName}@{breakpoint}(assign the needed breakpoints to$columns-gutter-sizes-breakpoints-classes) see doc for more info.
Sample of use
<div oo-column="row gutter-less gutter-tiny@sm gutter-small@md gutter-large@lg">
<div oo-column="col"></div>
<div oo-column="col"></div>
<div oo-column="col"></div>
</div>