2021-04-11 09:42:36 +00:00
|
|
|
:root {
|
|
|
|
--color-error: #cc0000;
|
2022-05-24 21:31:59 +00:00
|
|
|
--color-primary: #3dd9eb;
|
|
|
|
--color-secondary: #34495e;
|
2021-04-11 09:42:36 +00:00
|
|
|
--color-success: #5cb85c;
|
2022-05-24 21:31:59 +00:00
|
|
|
--color-tertiary: #6b7280;
|
2022-10-16 09:23:44 +00:00
|
|
|
--color-warning: #ffdf00;
|
2021-04-11 09:42:36 +00:00
|
|
|
--color-white: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-10-16 09:23:44 +00:00
|
|
|
box-sizing: border-box;
|
2022-05-24 21:31:59 +00:00
|
|
|
color: var(--color-tertiary);
|
2022-10-13 12:46:45 +00:00
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
2022-10-16 09:23:44 +00:00
|
|
|
width: 320px;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 13:54:57 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
body {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
body * {
|
|
|
|
box-sizing: border-box;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2023-09-25 16:38:52 +00:00
|
|
|
button {
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--color-secondary);
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: var(--color-white);
|
|
|
|
display: inline-flex;
|
|
|
|
gap: 4px;
|
|
|
|
outline: none;
|
|
|
|
padding: 2px;
|
|
|
|
transition: 0.4s;
|
|
|
|
|
2024-10-10 09:15:33 +00:00
|
|
|
&:focus:not(:disabled),
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
background-color: var(--color-white);
|
|
|
|
color: var(--color-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2023-09-25 16:38:52 +00:00
|
|
|
}
|
|
|
|
|
2022-05-24 21:31:59 +00:00
|
|
|
footer {
|
2022-07-20 08:14:33 +00:00
|
|
|
background-color: var(--color-secondary);
|
2024-10-10 09:15:33 +00:00
|
|
|
flex-shrink: 0;
|
2022-10-16 09:23:44 +00:00
|
|
|
font-size: 12px;
|
|
|
|
height: 4px;
|
2022-05-24 21:31:59 +00:00
|
|
|
margin-top: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--color-secondary);
|
|
|
|
color: var(--color-white);
|
|
|
|
display: flex;
|
2024-10-10 09:15:33 +00:00
|
|
|
flex-shrink: 0;
|
2022-10-16 09:23:44 +00:00
|
|
|
font-size: 16px !important;
|
|
|
|
height: 48px;
|
2022-05-24 21:31:59 +00:00
|
|
|
justify-content: space-between;
|
2022-10-16 09:23:44 +00:00
|
|
|
padding: 0 16px;
|
2024-10-10 09:15:33 +00:00
|
|
|
|
|
|
|
& .header-actions {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
|
|
|
|
& #report-button:focus:not(:disabled) > svg,
|
|
|
|
& #report-button:hover:not(:disabled) > svg {
|
|
|
|
color: var(--color-error);
|
|
|
|
}
|
|
|
|
}
|
2022-05-24 21:31:59 +00:00
|
|
|
}
|
|
|
|
|
2024-10-10 13:54:57 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
main {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 320px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-05 15:20:32 +00:00
|
|
|
main > .banner {
|
|
|
|
background-color: #f39c12;
|
|
|
|
color: #c0392b;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
&[aria-hidden='true'] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& #issue-banner-url {
|
|
|
|
color: inherit;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
main > .content {
|
2022-10-16 09:23:44 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
gap: 16px;
|
|
|
|
padding: 16px;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
popup-button {
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: grid;
|
|
|
|
font-size: 14px;
|
|
|
|
gap: 16px;
|
|
|
|
grid-template-rows: repeat(2, 1fr);
|
|
|
|
height: 136px;
|
|
|
|
justify-items: center;
|
|
|
|
outline: none;
|
|
|
|
padding: 8px;
|
|
|
|
text-align: center;
|
2021-04-11 09:42:36 +00:00
|
|
|
transition: 0.4s;
|
2022-10-16 09:23:44 +00:00
|
|
|
width: 100%;
|
|
|
|
word-break: break-word;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
popup-button:focus,
|
|
|
|
popup-button:hover {
|
2024-08-03 11:12:02 +00:00
|
|
|
box-shadow:
|
|
|
|
rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
|
|
|
|
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
popup-button > span {
|
|
|
|
align-self: flex-start;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
popup-button > svg {
|
|
|
|
align-self: flex-end;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2024-08-03 11:12:02 +00:00
|
|
|
popup-data {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
gap: 4px;
|
|
|
|
justify-content: center;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
popup-data:not(:first-child) {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2024-08-03 12:00:42 +00:00
|
|
|
popup-data-button {
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
|
|
|
transition: 0.4s;
|
|
|
|
}
|
|
|
|
|
2024-08-03 12:45:53 +00:00
|
|
|
popup-data-button[aria-disabled='true'] {
|
2024-08-03 12:00:42 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
popup-data-button[data-animation='flip']:focus,
|
|
|
|
popup-data-button[data-animation='flip']:hover {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
popup-data-button[data-refreshing='true'] {
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
to {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 11:12:02 +00:00
|
|
|
popup-data-container {
|
|
|
|
font-size: 12px;
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
justify-self: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-10-10 09:15:33 +00:00
|
|
|
.report {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.2;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
& .report-buttons {
|
|
|
|
margin-top: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-form {
|
|
|
|
display: grid;
|
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-form-view {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-form-view[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input {
|
|
|
|
all: unset;
|
|
|
|
border: 1px solid var(--color-tertiary);
|
|
|
|
border-radius: 4px;
|
|
|
|
color: var(--color-secondary);
|
|
|
|
cursor: text;
|
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1;
|
|
|
|
outline: none;
|
|
|
|
padding: 12px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input:hover {
|
|
|
|
border-color: var(--color-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input:focus {
|
|
|
|
border-color: var(--color-primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input:focus-visible {
|
|
|
|
box-shadow: initial;
|
|
|
|
transition: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input[aria-invalid='true'] {
|
|
|
|
border-color: var(--color-error);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input[aria-invalid='true'] + .report-input-error {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input[aria-multiline='false'] {
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
display: flex;
|
|
|
|
height: 40px;
|
|
|
|
overflow-x: auto;
|
|
|
|
scrollbar-width: none;
|
|
|
|
text-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input[aria-multiline='true'] {
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
height: 120px;
|
|
|
|
overflow-y: auto;
|
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input-error {
|
|
|
|
color: var(--color-error);
|
|
|
|
display: none;
|
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 10px;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input-group {
|
|
|
|
display: grid;
|
|
|
|
gap: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input-label {
|
|
|
|
color: var(--color-secondary);
|
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-input-label-required {
|
|
|
|
color: var(--color-error);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-cancel-button {
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--color-white);
|
|
|
|
border: 1px solid var(--color-white);
|
|
|
|
border-radius: 4px;
|
|
|
|
color: var(--color-secondary);
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
height: 34px;
|
|
|
|
justify-content: center;
|
|
|
|
line-height: 1.2;
|
|
|
|
outline: none;
|
|
|
|
padding: 8px 16px 0px 16px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-cancel-button:focus,
|
|
|
|
& .report-cancel-button:hover {
|
|
|
|
color: var(--color-error);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-issue-button,
|
|
|
|
& .report-submit-button {
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--color-secondary);
|
|
|
|
border: 1px solid var(--color-secondary);
|
|
|
|
border-radius: 4px;
|
|
|
|
color: var(--color-white);
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
height: 42px;
|
|
|
|
justify-content: center;
|
|
|
|
line-height: 1.2;
|
|
|
|
margin-top: 8px;
|
|
|
|
outline: none;
|
|
|
|
padding: 8px 16px;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-issue-button:focus,
|
|
|
|
& .report-issue-button:hover,
|
|
|
|
& .report-submit-button:focus,
|
|
|
|
& .report-submit-button:hover {
|
|
|
|
background-color: var(--color-white);
|
|
|
|
color: var(--color-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-issue-button:focus-visible,
|
|
|
|
& .report-submit-button:focus-visible {
|
|
|
|
box-shadow: initial;
|
|
|
|
transition: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-issue-button[aria-disabled='true'],
|
|
|
|
& .report-submit-button[aria-disabled='true'] {
|
|
|
|
background-color: var(--color-tertiary);
|
|
|
|
border: 1px solid var(--color-tertiary);
|
|
|
|
color: var(--color-white);
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-submit-extra-text {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.2;
|
|
|
|
margin: 0px;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .report-submit-text {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1.2;
|
|
|
|
margin: 0px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2024-10-10 11:41:50 +00:00
|
|
|
& .report-submit-error-view,
|
|
|
|
& .report-submit-success-view {
|
2024-10-10 09:15:33 +00:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
|
|
gap: 24px;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
2024-10-10 11:41:50 +00:00
|
|
|
& .report-submit-error-view[hidden],
|
|
|
|
& .report-submit-success-view[hidden] {
|
2024-10-10 09:15:33 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
strong {
|
|
|
|
font-weight: bold;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2024-08-03 12:00:42 +00:00
|
|
|
#refresh-database-check {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
#power-option {
|
2022-05-24 21:31:59 +00:00
|
|
|
color: var(--color-white);
|
2022-10-13 15:16:35 +00:00
|
|
|
word-break: break-all;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
#power-option[data-value='off'] {
|
|
|
|
background-color: var(--color-error);
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
#power-option[data-value='on'] {
|
|
|
|
background-color: var(--color-success);
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
#rate-option > svg {
|
2022-05-24 21:31:59 +00:00
|
|
|
transition: 0.4s;
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-16 09:23:44 +00:00
|
|
|
#rate-option:focus > svg,
|
|
|
|
#rate-option:hover > svg {
|
|
|
|
color: var(--color-warning);
|
|
|
|
fill: var(--color-warning);
|
2021-04-11 09:42:36 +00:00
|
|
|
}
|