2020-06-08 16:06:35 +05:30
|
|
|
.visually-hidden {
|
|
|
|
position: absolute !important;
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
white-space: nowrap; /* added line */
|
|
|
|
}
|
|
|
|
|
|
|
|
.LoadingMessage {
|
2020-07-02 18:57:47 +05:30
|
|
|
position: absolute;
|
2020-06-08 16:06:35 +05:30
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.LoadingMessage span {
|
2020-08-14 13:27:41 +02:00
|
|
|
background-color: var(--button-gray-1);
|
2020-06-08 16:06:35 +05:30
|
|
|
border-radius: 5px;
|
|
|
|
padding: 0.8em 1.2em;
|
2020-08-14 13:27:41 +02:00
|
|
|
color: var(--popup-text-color);
|
2020-06-08 16:06:35 +05:30
|
|
|
font-size: 1.3em;
|
|
|
|
}
|