2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2020-03-13 01:02:50 +01:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2018-04-12 01:23:35 +02:00
|
|
|
|
|
|
|
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_NetworkDropdown {
|
2020-03-13 01:02:50 +01:00
|
|
|
height: 32px;
|
2018-04-12 01:23:35 +02:00
|
|
|
position: relative;
|
2020-03-13 01:02:50 +01:00
|
|
|
width: max-content;
|
|
|
|
padding-right: 32px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 9px;
|
|
|
|
margin-top: 12px;
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_AccessibleButton {
|
|
|
|
width: max-content;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_menu {
|
2020-03-13 01:11:09 +01:00
|
|
|
min-width: 204px;
|
2020-03-13 01:02:50 +01:00
|
|
|
margin: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid $accent-color;
|
|
|
|
background-color: $primary-bg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_menu_network {
|
|
|
|
font-weight: bold;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_server {
|
|
|
|
padding: 12px 0;
|
|
|
|
border-bottom: 1px solid $input-darker-fg-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_server_title {
|
|
|
|
padding: 0 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-bottom: 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
// remove server button
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
position: absolute;
|
|
|
|
display: inline;
|
|
|
|
right: 0;
|
|
|
|
|
2020-03-13 15:19:38 +01:00
|
|
|
&::after {
|
2020-03-13 01:02:50 +01:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
right: 12px;
|
|
|
|
top: 4px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-image: url('$(res)/img/feather-customised/x.svg');
|
|
|
|
background-color: $notice-primary-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_NetworkDropdown_server_subtitle {
|
|
|
|
padding: 0 10px;
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 14px;
|
|
|
|
margin-top: -4px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
color: $muted-fg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_NetworkDropdown_server_network {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 16px;
|
|
|
|
padding: 4px 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
&[aria-checked=true]::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
right: 10px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-image: url('$(res)/img/feather-customised/check.svg');
|
|
|
|
background-color: $input-valid-border-color;
|
|
|
|
}
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_server_add,
|
|
|
|
.mx_NetworkDropdown_server_network {
|
|
|
|
&:hover {
|
|
|
|
background-color: $header-panel-bg-color;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_server_add {
|
|
|
|
padding: 16px 10px 16px 32px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
left: 7px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-image: url('$(res)/img/feather-customised/plus.svg');
|
|
|
|
background-color: $muted-fg-color;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2020-03-13 01:02:50 +01:00
|
|
|
.mx_NetworkDropdown_handle {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
right: -28px; // - (24 + 4)
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-image: url('$(res)/img/feather-customised/chevron-down.svg');
|
|
|
|
background-color: $primary-fg-color;
|
|
|
|
}
|
2020-03-13 01:18:53 +01:00
|
|
|
|
|
|
|
.mx_NetworkDropdown_handle_server {
|
|
|
|
color: $muted-fg-color;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2020-03-13 01:02:50 +01:00
|
|
|
}
|