-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(scss): scss config vars, missing imports and hotfixes (#76)
* chore(.gitignore): be more specific about ignored files * refactor(global-scss-vars): new vars for scss config * fix(scss): all _css--* files @import reset now * fix(SCSS): fix import type for css--reset * fix(styles.scss): set reset to true by default * fix(scss-global-vars): change conditionals - if var does not exist, then output CSS - OR if var equals true, then output CSS - User must set var equal to false to prevent output CSS * fix(reset.scss): change conditional - always ouputs CSS from one of the reset mixins when var does not exist - if var equals false, then add reset CSS to each class selector - if var equals true, then output reset CSS once at top and no where else * fix(copy-button): add inline svg for icon * chore(button): move import reset to last * fix(file-uploader): fixes for importing by itself - imports loading component - fix styles for filename nodes * fix(checkbox): add misssing form import * fix(radio): add missing form import * fix(toggle): add missing form import * fix(search): center icons in buttons * fix(inline-select): use inline svg * fix(link): add missing import helper-mixins * fix(number-input): add missing imports * fix(code-snippet): add missing import * fix(card): make scrollbars invisible * style(mixins): remove space between first and 2nd line * fix(modal): remove overflow-y: auto * fix(inline-notification): add spacing between close button and text * fix(tooltip): missing icons and fonts * fix(iln): remove unneeded reset mixins * fix(accordion): normalize icon size w/padding * fix(progress-indicator): fix line spacing * fix(toolbar): inline svg and new focus state * fix(search): center icons in buttons * fix(file-uploader): import css--typography * fix(card): import css--typography * fix(data-table): import css--typography * fix(detail-page-header): import css--typography * fix(dropdown): import css--typography * fix(modal): import css--typography * fix(module): import css--typography * fix(notifications): import css--typography * fix(accordion): import css--typography * fix(breadcrumb): import css--typography * fix(footer): import css--typography * fix(components): import css--typography - iln - tabs - tooltip - unified-header
- Loading branch information
1 parent
425c142
commit 2612b2d
Showing
39 changed files
with
225 additions
and
231 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
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
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
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,7 +1,7 @@ | ||
<button data-copy-btn class="bx--btn bx--btn--primary bx--btn--copy bx--btn--sm"> | ||
Copy button | ||
<svg class="bx--btn__icon"> | ||
<use xlink:href="/carbon-icons/bluemix-icons.svg#icon--add--glyph"></use> | ||
<svg class="bx--btn__icon" width="16" height="16" viewBox="0 0 16 16" fill-rule="evenodd"> | ||
<path d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm4 9H9v3H7V9H4V7h3V4h2v3h3v2z"></path> | ||
</svg> | ||
<div class="bx--btn--copy__feedback" data-feedback="Copied!"></div> | ||
</button> |
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
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.