-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1429 from finos/fix-layout-save-panel-styling
save layout panel and toast styling
- Loading branch information
Showing
6 changed files
with
135 additions
and
129 deletions.
There are no files selected for viewing
54 changes: 25 additions & 29 deletions
54
vuu-ui/packages/vuu-popups/src/notifications/ToastNotification.css
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,47 +1,43 @@ | ||
.vuuToastNotification { | ||
--notification-color: var(--salt-content-primary-foreground); | ||
--vuu-icon-color: var(--notification-color); | ||
--vuu-icon-size: 24px; | ||
|
||
color: var(--notification-color); | ||
position: absolute; | ||
display: flex; | ||
padding: 8px 32px 8px 8px; | ||
align-items: center; | ||
gap: 8px; | ||
border-radius: 6px; | ||
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.40); | ||
z-index: 100000; | ||
--notification-color: var(--salt-content-primary-foreground); | ||
--vuu-icon-size: 24px; | ||
|
||
color: var(--notification-color); | ||
position: absolute; | ||
display: flex; | ||
padding: 8px 32px 8px 8px; | ||
align-items: center; | ||
gap: 8px; | ||
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4); | ||
z-index: 100000; | ||
} | ||
|
||
.vuuToastNotifications-toastContent{ | ||
display: flex; | ||
flex-direction: column; | ||
gap: var(--salt-spacing-100); | ||
.vuuToastNotification-toastContent { | ||
display: flex; | ||
flex-direction: column; | ||
gap: var(--salt-spacing-100); | ||
} | ||
|
||
.vuuToastNotifications-toastHeader{ | ||
font-size: 16px; | ||
font-weight: 700; | ||
.vuuToastNotification-toastHeader { | ||
font-size: 16px; | ||
font-weight: 700; | ||
} | ||
|
||
.vuuToastNotification-error { | ||
--notification-color: var(--salt-status-error-foreground); | ||
background: var(--salt-status-error-background); | ||
--notification-color: var(--salt-status-error-foreground); | ||
background: var(--salt-status-error-background); | ||
} | ||
|
||
.vuuToastNotification-success { | ||
--notification-color: var(--salt-status-success-foreground); | ||
background: var(--salt-status-success-background); | ||
background: var(--salt-status-success-background); | ||
} | ||
|
||
.vuuToastNotification-info { | ||
--notification-color: var(--salt-status-info-foreground); | ||
background: var(--salt-status-info-background); | ||
--notification-color: var(--salt-status-info-foreground); | ||
background: var(--salt-status-info-background); | ||
} | ||
|
||
.vuuToastNotification-warning { | ||
--notification-color: var(--salt-status-warning-foreground); | ||
background: var(--salt-status-warning-background); | ||
--notification-color: var(--salt-status-warning-foreground); | ||
background: var(--salt-status-warning-background); | ||
} | ||
|
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.salt-theme.vuu-theme { | ||
.vuuToastNotification { | ||
border-radius: 6px; | ||
} | ||
|
||
.vuuToastNotification-success { | ||
--vuu-icon-color: white; | ||
color: white; | ||
} | ||
.vuuToastNotification-info { | ||
--vuu-icon-color: white; | ||
color: white; | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
vuu-ui/packages/vuu-theme/css/components/save-layout-panel.css
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,6 @@ | ||
.salt-theme.vuu-theme { | ||
.vuuSaveLayoutPanel-inputText { | ||
font-family: Nunito Sans A-Variant, serif; | ||
font-feature-settings: "ss02" on, "ss01" on, "salt" on, "liga" off; | ||
} | ||
} |