Skip to content

Commit

Permalink
colorselect interactive preview update
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Aug 16, 2024
1 parent 070e989 commit b7074e7
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions docs/color_select_menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ grand_parent: Vortex Engine
---

<style>
.empty {
background-color: #222; /* Different background color for empty slots */
border: 2px dashed #555; /* Dashed border to distinguish empty slots */
}

.add-slot {
background-color: #fff;
color: #000;
font-weight: bold;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}

.slot {
width: 50px;
height: 50px;
Expand All @@ -21,21 +37,12 @@ grand_parent: Vortex Engine
text-align: center;
}

.empty {
background-color: #222; /* Different background color for empty slots */
border: 2px dashed #555; /* Dashed border to distinguish empty slots */
@keyframes flashRed {
0% { background-color: inherit; }
50% { background-color: red; }
100% { background-color: inherit; }
}

.add-slot {
background-color: #fff;
color: #000;
font-weight: bold;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}

.plus-icon {
font-size: 24px;
Expand Down

0 comments on commit b7074e7

Please sign in to comment.