Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 33617b0

Browse files
authored
Merge pull request #5701 from SimonBrandner/fix-pip-color
Fix VoIP PIP frame color
2 parents dd8abb0 + 9b2eb8e commit 33617b0

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

res/css/views/voip/_CallView.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717

1818
.mx_CallView {
1919
border-radius: 8px;
20-
background-color: $voipcall-plinth-color;
20+
background-color: $dark-panel-bg-color;
2121
padding-left: 8px;
2222
padding-right: 8px;
2323
// XXX: CallContainer sets pointer-events: none - should probably be set back in a better place
@@ -40,7 +40,8 @@ limitations under the License.
4040
width: 320px;
4141
padding-bottom: 8px;
4242
margin-top: 10px;
43-
box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.08);
43+
background-color: $voipcall-plinth-color;
44+
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.20);
4445
border-radius: 8px;
4546

4647
.mx_CallView_voice {

res/themes/dark/css/_dark.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ $header-divider-color: $header-panel-text-primary-color;
112112
$composer-e2e-icon-color: $header-panel-text-primary-color;
113113

114114
// this probably shouldn't have it's own colour
115-
$voipcall-plinth-color: #21262c;
115+
$voipcall-plinth-color: #394049;
116116

117117
// ********************
118118

res/themes/legacy-dark/css/_legacy-dark.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ $header-divider-color: $header-panel-text-primary-color;
109109
$composer-e2e-icon-color: $header-panel-text-primary-color;
110110

111111
// this probably shouldn't have it's own colour
112-
$voipcall-plinth-color: #f2f5f8;
112+
$voipcall-plinth-color: #394049;
113113

114114
// ********************
115115

res/themes/legacy-light/css/_legacy-light.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ $composer-e2e-icon-color: #91a1c0;
176176
$header-divider-color: #91a1c0;
177177

178178
// this probably shouldn't have it's own colour
179-
$voipcall-plinth-color: #f2f5f8;
179+
$voipcall-plinth-color: #F4F6FA;
180180

181181
// ********************
182182

res/themes/light/css/_light.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ $composer-e2e-icon-color: #91A1C0;
167167
$header-divider-color: #91A1C0;
168168

169169
// this probably shouldn't have it's own colour
170-
$voipcall-plinth-color: #f2f5f8;
170+
$voipcall-plinth-color: #F4F6FA;
171171

172172
// ********************
173173

0 commit comments

Comments
 (0)