Skip to content

Commit 79db5fb

Browse files
committed
Add color change back for menu icon based on mode selection
1 parent 1ef709e commit 79db5fb

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

web/index.html

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,18 +141,35 @@
141141
margin-top: 3px;
142142
}
143143
#nav-container .icon-bar:nth-of-type(1) {
144-
background-color: #00ffff;
145-
box-shadow: 0px 0px 5px #00ffff, 0px 0px 2px #00ffff;
144+
background-color: #00ff00;
145+
box-shadow: 0px 0px 5px #00ff00, 0px 0px 2px #00ff00;
146146
}
147147
#nav-container .icon-bar:nth-of-type(2) {
148148
background-color: #ffff00;
149149
box-shadow: 0px 0px 5px #ffff00, 0px 0px 2px #ffff00;
150150
}
151151
#nav-container .icon-bar:nth-of-type(3) {
152+
background-color: #00ffff;
153+
box-shadow: 0px 0px 5px #00ffff, 0px 0px 2px #00ffff;
154+
}
155+
#nav-container .icon-bar:nth-of-type(4) {
156+
background-color: #ff00ff;
157+
box-shadow: 0px 0px 5px #ff00ff, 0px 0px 2px #ff00ff;
158+
}
159+
160+
#nav-container.mode-4c .icon-bar:nth-of-type(1) {
161+
background-color: #00ffff;
162+
box-shadow: 0px 0px 5px #00ffff, 0px 0px 2px #00ffff;
163+
}
164+
#nav-container.mode-4c .icon-bar:nth-of-type(2) {
165+
background-color: #ffff00;
166+
box-shadow: 0px 0px 5px #ffff00, 0px 0px 2px #ffff00;
167+
}
168+
#nav-container.mode-4c .icon-bar:nth-of-type(3) {
152169
background-color: #00ff00;
153170
box-shadow: 0px 0px 5px #00ff00, 0px 0px 2px #00ff00;
154171
}
155-
#nav-container .icon-bar:nth-of-type(4) {
172+
#nav-container.mode-4c .icon-bar:nth-of-type(4) {
156173
background-color: #ff00ff;
157174
box-shadow: 0px 0px 5px #ff00ff, 0px 0px 2px #ff00ff;
158175
}

0 commit comments

Comments
 (0)