Make navbar dropdown triggers (Admin and Documentations) visually identical to regular nav links

parent 316bc8ca
......@@ -22,15 +22,15 @@
.user-dropdown a:last-child { border-bottom: none; color: #dc2626; }
.user-dropdown a:hover { background: #f8fafc; }
.admin-menu { display: flex; align-items: center; gap: 1rem; position: relative; }
.admin-icon { cursor: pointer; padding: 0.5rem; border-radius: 4px; background: #f8fafc; transition: background 0.2s; }
.admin-icon:hover { background: #e2e8f0; }
.admin-icon { cursor: pointer; text-decoration: none; color: #64748b; font-weight: 500; transition: color 0.2s; }
.admin-icon:hover { color: #667eea; }
.admin-dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; min-width: 200px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border-radius: 8px; z-index: 1000; }
.admin-dropdown a { display: block; padding: 0.75rem 1rem; text-decoration: none; color: #374151; border-bottom: 1px solid #f1f5f9; }
.admin-dropdown a:last-child { border-bottom: none; }
.admin-dropdown a:hover { background: #f8fafc; }
.docs-menu { display: flex; align-items: center; gap: 1rem; position: relative; }
.docs-icon { cursor: pointer; padding: 0.5rem; border-radius: 4px; background: #f8fafc; transition: background 0.2s; }
.docs-icon:hover { background: #e2e8f0; }
.docs-icon { cursor: pointer; text-decoration: none; color: #64748b; font-weight: 500; transition: color 0.2s; }
.docs-icon:hover { color: #667eea; }
.docs-dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; min-width: 200px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border-radius: 8px; z-index: 1000; }
.docs-dropdown a { display: block; padding: 0.75rem 1rem; text-decoration: none; color: #374151; border-bottom: 1px solid #f1f5f9; }
.docs-dropdown a:last-child { border-bottom: none; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment