-
Notifications
You must be signed in to change notification settings - Fork 357
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 #4376 from coralproject/feat/dsa-notifications
DSA Notifications
- Loading branch information
Showing
66 changed files
with
1,550 additions
and
34 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
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 |
---|---|---|
|
@@ -129,4 +129,6 @@ extend type Local { | |
refreshStream: Boolean | ||
|
||
dsaFeaturesEnabled: Boolean | ||
|
||
hasNewNotifications: Boolean | ||
} |
47 changes: 47 additions & 0 deletions
47
client/src/core/client/stream/tabs/Notifications/NotificationCommentContainer.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,47 @@ | ||
.toggle { | ||
padding: 0; | ||
margin-bottom: var(--spacing-1); | ||
|
||
border-style: none; | ||
|
||
background-color: transparent; | ||
|
||
color: var(--palette-primary-300); | ||
font-family: var(--font-family-primary); | ||
font-style: normal; | ||
font-weight: var(--font-weight-primary-bold); | ||
font-size: var(--font-size-2); | ||
|
||
&:hover, | ||
&.mouseHover { | ||
color: var(--palette-primary-200); | ||
} | ||
&:active, | ||
&.active { | ||
color: var(--palette-primary-400); | ||
} | ||
} | ||
|
||
.content { | ||
border-left-style: solid; | ||
border-left-width: 2px; | ||
border-left-color: var(--palette-grey-400); | ||
|
||
padding-left: var(--spacing-3); | ||
} | ||
|
||
.timestamp { | ||
font-family: var(--font-family-primary); | ||
font-style: normal; | ||
font-weight: var(--font-weight-primary-semi-bold); | ||
font-size: var(--font-size-2); | ||
color: var(--palette-grey-500); | ||
} | ||
|
||
.storyTitle { | ||
font-family: var(--font-family-primary); | ||
font-style: normal; | ||
font-weight: var(--font-weight-primary-semi-bold); | ||
font-size: var(--font-size-2); | ||
color: var(--palette-text-900); | ||
} |
Oops, something went wrong.