Skip to content

Commit 320eb1a

Browse files
committed
Updated sort mechanism and delete notification for dark mode
Signed-off-by: Justin Charles <charlesjustin2124@gmail.com>
1 parent 1419cb0 commit 320eb1a

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

planet/css/darkMode.css

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,70 @@
103103

104104
.dark-mode #global-projects .card .btn:hover {
105105
background-color: #388e3c;
106+
}
107+
108+
.dark-mode .modal-footer .btn-flat {
109+
color: #ffffff !important;
110+
background-color: transparent !important;
111+
transition: background-color 0.3s ease, color 0.3s ease;
112+
font-weight: bold;
113+
}
114+
115+
.dark-mode .modal-footer .btn-flat:hover {
116+
background-color: #a8d5a8 !important;
117+
color: #303030 !important;
118+
}
119+
.dark-mode .close-button {
120+
color: #e0e0e0;
121+
font-size: 1.5rem;
122+
transition: color 0.3s ease;
123+
}
124+
125+
.dark-mode .close-button:hover {
126+
color: #a8d5a8;
127+
}
128+
129+
.dark-mode .select-wrapper {
130+
position: relative;
131+
height: 3rem;
132+
line-height: 3rem;
133+
margin-top: 0.5rem;
134+
}
135+
136+
.dark-mode .select-wrapper input.select-dropdown {
137+
color: #ffffff !important;
138+
font-size: 1rem;
139+
line-height: normal;
140+
padding-left: 10px;
141+
height: 3rem;
142+
box-sizing: border-box;
143+
background-color: #424242 !important;
144+
border: 1px solid #444444 !important;
145+
}
146+
147+
.dark-mode .select-wrapper:after {
148+
content: '\25BC';
149+
position: absolute;
150+
top: 50%;
151+
right: 10px;
152+
transform: translateY(-50%);
153+
color: #ffffff !important;
154+
font-size: 0.8rem;
155+
pointer-events: none;
156+
}
157+
158+
.dark-mode .dropdown-content {
159+
background-color: #424242 !important;
160+
border: 1px solid #444444;
161+
color: #ffffff !important;
162+
}
163+
164+
.dark-mode .dropdown-content li > a {
165+
color: #ffffff !important;
166+
padding: 0.5rem 1rem;
167+
}
168+
169+
.dark-mode .dropdown-content li > a:hover {
170+
background-color: #383838 !important;
171+
color: #a8d5a8 !important;
106172
}

0 commit comments

Comments
 (0)