58 lines
1.2 KiB
CSS
58 lines
1.2 KiB
CSS
/* Shared styles for the fuzzy-menu launcher (window finder, app launcher,
|
|
screenrec menu, and any future provider built on FuzzyMenu).
|
|
Element IDs come from sims/modules/launcher/base.py. */
|
|
|
|
#picker-box {
|
|
padding: 12px;
|
|
background-color: rgba(40, 40, 40, 0.95);
|
|
border-radius: 8px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
color: white;
|
|
min-width: 720px;
|
|
}
|
|
|
|
#viewport {
|
|
padding: 8px;
|
|
background-color: rgba(30, 30, 30, 0.9);
|
|
border-radius: 6px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
color: white;
|
|
}
|
|
|
|
#viewport > * {
|
|
padding: 8px 12px;
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
border-left: 3px solid transparent;
|
|
transition: background-color 80ms ease, border-color 80ms ease;
|
|
}
|
|
|
|
#viewport > *.selected {
|
|
background-color: rgba(137, 180, 250, 0.28);
|
|
border-left-color: #89b4fa;
|
|
color: #ffffff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#viewport > *.selected label {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Provider-specific tweaks (apps launcher) */
|
|
#app-icon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
#app-name {
|
|
font-weight: 500;
|
|
}
|
|
|
|
#app-generic {
|
|
font-size: 11px;
|
|
opacity: 0.6;
|
|
}
|
|
|