Browse Source
Merge pull request #16374 from nextcloud/backport/16357/stable32
[stable32] fix: fullscreen mode with non-default theme
pull/16377/head
Grigorii K. Shartsev
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
src/App.vue
|
|
|
@ -591,7 +591,8 @@ export default { |
|
|
|
} |
|
|
|
|
|
|
|
// Styles for the app content at fullscreen mode |
|
|
|
:root:has(body.talk-in-fullscreen) { |
|
|
|
:root:has(body.talk-in-fullscreen) /* Default theme values override */, |
|
|
|
body.talk-in-fullscreen /* Theme values override */ { |
|
|
|
--body-container-margin: 0px !important; |
|
|
|
--body-container-radius: 0px !important; |
|
|
|
--header-height: 0px !important; |
|
|
|
|