Fix @ link menu

Add styling to @ link menu. Fixes #1
This commit is contained in:
Cody Williams
2022-03-02 17:46:27 -08:00
parent 8713b0c0ba
commit f1a0bad907

View File

@@ -63,7 +63,7 @@ But this will try and import them if you dont have them */
--hover-item-background-color: #0784b5;
--active-item-text-color: #ddd;
--active-item-background-color: #033c53;
--active-item-background-color: #0784b5;
--menu-text-color: #dedede;
--menu-background-color: #222;
@@ -190,6 +190,14 @@ But we should still update text color because are global whites look bad */
grid-template-columns: repeat(auto-fit, minmax(400px, max-content)) !important;
}
/* @note link popup highlights
for some reason if I try a less specific selector the bg and border work but not the font color. */
body > div.ck-body-wrapper > div > div.ck.ck-balloon-panel.ck-balloon-panel_caret_se.ck-balloon-panel_visible > div > div.ck-balloon-rotator__content > ul > li > button.ck-on {
background-color:#0784b5 !important;
color: #FFF !important;
border: 1px solid #FFF !important;
}
/* fix main left bar calendar picker */
body ::-webkit-calendar-picker-indicator {
filter: invert(1);