2019-05-09 19:27:14 +02:00
|
|
|
.networks-tab {
|
|
|
|
&__content {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 739px;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-top: 0;
|
2020-10-27 22:55:09 +01:00
|
|
|
flex-direction: column;
|
|
|
|
overflow-x: hidden;
|
2020-10-28 23:29:31 +01:00
|
|
|
align-items: center;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
2019-06-17 16:05:47 +02:00
|
|
|
padding-right: 24px;
|
2019-05-09 19:27:14 +02:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-04 22:48:21 +01:00
|
|
|
&__subheader {
|
|
|
|
@include H4;
|
|
|
|
|
|
|
|
padding: 16px 4px;
|
2022-03-23 16:16:15 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
2021-11-04 22:48:21 +01:00
|
|
|
height: 72px;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__subheader--break {
|
|
|
|
margin-inline-start: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__sub-header-text {
|
|
|
|
@include H4;
|
|
|
|
|
2022-03-23 16:16:15 +01:00
|
|
|
color: var(--color-text-muted);
|
2021-11-04 22:48:21 +01:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2019-05-09 19:27:14 +02:00
|
|
|
&__network-form {
|
|
|
|
display: flex;
|
2022-02-04 19:14:52 +01:00
|
|
|
flex: 1 0;
|
2019-05-09 19:27:14 +02:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
2020-10-28 23:29:31 +01:00
|
|
|
max-height: 465px;
|
2021-11-04 22:48:21 +01:00
|
|
|
margin-top: 24px;
|
2019-05-09 19:27:14 +02:00
|
|
|
|
|
|
|
.page-container__footer {
|
|
|
|
border-top: none;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
width: 93%;
|
|
|
|
}
|
|
|
|
|
2020-02-27 23:00:20 +01:00
|
|
|
footer {
|
2020-07-15 15:13:40 +02:00
|
|
|
padding: 10px 0;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
display: flex;
|
|
|
|
flex: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
align-items: center;
|
2021-11-04 22:48:21 +01:00
|
|
|
width: 90%;
|
2019-05-09 19:27:14 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-04 22:48:21 +01:00
|
|
|
&__add-network-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-height: 465px;
|
|
|
|
}
|
2020-06-12 20:21:29 +02:00
|
|
|
|
2021-11-04 22:48:21 +01:00
|
|
|
&__network-form-body {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
width: 95%;
|
2020-10-29 17:31:48 +01:00
|
|
|
|
2021-11-04 22:48:21 +01:00
|
|
|
&__view-only {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2020-10-27 22:55:09 +01:00
|
|
|
|
2021-11-04 22:48:21 +01:00
|
|
|
&__add-network-form-body {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 48% 48%;
|
|
|
|
column-gap: 5%;
|
|
|
|
margin-top: 24px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-05-09 19:27:14 +02:00
|
|
|
&__networks-list {
|
|
|
|
flex: 0.5 0 auto;
|
|
|
|
max-width: 343px;
|
2021-11-04 22:48:21 +01:00
|
|
|
margin-top: 24px;
|
2019-05-09 19:27:14 +02:00
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-10-29 00:10:41 +01:00
|
|
|
flex: 1;
|
|
|
|
overflow-y: auto;
|
2019-05-09 19:27:14 +02:00
|
|
|
max-width: 100vw;
|
|
|
|
width: 100vw;
|
2021-11-04 22:48:21 +01:00
|
|
|
margin-top: 0;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-29 00:10:41 +01:00
|
|
|
&__networks-list-popup-footer {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding-top: 23px;
|
|
|
|
padding-bottom: 23px;
|
2022-03-23 16:16:15 +01:00
|
|
|
border-top: 1px solid var(--color-border-default);
|
2019-05-09 19:27:14 +02:00
|
|
|
|
2020-10-29 00:10:41 +01:00
|
|
|
.button {
|
|
|
|
width: 178px;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__add-network-header-button-wrapper {
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.button {
|
2019-06-17 16:05:47 +02:00
|
|
|
width: 138px;
|
|
|
|
padding: 10px;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__networks-list--selection {
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__networks-list-item {
|
|
|
|
display: flex;
|
2020-07-15 15:13:40 +02:00
|
|
|
padding: 13px 0 13px 17px;
|
2019-05-09 19:27:14 +02:00
|
|
|
position: relative;
|
2021-01-27 17:51:59 +01:00
|
|
|
align-items: center;
|
2019-05-09 19:27:14 +02:00
|
|
|
|
2021-01-27 17:51:59 +01:00
|
|
|
.color-indicator {
|
2019-05-09 19:27:14 +02:00
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-10-28 23:29:31 +01:00
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-10-28 23:29:31 +01:00
|
|
|
margin: 0 4px 0 10px;
|
|
|
|
}
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
padding: 20px 23px 21px 17px;
|
2022-03-23 16:16:15 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
2020-10-28 21:54:39 +01:00
|
|
|
max-width: 351px;
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__networks-list-item:last-of-type {
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__networks-list-name {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-05-09 19:27:14 +02:00
|
|
|
margin-left: 11px;
|
2022-03-23 16:16:15 +01:00
|
|
|
color: var(--color-text-alternative);
|
2020-10-28 22:54:24 +01:00
|
|
|
width: 70%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2019-05-09 19:27:14 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-08-19 17:01:58 +02:00
|
|
|
|
|
|
|
svg {
|
|
|
|
margin-left: 10px;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__networks-list-arrow {
|
|
|
|
display: none;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-05-09 19:27:14 +02:00
|
|
|
display: block;
|
|
|
|
right: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
2020-10-28 21:54:39 +01:00
|
|
|
margin: 0 5px;
|
2019-09-03 19:47:54 +02:00
|
|
|
|
|
|
|
[dir='rtl'] & {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__networks-list-name--selected {
|
|
|
|
font-weight: bold;
|
2022-03-15 02:26:51 +01:00
|
|
|
color: var(--color-text-default);
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
2020-08-19 17:01:58 +02:00
|
|
|
|
|
|
|
&__networks-list-name--disabled {
|
|
|
|
font-weight: 300;
|
2022-03-23 16:16:15 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-08-19 17:01:58 +02:00
|
|
|
}
|
2019-06-17 16:05:47 +02:00
|
|
|
|
2021-11-04 22:48:21 +01:00
|
|
|
&__network-form-footer {
|
2019-06-17 16:05:47 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
2021-09-08 17:40:15 +02:00
|
|
|
padding: 0.75rem 0;
|
2021-11-04 22:48:21 +01:00
|
|
|
width: 95%;
|
2019-06-17 16:05:47 +02:00
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-10-27 23:36:50 +01:00
|
|
|
width: 93%;
|
|
|
|
}
|
|
|
|
|
2021-10-05 21:20:42 +02:00
|
|
|
.btn-secondary {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-right: 0.375rem;
|
2019-06-17 16:05:47 +02:00
|
|
|
}
|
|
|
|
|
2021-10-05 21:20:42 +02:00
|
|
|
.btn-primary {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-left: 0.375rem;
|
2019-06-17 16:05:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-danger {
|
|
|
|
margin-right: 3.75rem;
|
|
|
|
}
|
|
|
|
}
|
2021-11-04 22:48:21 +01:00
|
|
|
|
|
|
|
&__add-network-form-footer {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
padding: 0.75rem 0;
|
|
|
|
width: 60%;
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
2019-06-17 16:05:47 +02:00
|
|
|
}
|