Feature/copy logs (#1491)

* make text selectable on mobile

* make logs copyable and adjust copy format

* fix linting

* fix linting further

* linting

* add formatting to copied logs

* fix copy abstraction and add formatting for server log copy
This commit is contained in:
Lucy C
2022-06-09 10:21:39 -06:00
parent 09922c8dfa
commit 3cde39c7ed
10 changed files with 74 additions and 22 deletions

View File

@@ -1,5 +1,12 @@
$wide-modal: 900px;
body {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
ion-input {
caret-color: gray;
}
@@ -73,17 +80,17 @@ ion-modal::part(content) {
}
/* Hide scrollbar for IE, Edge and Firefox */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
/* IE and Edge */
-ms-overflow-style: none;
/* Firefox */
scrollbar-width: none;
}
.divider {
background: linear-gradient(
90deg,
var(--ion-color-light) 0,
var(--ion-color-dark) 50%,
var(--ion-color-light) 100%
);
background: linear-gradient(90deg,
var(--ion-color-light) 0,
var(--ion-color-dark) 50%,
var(--ion-color-light) 100%);
height: 1px;
}
@@ -98,5 +105,5 @@ ion-modal::part(content) {
}
.montserrat {
font-family: 'Montserrat', sans-serif!important;
}
font-family: 'Montserrat', sans-serif !important;
}