8.0.0 #3

Merged
wanhose merged 30 commits from v8.0.0 into main 2024-10-15 15:01:19 +00:00
4 changed files with 30 additions and 1 deletions
Showing only changes of commit 74b479380b - Show all commits

View File

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookie Dialog Monster > Exclusion List</title> <title>Cookie Dialog Monster > Exclusion List</title>
<link rel="stylesheet" href="/styles/reset.css" /> <link rel="stylesheet" href="/styles/reset.css" />
<link rel="stylesheet" href="/styles/options.css" /> <link rel="stylesheet" href="/styles/options.css" />

View File

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/styles/reset.css" /> <link rel="stylesheet" href="/styles/reset.css" />
<link rel="stylesheet" href="/styles/popup.css" /> <link rel="stylesheet" href="/styles/popup.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter" />

View File

@ -40,6 +40,12 @@ button[data-variant='large'] {
padding: 8px; padding: 8px;
} }
@media (max-width: 768px) {
button[data-variant='large'] {
justify-content: flex-end;
}
}
button:focus, button:focus,
button:hover { button:hover {
background-color: var(--color-secondary); background-color: var(--color-secondary);
@ -104,11 +110,18 @@ main {
.button-group { .button-group {
display: flex; display: flex;
justify-content: flex-end;
gap: 4px; gap: 4px;
justify-content: flex-end;
margin-bottom: 4px; margin-bottom: 4px;
} }
@media (max-width: 768px) {
.button-group {
display: grid;
grid-template-columns: repeat(2, minmax(0px, 1fr));
}
}
#exclusion-list { #exclusion-list {
font-size: 14px; font-size: 14px;
list-style: none; list-style: none;

View File

@ -15,6 +15,12 @@ body {
width: 320px; width: 320px;
} }
@media (max-width: 768px) {
body {
width: auto;
}
}
body * { body * {
box-sizing: border-box; box-sizing: border-box;
} }
@ -74,6 +80,14 @@ header {
} }
} }
@media (max-width: 768px) {
main {
margin: 0 auto;
max-width: 320px;
width: 100%;
}
}
main > .banner { main > .banner {
background-color: #f39c12; background-color: #f39c12;
color: #c0392b; color: #c0392b;