-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce styling for live-questions and improve functionalities like…
… full-screen and showing videos even if their phase is over
- Loading branch information
Showing
9 changed files
with
142 additions
and
100 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
### Removed | ||
- styling for the video-wall that previously was packaged through webpack | ||
- will now be styled in first party css | ||
|
||
### Changed | ||
- allowed certain attributes for iframes to make fullscreen possible | ||
- styled ck iframe embeds with aspect ratio | ||
- show live streams even when phase is over | ||
|
||
### Added | ||
- added pill for live stream status |
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
23 changes: 23 additions & 0 deletions
23
meinberlin/assets/scss/components_user_facing/_video-wall.scss
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,23 @@ | ||
.video-wall { | ||
width: 100%; | ||
aspect-ratio: 16/9; | ||
border: none; | ||
position: relative; | ||
background: rgba($white, 0.85) url("/static/images/placeholder.png"); | ||
background-blend-mode: lighten; | ||
text-align: center; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 1.375em; | ||
|
||
button { | ||
@extend .button, .button--play | ||
} | ||
|
||
.video-link, | ||
strong { | ||
display: none; | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
meinberlin/assets/scss/components_user_facing/ck-editor/_iframe.scss
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,3 @@ | ||
.ck_embed_iframe { | ||
aspect-ratio: 16/9; | ||
} |
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