174 lines
2.9 KiB
CSS
174 lines
2.9 KiB
CSS
/*
|
|
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,
|
|
.iconCopyButton,
|
|
.secondary,
|
|
.copyButton {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.secondary,
|
|
.button,
|
|
.copyButton {
|
|
padding: 7px 15px;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.button {
|
|
color: #fff;
|
|
background-color: var(--primaryColor);
|
|
}
|
|
|
|
.toolbarButton {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50px;
|
|
background-color: var(--bgColor2);
|
|
}
|
|
|
|
.toolbarButton:hover {
|
|
background-color: var(--bgColor4);
|
|
}
|
|
|
|
.toolbarButton.on,
|
|
.toolbarButton.off {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.iconButton:not(.stroke) svg * {
|
|
fill: #ffffff;
|
|
}
|
|
|
|
.iconButton:not(.stroke):hover svg * {
|
|
fill: #0dbd8b;
|
|
}
|
|
|
|
.iconButton.on:not(.stroke) svg * {
|
|
fill: #0dbd8b;
|
|
}
|
|
|
|
.iconButton.on.stroke svg * {
|
|
stroke: #0dbd8b;
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.secondary,
|
|
.copyButton {
|
|
color: #0dbd8b;
|
|
border: 2px solid #0dbd8b;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.copyButton {
|
|
width: 100%;
|
|
height: 40px;
|
|
transition: border-color 250ms, background-color 250ms;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.iconCopyButton svg * {
|
|
fill: var(--textColor3);
|
|
}
|
|
|
|
.iconCopyButton:hover svg * {
|
|
fill: #0dbd8b;
|
|
}
|
|
|
|
.iconCopyButton.on svg *,
|
|
.iconCopyButton.on:hover svg * {
|
|
fill: transparent;
|
|
stroke: #0dbd8b;
|
|
}
|