fixes #63, #67, #68, and #71, among other issues
This commit is contained in:
wukko
2023-01-14 00:34:48 +06:00
parent 1a1a4534b7
commit 3b5bf51ba7
19 changed files with 218 additions and 191 deletions

View File

@@ -72,13 +72,13 @@ a {
:focus-visible {
outline: var(--border-15);
}
[type=checkbox] {
margin-right: 0.8rem;
}
[type="checkbox"] {
-webkit-appearance: none;
margin-right: 0.8rem;
appearance: none;
margin-right: 1rem;
z-index: 0;
border: 0;
height: 15px;
}
[type="checkbox"]::before {
content: "";
@@ -91,9 +91,12 @@ a {
position: relative;
}
[type="checkbox"]:checked::before {
box-shadow: inset 0 0 0 0.2rem var(--accent-button-bg);
box-shadow: inset 0 0 0 0.14rem var(--accent-button-bg);
background-color: var(--accent);
}
.checkbox span {
margin-top: 0.21rem;
}
button {
background: none;
border: none;
@@ -421,7 +424,7 @@ input[type="checkbox"] {
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
padding: 0.6rem 1rem 0.6rem 0.6rem;
padding: 0.55rem 1rem 0.8rem 0.7rem;
width: auto;
margin: 0 0.5rem 0.5rem 0;
background: var(--accent-button-bg);
@@ -454,7 +457,7 @@ input[type="checkbox"] {
color: var(--accent-unhover-2);
}
.switch {
padding: 0.8rem;
padding: 0.7rem;
width: 100%;
text-align: center;
color: var(--accent);
@@ -509,6 +512,9 @@ input[type="checkbox"] {
position: relative;
width: 100%;
}
.popup-tabs {
margin-top: 0.5rem;
}
.emoji {
margin-right: 0.4rem;
}
@@ -573,9 +579,6 @@ input[type="checkbox"] {
margin-top: 0!important;
margin-bottom: 1rem;
}
.popup-tabs {
padding-top: 0.5rem;
}
/* adapt the page according to screen size */
@media screen and (min-width: 2300px) {
html {
@@ -754,7 +757,7 @@ input[type="checkbox"] {
.popup, .popup.scrollable, .popup.small {
border: none;
width: 90%;
height: 90%;
height: 92%;
max-height: 100%;
}
.bottom-link {

View File

@@ -1,7 +1,7 @@
let ua = navigator.userAgent.toLowerCase();
let isIOS = ua.match("iphone os");
let isMobile = ua.match("android") || ua.match("iphone os");
let version = 20;
let version = 21;
let regex = new RegExp(/https:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()!@:%_\+.~#?&\/\/=]*)/);
let notification = `<div class="notification-dot"></div>`

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB