-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(summaries): new design for disabled summaries samples with full …
…refactor
- Loading branch information
1 parent
53d76b0
commit 6f8fe2d
Showing
9 changed files
with
815 additions
and
414 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
48 changes: 42 additions & 6 deletions
48
src/app/grid/grid-disable-summaries/grid-disable-summaries.component.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,48 @@ | ||
.grid__wrapper { | ||
.grid-wrapper { | ||
margin: 0 auto; | ||
padding: 16px; | ||
} | ||
|
||
.summary-chooser { | ||
margin-bottom: 16px; | ||
.summaries { | ||
margin-bottom: 3rem; | ||
display: flex; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
|
||
&-title { | ||
margin: 0 1rem 0 0; | ||
} | ||
|
||
.summary-column-button { | ||
margin-right: 1rem; | ||
margin-bottom: 0.5rem; | ||
} | ||
} | ||
} | ||
|
||
igx-buttongroup{ | ||
display: block; | ||
.summaries-dropdown { | ||
background-color: white; | ||
border: 1px solid #e0e0e0; | ||
border-radius: 8px; | ||
|
||
&-title { | ||
color: #40B3FF; | ||
margin: 0.5rem 1.1rem; | ||
} | ||
|
||
&-items { | ||
display: flex; | ||
flex-direction: column; | ||
|
||
.summaries-dropdown-item { | ||
display: flex; | ||
align-items: center; | ||
padding: 0 1rem; | ||
} | ||
} | ||
|
||
&-buttons { | ||
display: flex; | ||
justify-content: space-between; | ||
padding: 0.2rem; | ||
} | ||
} |
Oops, something went wrong.