Skip to content
Open
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
2 changes: 1 addition & 1 deletion AI-Debugger-widget-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ Continue creating and exploring! 🎵✨

*For questions, feedback, or support, please reach out to the development team.*

*Last updated: August 2025 | Version 1.0*
*Last updated: February 2026 | Version 1.0*
54 changes: 53 additions & 1 deletion css/activities.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,17 @@ body:not(.dark) #helpfulSearchDiv {
float: right;
font-size: 28px;
font-weight: bold;
background: none;
border: none;
padding: 0;
line-height: 1;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

.close:hover,
Expand Down Expand Up @@ -1990,10 +2001,25 @@ table {
transition: background-color 0.3s, filter 0.3s;
}

.msgCloseIcon:hover {
.msgCloseButton {
background: none;
border: none;
padding: 0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}

.msgCloseButton:hover .msgCloseIcon {
filter: invert(0%);
}

.msgCloseButton:focus {
outline: 2px solid #2196F3;
outline-offset: 2px;
}

.disable_highlighting {
user-select: none;
}
Expand Down Expand Up @@ -2172,6 +2198,32 @@ table {
}
}

#crossButton {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
background: #f2f2f2;
border: 1px solid #ccc;
border-radius: 4px;
width: 30px;
height: 30px;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
z-index: 10001;
}

#crossButton:hover {
background: #e0e0e0;
}

#crossButton:focus {
outline: 2px solid #2196F3;
outline-offset: 2px;
}

/* ======================================================
FIX: Center the Welcome Modal on Mobile
====================================================== */
Expand Down
Loading
Loading