mirror of https://github.com/vector-im/riot-web
63 lines
1.7 KiB
SCSS
63 lines
1.7 KiB
SCSS
/*
|
|
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_DialPad {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
}
|
|
|
|
.mx_DialPad_button {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: $theme-button-bg-color;
|
|
border-radius: 40px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
line-height: 40px;
|
|
}
|
|
|
|
.mx_DialPad_deleteButton, .mx_DialPad_dialButton {
|
|
&::before {
|
|
content: '';
|
|
display: inline-block;
|
|
height: 40px;
|
|
width: 40px;
|
|
vertical-align: middle;
|
|
mask-repeat: no-repeat;
|
|
mask-size: 20px;
|
|
mask-position: center;
|
|
background-color: $primary-bg-color;
|
|
}
|
|
}
|
|
|
|
.mx_DialPad_deleteButton {
|
|
background-color: $notice-primary-color;
|
|
&::before {
|
|
mask-image: url('$(res)/img/element-icons/call/delete.svg');
|
|
mask-position: 9px; // delete icon is right-heavy so have to be slightly to the left to look centered
|
|
}
|
|
}
|
|
|
|
.mx_DialPad_dialButton {
|
|
background-color: $accent-color;
|
|
&::before {
|
|
mask-image: url('$(res)/img/element-icons/call/voice-call.svg');
|
|
}
|
|
}
|