89 lines
1.8 KiB
CSS
89 lines
1.8 KiB
CSS
/*
|
|
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.
|
|
*/
|
|
|
|
.OpenLinkView .caption {
|
|
color: var(--grey);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ServerConsentView .actions label {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.ServerConsentView .actions {
|
|
margin-top: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.ServerConsentView input[type=submit] {
|
|
flex: 1;
|
|
margin-left: 32px;
|
|
}
|
|
|
|
.ServerOptions div {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.ServerOptions label {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.ServerOptions label > .line {
|
|
flex: 1;
|
|
border: none;
|
|
border-bottom: 1px solid var(--grey);
|
|
padding: 4px 0;
|
|
}
|
|
|
|
.OpeningClientView {
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
line-height: 150%;
|
|
}
|
|
|
|
.OpeningClientView .defaultAvatar {
|
|
width: 64px;
|
|
height: 64px;
|
|
background-image: url('../images/chat-icon.svg');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 85%;
|
|
}
|
|
|
|
.OpeningClientView .clientIcon {
|
|
border-radius: 8px;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
width: 60px;
|
|
height: 60px;
|
|
overflow: hidden;
|
|
display: block;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.OpeningClientView .timeoutOptions {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.OpeningClientView .spinner {
|
|
margin-top: 15px;
|
|
}
|