-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CSS alignment bugs and add more templates (#106)
- Loading branch information
1 parent
b49a42b
commit 76c775e
Showing
7 changed files
with
91 additions
and
14 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
vizro-core/changelog.d/20231011_110304_huong_li_nguyen_fix_css_bugs.md
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,41 @@ | ||
<!-- | ||
A new scriv changelog fragment. | ||
Uncomment the section that is right (remove the HTML comment wrapper). | ||
--> | ||
|
||
<!-- | ||
### Removed | ||
- A bullet item for the Removed category. | ||
--> | ||
|
||
### Added | ||
|
||
- Add plotly layout template for waterfall chart type ([#106](https://github.com/mckinsey/vizro/pull/106)) | ||
- Add CSS default styling for `textarea` ([#106](https://github.com/mckinsey/vizro/pull/106)) | ||
|
||
<!-- | ||
### Changed | ||
- A bullet item for the Changed category. | ||
--> | ||
<!-- | ||
### Deprecated | ||
- A bullet item for the Deprecated category. | ||
--> | ||
|
||
### Fixed | ||
|
||
- Fix alignment between control panel, dashboard title and page title ([#106](https://github.com/mckinsey/vizro/pull/106)) | ||
|
||
<!-- | ||
### Security | ||
- A bullet item for the Security category. | ||
--> |
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 |
---|---|---|
|
@@ -79,6 +79,7 @@ | |
display: flex; | ||
flex-direction: column; | ||
overflow-x: hidden; | ||
margin-top: -10px; | ||
} | ||
|
||
.accordion_item { | ||
|
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
textarea { | ||
background-color: var(--field-enabled); | ||
padding: var(--spacing-02); | ||
} | ||
|
||
textarea:focus { | ||
outline: none; | ||
box-shadow: 0 0 0 2px var(--focus-focus) inset; | ||
} | ||
|
||
hr { | ||
border-bottom: 1px solid var(--border-subtle-alpha-01); | ||
width: 100%; | ||
} | ||
|
||
blockquote { | ||
border-left: var(--spacing-01) var(--text-secondary) solid; | ||
padding-left: var(--spacing-01); | ||
} |