libreoffice-online/browser/css/writer.css
Darshan-upadhyay1110 10d1c946af Fix Content control "down arrow" cannot be recognized in dark mode
- add missing image path for data-them dark
Signed-off-by: Darshan-upadhyay1110 <darshan.upadhyay@collabora.com>
Change-Id: If6850770548d35eb95125ce0be1c52a557f5b344
2023-11-09 11:19:54 +05:30

17 lines
No EOL
578 B
CSS

.writer-drop-down-marker {
cursor: pointer;
margin-left: 3px !important;
margin-top: 1px !important;
min-width: 22px;
min-height: 22px;
background: url('images/unfold.svg') center/16px var(--color-background-lighter) no-repeat;
border: 1px solid var(--color-border-darker);
border-radius: var(--border-radius);
box-sizing: border-box;
box-shadow: 0 0 1px 1px #00000015;
}
[data-theme='dark'] .writer-drop-down-marker {
background: url('images/dark/unfold.svg') center/16px var(--color-background-lighter) no-repeat;
border: 1px solid var(--color-primary-lighter);
}