2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-08-12 15:22:03 +05:30
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-08-12 15:22:03 +05:30
|
|
|
/** contains styles for everything before the session view, like the session picker, login, load view, ... */
|
|
|
|
|
|
|
|
.SessionPickerView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
}
|
|
|
|
|
2020-08-14 18:04:39 +05:30
|
|
|
.SessionPickerView .session-info {
|
2020-08-12 15:22:03 +05:30
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
2020-08-14 18:04:39 +05:30
|
|
|
align-items: center;
|
2020-10-08 19:23:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView .session-info > :not(:first-child) {
|
|
|
|
margin-left: 8px;
|
2020-08-12 15:22:03 +05:30
|
|
|
}
|
|
|
|
|
2020-08-14 18:04:39 +05:30
|
|
|
.SessionPickerView li .user-id {
|
2020-08-12 15:22:03 +05:30
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2020-08-14 18:04:39 +05:30
|
|
|
.SessionPickerView li .error {
|
2020-08-12 15:22:03 +05:30
|
|
|
margin: 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LoginView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
2020-05-03 04:38:53 +05:30
|
|
|
.SessionLoadView {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2020-10-08 19:23:13 +05:30
|
|
|
.SessionLoadView > :not(:first-child) {
|
|
|
|
margin-left: 12px;
|
|
|
|
}
|
|
|
|
|
2020-05-03 04:38:53 +05:30
|
|
|
.SessionLoadView p {
|
|
|
|
flex: 1;
|
2020-10-08 19:23:13 +05:30
|
|
|
margin: 0;
|
2020-05-03 04:38:53 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.SessionLoadView .spinner {
|
|
|
|
--size: 20px;
|
|
|
|
}
|