1
0
Fork 0
mirror of https://git.youjo.love/youjo/youjo-fe.git synced 2025-02-24 22:23:03 +01:00

Merge branch 'fix/RED-LINE' into 'develop'

fix  Add back conversation red line

Closes 

See merge request 
This commit is contained in:
HJ 2020-11-21 12:10:39 +00:00
commit 14ce0c1c07
3 changed files with 3 additions and 7 deletions
CHANGELOG.md
src/components
conversation
status

View file

@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Fixed the occasional bug where screen would scroll 1px when typing into a reply form
- Fixed timeline errors locking timelines
- Fixed missing highlighted border in expanded conversations
### Changed
- Errors when fetching are now shown with popup errors instead of "Error fetching updates" in panel headers

View file

@ -57,13 +57,6 @@
}
&.-expanded {
.conversation-status {
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
border-left-color: $fallback--cRed;
border-left-color: var(--cRed, $fallback--cRed);
}
.conversation-status:last-child {
border-bottom: none;
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;

View file

@ -29,6 +29,8 @@ $status-margin: 0.75em;
&.-conversation {
border-left-width: 4px;
border-left-style: solid;
border-left-color: $fallback--cRed;
border-left-color: var(--cRed, $fallback--cRed);
}
.gravestone {