Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input Search Dark Mode Friendly #5883

Merged
merged 24 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
111d13b
Mark Senthil Athiban's profile as inactive
Ashparshp Sep 12, 2024
e02b684
[Docs] Generated documentation for Integration
MUzairS15 Sep 13, 2024
0e75ca7
Merge remote-tracking branch 'upstream/master'
THEBOSS0369 Sep 15, 2024
ae8e3af
Dark Mode Search Input
THEBOSS0369 Sep 15, 2024
b263459
Removed issues for default style
THEBOSS0369 Sep 20, 2024
965b204
Added styles in the required file's style page
THEBOSS0369 Sep 25, 2024
df81b5e
Merge branch 'master' into dark_theme_search
vishalvivekm Sep 26, 2024
defd735
Merge branch 'master' into dark_theme_search
sudhanshutech Oct 9, 2024
df8b948
Merge branch 'master' into dark_theme_search
THEBOSS0369 Oct 9, 2024
52b4343
Improved the search box
THEBOSS0369 Oct 17, 2024
1236837
Merge remote-tracking branch 'upstream/master'
THEBOSS0369 Oct 17, 2024
8d1853f
Merge branch 'master' into dark_theme_search
THEBOSS0369 Oct 17, 2024
98be016
yes Merge branch 'dark_theme_search' of https://github.com/THEBOSS036…
THEBOSS0369 Oct 17, 2024
b6824a0
Update themeStyles.js
THEBOSS0369 Oct 17, 2024
29c79d1
Update resourceGrid.style.js
THEBOSS0369 Oct 17, 2024
97d73ae
Update searchbox.style.js
THEBOSS0369 Oct 17, 2024
68e48e9
Update blogGrid.style.js
THEBOSS0369 Oct 17, 2024
4538208
Changed the search icon color
THEBOSS0369 Oct 19, 2024
d1b1156
Merge branch 'dark_theme_search' of https://github.com/THEBOSS0369/la…
THEBOSS0369 Oct 19, 2024
f16f2e9
Added Boundary on Integration SearchBar
THEBOSS0369 Oct 22, 2024
75b388c
Moved the integration's search bar code to its own file
THEBOSS0369 Oct 30, 2024
b2c6bcd
Merge branch 'master' into dark_theme_search
THEBOSS0369 Oct 30, 2024
ae1c669
Merge branch 'master' into dark_theme_search
vishalvivekm Oct 30, 2024
8d49b7a
Merge branch 'master' into dark_theme_search
vishalvivekm Nov 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/reusecore/Search/searchbox.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ export const SearchWrapper = styled.div`
border-radius: 5px;
border: 1px solid ${(props) => props.theme.headingColor};
background-color: ${(props) => props.theme.shadowLightColor};

/*Changes color for the text*/
color: ${(props) => props.theme.textColor};
leecalcote marked this conversation as resolved.
Show resolved Hide resolved

&:focus {
/* border-color: ${(props) => props.theme.primaryColor}; */
border-color: #fff;
Expand Down
8 changes: 4 additions & 4 deletions src/theme/app/themeStyles.js
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We wouldn't want to change theme colors @THEBOSS0369

Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export const darktheme = {
scrollbarColor: "#00d3a9",

// white
primaryColor: "#FFFFFF",
primaryColor: "#00d3a9",

// silver chalice (light gray)
primaryLightColor: "#2C2C2C",
Expand All @@ -265,14 +265,14 @@ export const darktheme = {
// Teal Blue
tertiaryColorTwo: "#477E96",

headingColor: "#000000",
headingColor: "#111111",

// light slate gray (medium gray)
textColor: "#000000",
textColor: "#ffffff",
shadowColor: "rgba(255, 255, 255, 0.05)",

// platinum (light gray)
shadowLightColor: "#E6E6E6",
shadowLightColor: "#333333",

// dark gray
shadowDarkColor: "#484848",
Expand Down
Loading