This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Realign generic layout with fabric8-ui * Move shared custom styles to mixins * Reference mixins on components * Add the shared scss loader from fabric8-ui
- Loading branch information
1 parent
1b79e9b
commit 756f0d8
Showing
21 changed files
with
157 additions
and
170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
@import '../assets/stylesheets/custom'; | ||
|
||
.app { | ||
|
||
} |
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 |
---|---|---|
|
@@ -203,3 +203,11 @@ | |
} | ||
} | ||
} | ||
|
||
.not-assigned-user-icon { | ||
@include not-assigned-user-icon; | ||
} | ||
|
||
.user-avatar { | ||
@include user-avatar; | ||
} |
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 |
---|---|---|
|
@@ -123,3 +123,11 @@ | |
} | ||
} | ||
} | ||
|
||
.user-avatar { | ||
@include user-avatar; | ||
} | ||
|
||
.detail-action-btn { | ||
@include detail-action-btn; | ||
} |
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 |
---|---|---|
|
@@ -378,3 +378,11 @@ | |
} | ||
} | ||
} | ||
|
||
.user-avatar { | ||
@include user-avatar; | ||
} | ||
|
||
.detail-action-btn { | ||
@include detail-action-btn; | ||
} |
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,3 +1,5 @@ | ||
@import 'variables'; | ||
@import 'custom-variables'; | ||
@import 'custom-mixins'; | ||
@import 'shared/variables'; | ||
@import 'shared/custom-variables'; | ||
@import 'shared/custom-mixins'; | ||
@import 'planner-variables'; | ||
@import 'planner-mixins'; |
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
@mixin user-avatar { | ||
height: em(25); | ||
width: em(25); | ||
img { | ||
width: $width100; | ||
height: 100%; | ||
} | ||
} | ||
|
||
@mixin not-assigned-user-icon { | ||
font-size: em(20); | ||
border: 1px solid $color-pf-black-600; | ||
padding: em(1) em(3); | ||
} | ||
|
||
// action buttons for editing title, description, comment | ||
@mixin detail-action-btn { | ||
font-size: em(14); | ||
cursor: pointer; | ||
width: em(42); | ||
text-align: $textCenter; | ||
padding: 0 !important; | ||
margin-left: em(5); | ||
} |
Empty file.
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,7 @@ | ||
// _layout.scss overrides | ||
|
||
.btn { | ||
min-width: 0 !important; // temporary fix for btn class , once the style are loaded properly will remove it | ||
} | ||
|
||
// main overrides |
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
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
src/assets/stylesheets/_layout-debug.scss → ...ets/stylesheets/shared/_layout-debug.scss
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.