-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sass-lint and placeholder/output choices added for the predefined cla…
…sses
- Loading branch information
Showing
42 changed files
with
976 additions
and
638 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
files: | ||
ignore: 'rocket-engine/styles/gui/overwrites/**' | ||
|
||
# Rules Configuration | ||
rules: | ||
# Mixins | ||
mixins-before-declarations: 0 | ||
|
||
# Disallows | ||
no-color-literals: 0 | ||
no-css-comments: 0 | ||
no-vendor-prefixes: 0 | ||
|
||
# Style | ||
indentation: 0 | ||
hex-notation: | ||
- 1 | ||
- | ||
style: lowercase | ||
nesting-depth: | ||
- 1 | ||
- | ||
max-depth: 3 | ||
property-sort-order: | ||
- 1 | ||
- | ||
order: smacss # https://gist.github.com/chipcullen/b014d9d6885e1e785a31 | ||
|
||
clean-import-paths: | ||
leading-underscore: true | ||
|
||
# Inner Spacing | ||
space-around-operator: 0 | ||
|
||
# Final Items | ||
final-newline: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
# Melange Change Log | ||
## Version 0.7.0 | ||
- NEW: sass-lint added for better standardization | ||
- NEW: `%melange-*` placeholders added for most of the melange default classes. | ||
- NEW: `$predefined-classes` variable added to control if Melange classes will stay as placeholders for the project `@extend`s or css outputs. To prevent major breakdowns, default value set to `true` | ||
- CHANGE: Normalize version updated to `4.1.1` | ||
- CHANGE: Underscored variable names changed to their dashed versions. | ||
- FIX: Coding style revised according to sass-lint configurations. | ||
|
||
|
||
## Version 0.6.1 | ||
- Fix: Missing "disabled" styles in input elements | ||
- FIX: Missing "disabled" styles in input elements | ||
|
||
## Version 0.6.0 | ||
- New: Field radius settings added for field styles. Use `$base-field-border-radius` variable to set. | ||
- New: woff2 font type support settings added for `font-face` mixins. | ||
- New: Border Radius setting added for button styles. Use `$base-button-border-radius` variable to set one. Default is `null` | ||
- New: `button-colors` mixin added for button styles. | ||
- New: Breakpoints settings added. `$base-widescreen`, `$base-desktop`, `$base-tablet`, `$base-tablet-landscape`, `$base-tablet-portrait` and `$base-phone` variables added both to default variables and settings. | ||
- New: `.mobile-hidden`, `.mobile-visible` auxiliary classes added. | ||
- Change: Predefined font-size definitions from _normalize.css_ removed | ||
- Fix: `text-decoration: underline` problem for anchor buttons resolved. | ||
- NEW: Field radius settings added for field styles. Use `$base-field-border-radius` variable to set. | ||
- NEW: woff2 font type support settings added for `font-face` mixins. | ||
- NEW: Border Radius setting added for button styles. Use `$base-button-border-radius` variable to set one. Default is `null` | ||
- NEW: `button-colors` mixin added for button styles. | ||
- NEW: Breakpoints settings added. `$base-widescreen`, `$base-desktop`, `$base-tablet`, `$base-tablet-landscape`, `$base-tablet-portrait` and `$base-phone` variables added both to default variables and settings. | ||
- NEW: `.mobile-hidden`, `.mobile-visible` auxiliary classes added. | ||
- CHANGE: Predefined font-size definitions from _normalize.css_ removed | ||
- FIX: `text-decoration: underline` problem for anchor buttons resolved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
// | ||
// Visuals | ||
// | ||
@import "_visibility"; | ||
@import 'visibility'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
/** | ||
* Media Component | ||
*/ | ||
@import "media"; | ||
@import 'media'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.