-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b6b47e7
commit 346962a
Showing
19 changed files
with
472 additions
and
125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
@import 'bootstrap/scss/functions'; | ||
@import 'bootstrap/scss/variables'; | ||
@import 'bootstrap/scss/mixins'; | ||
|
||
.second-layer-modal-bg { | ||
background-color: var(--secondary); | ||
} | ||
|
@@ -35,3 +39,68 @@ | |
border-top: 1px solid; | ||
border-color: var(--bs-card-border-color); | ||
} | ||
|
||
.communication-message-wrap { | ||
min-width: 200px; | ||
} | ||
|
||
.communication-answer-message-wrap { | ||
max-width: min-content; | ||
display: flex; | ||
} | ||
|
||
@include media-breakpoint-down(sm) { | ||
Check warning on line 52 in src/main/webapp/app/overview/course-conversations/course-conversations.component.scss Codacy Production / Codacy Static Code Analysissrc/main/webapp/app/overview/course-conversations/course-conversations.component.scss#L52
|
||
.communication-content-sidebar { | ||
position: absolute; | ||
width: 100%; | ||
z-index: 2; | ||
pointer-events: none; | ||
|
||
& .sidebar-wrap, | ||
.communication-content-sidebar .sidebar-width { | ||
max-width: 0; | ||
} | ||
|
||
&.sidebar-collapsed { | ||
pointer-events: all; | ||
} | ||
|
||
&.sidebar-collapsed .sidebar-wrap, | ||
&.sidebar-collapsed .sidebar-width { | ||
max-width: 100%; | ||
} | ||
|
||
&.sidebar-collapsed .sidebar-width { | ||
width: 100%; | ||
} | ||
|
||
.sidebar-content { | ||
opacity: 0; | ||
} | ||
|
||
&.sidebar-collapsed .sidebar-content { | ||
opacity: 1; | ||
} | ||
|
||
.sidebar-wrap { | ||
Check warning on line 85 in src/main/webapp/app/overview/course-conversations/course-conversations.component.scss Codacy Production / Codacy Static Code Analysissrc/main/webapp/app/overview/course-conversations/course-conversations.component.scss#L85
|
||
margin-right: 0; | ||
} | ||
} | ||
|
||
.communication-message-wrap.is-answer-thread-open { | ||
display: none; | ||
} | ||
|
||
.communication-answer-message-wrap { | ||
max-width: 100%; | ||
display: none; | ||
} | ||
|
||
.communication-answer-message-wrap.is-answer-thread-open { | ||
display: flex; | ||
} | ||
|
||
.communication-message-wrap { | ||
max-width: 100%; | ||
} | ||
} |
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
Oops, something went wrong.