Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,16 +229,19 @@ div.spacer {
align-self: center;
position: fixed;
bottom: 25px;
padding-left: 5px;
transition: 0.5s;
}

#controls-container:hover {
#controls-container[checks] {
padding-left: 5px;
}

#controls-container[checks]:hover {
border-radius: 0 100vh 100vh 0;
transition: 0.5s;
}

#controls-container::before {
#controls-container[checks]::before {
content: attr(checks);
position: absolute;
bottom: 0;
Expand All @@ -253,7 +256,7 @@ div.spacer {
transition: 0.5s;
}

#controls-container:hover::before {
#controls-container[checks]:hover::before {
right: 100%;
background-color: var(--accent-color);
transition: 0.5s;
Expand Down
7 changes: 7 additions & 0 deletions src/modules/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,12 @@ export function suggestionsModal(event = null, suggestion = null) {
selectAll: !suggestion,
disabled: suggestion,
defaultValue: suggestion || '',
},
{
type: 'text',
label: 'Contact Information (Optional)',
placeholder: 'Email address, Instagram handle, Discord username, etc.',
required: false,
}
],
buttons: [
Expand All @@ -859,6 +865,7 @@ export function suggestionsModal(event = null, suggestion = null) {
"entry.470737118": storage.get("code"),
"entry.888169052": inputValues[0],
"entry.689497704": `${storage.get("code")}:${inputValues[1]}`,
"entry.1640008306": `${storage.get("code")}:${inputValues[2]}`,
};
const params = new URLSearchParams(fields).toString();
const url = "https://docs.google.com/forms/d/e/1FAIpQLSf5hoON2TQWxpzb1wMjW4EY2BbDtM-KLe-B7kUJj4FM6aExDw/formResponse?";
Expand Down
Loading