diff --git a/src/Components/HomeScreenSearchBar.js b/src/Components/HomeScreenSearchBar.js index 364bce643b4617556c7424c6be7de8e1c282d35f..ab276143f5a73e7e6adcbc9b8bd3a0b2064d839e 100644 --- a/src/Components/HomeScreenSearchBar.js +++ b/src/Components/HomeScreenSearchBar.js @@ -168,7 +168,7 @@ export default function HomeScreenSearchBar() { </Grid> <Grid item md={2} xs={12}> <div style={{ height: "100%" }}> - <Button onClick={handleKeyDown} className="custom-button" style={{ backgroundColor: options[selectedIndex].backColor, color: "#fff" }}> + <Button title="Pesquisar" onClick={handleKeyDown} className="custom-button" style={{ backgroundColor: options[selectedIndex].backColor, color: "#fff" }}> <SearchIcon fontSize="large" style={state.contrast === "" ? {color: "white"} : {color: "yellow"}}/> </Button> </div> diff --git a/src/Components/MenuBarMobile.js b/src/Components/MenuBarMobile.js index 0f3f794ed4b15e8bf015aa8ed45183f0468bf0e3..e6e21aaacbd31f85176e7b5adb66116971d53006 100644 --- a/src/Components/MenuBarMobile.js +++ b/src/Components/MenuBarMobile.js @@ -47,7 +47,7 @@ export default function MenuBarMobile(props) { openSignUp={props.openSignUp} openLogin={props.openLogin} /> <OuterDiv contrast={props.contrast}> - <Button style={props.contrast === "" ? { color: "#00bcd4" } : { color: "white " }} onClick={toggleDrawer(true)}> + <Button title="Menu" style={props.contrast === "" ? { color: "#00bcd4" } : { color: "white " }} onClick={toggleDrawer(true)}> <MenuIcon className="icon" /> </Button> <DrawerButtonDiv> @@ -55,7 +55,7 @@ export default function MenuBarMobile(props) { <img src={logo} alt="logo" style={{ border: "0", verticalAlign: "middle" }} /> </Link> </DrawerButtonDiv> - <Button style={{ position: "absolute", right: 0 }} onClick={props.openSearchBar}> + <Button title="Pesquisar" style={{ position: "absolute", right: 0 }} onClick={props.openSearchBar}> <IconSearchStyled style={props.contrast === "" ? { color: "#00bcd4" } : { color: "white " }} /> </Button> </OuterDiv> diff --git a/src/Components/Notifications.js b/src/Components/Notifications.js index c91283dd923e5675eefe0dd19ddc2032dbb59a59..3765b7795b00f7009c1a4a42f56bdf24cfbb7d86 100644 --- a/src/Components/Notifications.js +++ b/src/Components/Notifications.js @@ -186,7 +186,7 @@ export default function Notification(props) { color={snack.color} text={snack.text} /> - <StyledNotificationButton onClick={handleClick}> + <StyledNotificationButton title="Notificações" onClick={handleClick}> { notifications.some((notification) => (notification.recipient !== null) && (notification.viewed === false) && (notification.recipient_type !== "NilClass")) ? ( diff --git a/src/Components/SearchBar.js b/src/Components/SearchBar.js index 520babae961079f2d8c1c1e96555e53cf2648489..aa07439411ba0c11bae6144a1ad66c5273d80bde 100644 --- a/src/Components/SearchBar.js +++ b/src/Components/SearchBar.js @@ -200,7 +200,7 @@ export default function SearchBar(props) { <Link to={linkTarget} > - <ButtonStyled onClick={handleKeyDown} ><IconSearchStyled contrast={state.contrast} /></ButtonStyled> + <ButtonStyled title="Pesquisar" onClick={handleKeyDown} ><IconSearchStyled contrast={state.contrast} /></ButtonStyled> </Link> </Grid> <Grid container item justify="center" alignItems="center" xs={12} sm={3} md={3} lg={3} xl={3}> @@ -246,7 +246,7 @@ export default function SearchBar(props) { <Link to={linkTarget} > - <ButtonStyled onClick={handleKeyDown} ><IconSearchStyled contrast={state.contrast} /></ButtonStyled> + <ButtonStyled title="Pesquisar" onClick={handleKeyDown} ><IconSearchStyled contrast={state.contrast} /></ButtonStyled> </Link> </Grid> </React.Fragment>