mirror of https://github.com/vector-im/riot-web
Fix dropdown button size for picture-in-picture CallView (#8680)
parent
6cdeb64408
commit
ed2c79051e
|
@ -24,6 +24,8 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_CallViewButtons {
|
.mx_CallViewButtons {
|
||||||
|
--CallViewButtons_dropdownButton-size: 16px;
|
||||||
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -65,8 +67,8 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
&.mx_CallViewButtons_dropdownButton {
|
&.mx_CallViewButtons_dropdownButton {
|
||||||
width: 16px;
|
width: var(--CallViewButtons_dropdownButton-size);
|
||||||
height: 16px;
|
height: var(--CallViewButtons_dropdownButton-size);
|
||||||
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
|
|
@ -165,6 +165,11 @@ limitations under the License.
|
||||||
width: 34px;
|
width: 34px;
|
||||||
height: 34px;
|
height: 34px;
|
||||||
|
|
||||||
|
&.mx_CallViewButtons_dropdownButton {
|
||||||
|
width: var(--CallViewButtons_dropdownButton-size);
|
||||||
|
height: var(--CallViewButtons_dropdownButton-size);
|
||||||
|
}
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
width: 22px;
|
width: 22px;
|
||||||
height: 22px;
|
height: 22px;
|
||||||
|
|
Loading…
Reference in New Issue