Skip to content
Snippets Groups Projects
Commit ab745eb4 authored by Gavin Suntop's avatar Gavin Suntop
Browse files

Bug 1760625 - Tagpicker Dark Mode r=thecount

parent be7dfb46
No related branches found
No related tags found
No related merge requests found
......@@ -2040,16 +2040,36 @@ body.theme_dark #stp_style_guide {
padding: 4px 8px;
transition: background-color 200ms ease-in-out;
}
body.theme_dark .stp_tag_picker .stp_tag_picker_tag {
background: #2B2A33;
color: #FBFBFB;
}
.stp_tag_picker .stp_tag_picker_tag_remove {
padding: 5px;
color: #5B5B66;
font-weight: 400;
}
body.theme_dark .stp_tag_picker .stp_tag_picker_tag_remove {
color: #8F8F9D;
}
.stp_tag_picker .stp_tag_picker_tag_duplicate {
background-color: #bbb;
}
body.theme_dark .stp_tag_picker .stp_tag_picker_tag_duplicate {
background-color: #666;
}
.stp_tag_picker .stp_tag_picker_input {
flex-grow: 1;
border: 1px solid #8F8F9D;
border-radius: 3px;
padding: 6px;
width: 100%;
}
body.theme_dark .stp_tag_picker .stp_tag_picker_input {
background: none;
color: #FBFBFB;
}
.stp_popular_topics {
......
......@@ -26,19 +26,40 @@
margin-inline-end: 8px;
padding: 4px 8px;
transition: background-color 200ms ease-in-out;
@include theme_dark {
background: #2B2A33;
color: #FBFBFB;
}
}
.stp_tag_picker_tag_remove {
padding: 5px;
color: #5B5B66;
font-weight: 400;
@include theme_dark {
color: #8F8F9D;
}
}
.stp_tag_picker_tag_duplicate {
background-color: #bbb;
@include theme_dark {
background-color: #666;
}
}
.stp_tag_picker_input {
flex-grow: 1;
border: 1px solid #8F8F9D;
border-radius: 3px;
padding: 6px;
width: 100%;
@include theme_dark {
background: none;
color: #FBFBFB;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment