mirror of https://github.com/vector-im/riot-web
95 lines
1.8 KiB
SCSS
95 lines
1.8 KiB
SCSS
|
/*
|
||
|
Copyright 2015, 2016 OpenMarket Ltd
|
||
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
.mx_CallView2_voice {
|
||
|
background-color: $accent-color;
|
||
|
color: $accent-fg-color;
|
||
|
cursor: pointer;
|
||
|
padding: 6px;
|
||
|
font-weight: bold;
|
||
|
|
||
|
border-radius: 8px;
|
||
|
min-width: 200px;
|
||
|
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
img {
|
||
|
margin: 4px;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
> div {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
// Hacky vertical align
|
||
|
padding-top: 3px;
|
||
|
}
|
||
|
|
||
|
> div > p,
|
||
|
> div > h1 {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-size: $font-13px;
|
||
|
line-height: $font-15px;
|
||
|
}
|
||
|
|
||
|
> div > p {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
> * {
|
||
|
flex-grow: 0;
|
||
|
flex-shrink: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.mx_CallView2_hangup {
|
||
|
position: absolute;
|
||
|
|
||
|
right: 8px;
|
||
|
bottom: 10px;
|
||
|
|
||
|
height: 35px;
|
||
|
width: 35px;
|
||
|
|
||
|
border-radius: 35px;
|
||
|
|
||
|
background-color: $notice-primary-color;
|
||
|
|
||
|
z-index: 101;
|
||
|
|
||
|
cursor: pointer;
|
||
|
|
||
|
&::before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
|
||
|
height: 20px;
|
||
|
width: 20px;
|
||
|
|
||
|
top: 6.5px;
|
||
|
left: 7.5px;
|
||
|
|
||
|
mask: url('$(res)/img/hangup.svg');
|
||
|
mask-size: contain;
|
||
|
background-size: contain;
|
||
|
|
||
|
background-color: $primary-fg-color;
|
||
|
}
|
||
|
}
|