commit
6729859415
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Cookie Dialog Monster",
|
"name": "Cookie Dialog Monster",
|
||||||
"version": "6.3.1",
|
"version": "6.3.2",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_appDesc__",
|
"description": "__MSG_appDesc__",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
@ -31,7 +31,6 @@ const reportDialogHtml = `
|
|||||||
viewBox="0 0 24 24"
|
viewBox="0 0 24 24"
|
||||||
width="20"
|
width="20"
|
||||||
height="20"
|
height="20"
|
||||||
stroke="currentColor"
|
|
||||||
stroke-width="2"
|
stroke-width="2"
|
||||||
fill="none"
|
fill="none"
|
||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: var(--cookie-dialog-monster-color-secondary);
|
color: var(--cookie-dialog-monster-color-secondary);
|
||||||
font-family: Inter, Arial, Helvetica, sans-serif;
|
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
margin: auto !important;
|
margin: auto !important;
|
||||||
padding: 0px !important;
|
padding: 0px !important;
|
||||||
@ -37,6 +36,7 @@ report-dialog-body {
|
|||||||
|
|
||||||
report-dialog-body-text {
|
report-dialog-body-text {
|
||||||
display: block;
|
display: block;
|
||||||
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
@ -46,7 +46,6 @@ report-dialog-close-button {
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
color: inherit;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -56,10 +55,18 @@ report-dialog-close-button {
|
|||||||
transition: 0.4s;
|
transition: 0.4s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
report-dialog-close-button {
|
||||||
|
stroke: var(--cookie-dialog-monster-color-white);
|
||||||
|
}
|
||||||
|
|
||||||
|
report-dialog-close-button:focus,
|
||||||
|
report-dialog-close-button:hover > svg {
|
||||||
|
stroke: var(--cookie-dialog-monster-color-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
report-dialog-close-button:focus,
|
report-dialog-close-button:focus,
|
||||||
report-dialog-close-button:hover {
|
report-dialog-close-button:hover {
|
||||||
background-color: var(--cookie-dialog-monster-color-white);
|
background-color: var(--cookie-dialog-monster-color-white);
|
||||||
color: var(--cookie-dialog-monster-color-secondary);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
report-dialog-form-view[hidden] {
|
report-dialog-form-view[hidden] {
|
||||||
@ -69,7 +76,6 @@ report-dialog-form-view[hidden] {
|
|||||||
report-dialog-header {
|
report-dialog-header {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-color: var(--cookie-dialog-monster-color-secondary);
|
background-color: var(--cookie-dialog-monster-color-secondary);
|
||||||
color: var(--cookie-dialog-monster-color-white);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
height: 54px;
|
height: 54px;
|
||||||
@ -79,6 +85,8 @@ report-dialog-header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
report-dialog-header-title {
|
report-dialog-header-title {
|
||||||
|
color: var(--cookie-dialog-monster-color-white);
|
||||||
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,6 +94,7 @@ report-dialog-radio {
|
|||||||
color: var(--cookie-dialog-monster-color-tertiary);
|
color: var(--cookie-dialog-monster-color-tertiary);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: block;
|
display: block;
|
||||||
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
||||||
margin-top: 18px;
|
margin-top: 18px;
|
||||||
outline: none !important;
|
outline: none !important;
|
||||||
padding-left: 24px;
|
padding-left: 24px;
|
||||||
@ -148,7 +157,7 @@ report-dialog-submit-button {
|
|||||||
color: var(--cookie-dialog-monster-color-white);
|
color: var(--cookie-dialog-monster-color-white);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
font-family: inherit;
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
height: 39px;
|
height: 39px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -174,6 +183,7 @@ report-dialog-submit-button[aria-disabled='true'] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
report-dialog-submit-extra-text {
|
report-dialog-submit-extra-text {
|
||||||
|
font-family: inherit !important;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
@ -182,6 +192,7 @@ report-dialog-submit-extra-text {
|
|||||||
}
|
}
|
||||||
|
|
||||||
report-dialog-submit-text {
|
report-dialog-submit-text {
|
||||||
|
font-family: inherit !important;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
@ -193,6 +204,7 @@ report-dialog-submit-view {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
font-family: Inter, Arial, Helvetica, sans-serif;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
min-height: 269px;
|
min-height: 269px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user