first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,42 @@
/*shows the stars side by side, centered, and in reverse order than the HMTL*/
.emoji {
display: flex;
flex-direction: row-reverse;
justify-content: center;
}
/*hides the radio buttons*/
.emoji > input {
display: none;
}
/*style the empty stars, sets position:relative as base for pseudo-elements*/
.emoji > label {
position: relative;
width: 1.1em;
font-size: 2em;
color: #FFD700;
cursor: pointer;
}
/*overlays a filled start character on the selected element and all previous siblings*/
.ig-emoji.active {
border: 1px solid black;
}
#emoji-info {
font-size: 14px;
height: 15px;
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 14px;
}
p {
font-size: 12px;
}
}

View File

@@ -0,0 +1,68 @@
.ig-es-feedback-button {
height: 40px;
border: solid 3px #CCCCCC;
background: #333;
width: 100px;
line-height: 32px;
-webkit-transform: rotate(-90deg);
font-weight: 600;
color: white;
transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
text-align: center;
font-size: 17px;
position: fixed;
right: -40px;
top: 45%;
font-family: "Roboto", helvetica, arial, sans-serif;
z-index: 999;
cursor: pointer;
}
.ig-powered-by {
font-size: 12px;
}
/* General Feedback Form */
.ig-general-feedback .ig-feedback-data-name {
width: 50%;
float: left;
}
.ig-general-feedback .ig-feedback-data-email {
width: 50%;
float: left;
}
.ig-general-feedback .ig-feedback-data-email input,
.ig-general-feedback .ig-feedback-data-name input,
.email-subscribers_page_es_settings .ig-general-feedback .ig-feedback-data-email input,
.email-subscribers_page_es_settings .ig-general-feedback .ig-feedback-data-name input {
width: 84%;
}
.ig-general-feedback label {
display: inline-block;
margin-bottom: 3px;
color: #484848;
}
#swal2-content {
text-align: left;
}
.email-subscribers_page_es_settings .ig-feedback-data-message textarea, .ig-feedback-data-message textarea {
height: 200px;
width: 92%
}
.ig-feedback-data-poll-message textarea {
height: 100px;
width: 100%;
}
.swal2-actions {
margin: 0px !important;
}

View File

@@ -0,0 +1,52 @@
/*shows the stars side by side, centered, and in reverse order than the HMTL*/
.rating {
display: flex;
flex-direction: row-reverse;
justify-content: center;
}
/*hides the radio buttons*/
.rating > input{ display:none;}
/*style the empty stars, sets position:relative as base for pseudo-elements*/
.rating > label {
position: relative;
width: 1.1em;
font-size: 2em;
color: #FFD700;
cursor: pointer;
}
/* sets filled star pseudo-elements */
.rating > label::before{
content: "\2605";
position: absolute;
opacity: 0;
}
/*overlays a filled start character to the hovered element and all previous siblings*/
.rating > label:hover:before,
.rating > label:hover ~ label:before {
opacity: 1 !important;
}
/*overlays a filled start character on the selected element and all previous siblings*/
.rating > input:checked ~ label:before{
opacity:1;
}
/*when an element is selected and pointer re-enters the rating container, selected rate and siblings get semi transparent, as reminder of current selection*/
.rating:hover > input:checked ~ label:before{ opacity: 0.4; }
.rating > input[type=radio]:checked+label:before {
color: #FFD700;
}
.ig-feedback-title {
font-size: 20px;
line-height: 1.5em;
margin: 0em 0;
}
@media only screen and (max-width: 600px) {
h1{font-size: 14px;}
p{font-size: 12px;}
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 B

File diff suppressed because it is too large Load Diff