element-call/src/button/Button.module.css

157 lines
2.7 KiB
CSS
Raw Normal View History

2021-12-07 11:59:57 -08:00
/*
Copyright 2021 New Vector Ltd
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.
*/
.button,
.toolbarButton,
.iconButton {
position: relative;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
padding: 0;
border: none;
cursor: pointer;
}
.button {
color: #fff;
background-color: var(--primaryColor);
padding: 7px 15px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
}
.toolbarButton {
width: 50px;
height: 50px;
border-radius: 50px;
background-color: #394049;
}
.toolbarButton:hover {
background-color: #8d97a5;
}
.toolbarButton.on,
.toolbarButton.off {
background-color: #ffffff;
}
2021-12-07 17:59:55 -08:00
.iconButton:not(.stroke) svg * {
2021-12-07 11:59:57 -08:00
fill: #8e99a4;
}
2021-12-07 17:59:55 -08:00
.iconButton:not(.stroke):hover svg * {
2021-12-07 11:59:57 -08:00
fill: #8d97a5;
}
2021-12-07 17:59:55 -08:00
.iconButton.on:not(.stroke) svg * {
fill: #0dbd8b;
2021-12-07 11:59:57 -08:00
}
2021-12-07 17:59:55 -08:00
.iconButton.on.stroke svg * {
stroke: #0dbd8b;
2021-12-07 11:59:57 -08:00
}
.hangupButton,
.hangupButton:hover {
background-color: #ff5b55;
}
.toolbarButton.on svg * {
fill: #0dbd8b;
}
.toolbarButton.off svg * {
fill: #21262c;
}
.buttonTooltip {
display: none;
background-color: var(--bgColor2);
position: absolute;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 10px;
color: var(--textColor1);
border-radius: 8px;
max-width: 135px;
width: max-content;
z-index: 1;
}
.buttonTooltip.bottomRight {
right: 0;
}
.toolbarButton:hover .buttonTooltip {
display: flex;
bottom: calc(100% + 6px);
}
.iconButton:hover .buttonTooltip {
display: flex;
top: calc(100% + 6px);
}
.copyButton {
position: relative;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
cursor: pointer;
border: 2px solid #0dbd8b;
border-radius: 8px;
color: #0dbd8b;
width: 100%;
height: 40px;
transition: border-color 250ms, background-color 250ms;
padding: 0 20px;
2021-12-10 10:54:18 -08:00
flex-shrink: 0;
2021-12-07 11:59:57 -08:00
}
.copyButton span {
font-weight: 600;
font-size: 15px;
margin-right: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
flex: 1;
}
.copyButton svg {
flex-shrink: 0;
}
.copyButton:not(.on) svg * {
fill: #0dbd8b;
}
.copyButton.on {
border-color: transparent;
background-color: #0dbd8b;
color: white;
}
.copyButton.on svg * {
stroke: white;
}