Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:I-TECH-UW/OpenELIS-Global-2 into…
Browse files Browse the repository at this point in the history
… develop
  • Loading branch information
CalebSLane committed Nov 14, 2024
2 parents 122fac4 + 59cd962 commit ffc6ffa
Show file tree
Hide file tree
Showing 5 changed files with 486 additions and 35 deletions.
10 changes: 2 additions & 8 deletions frontend/src/components/Style.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ li.clickableUserDetails:hover {

.inputSearch {
--cds-text-primary: black;
width: 100%;
/*width: 100%;*/
width: 50%;
--cds-text-secondary: black;
--cds-icon-primary: black;
}
Expand Down Expand Up @@ -279,13 +280,6 @@ button {
--cds-text-secondary: black;
}

.inputSearch {
--cds-text-primary: black;
width: 100%;
--cds-text-secondary: black;
--cds-icon-primary: black;
}

.results {
display: flex;
justify-content: space-between;
Expand Down
61 changes: 36 additions & 25 deletions frontend/src/components/layout/search/searchBar.css
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
.main {
position: absolute;
right: 175px;
width: 700px;
width: 100%;
}

.search-bar-container {
position: absolute;
display: flex;
width: 100%;
top: 10px;
right: -30px;
margin-top: 38px;
right: 1px;
/*right: -20px;*/
box-shadow: 0em 0.1em 0.05em #ccc;
}

.search-input {
width: 100%;
position: relative;

}

.search-bar-container:hover {
Expand All @@ -28,17 +30,18 @@
max-height: 250px;
position: absolute;
background-color: #f0e7e7;
top: 45px;
right: -30px;
top: 89px;
right: -1px;
box-shadow: 0em 0.1em 0.5em #ccc;
}

.patientHead {
width: 680px;
width: 103%;
position: relative;
border-bottom: 2px solid #eee3e3;
background-color: #fcfbfb;
height: 52px;
right: -1px;
box-shadow: 0em 0.01em 0.05em #ccc;
}
.tags {
Expand All @@ -49,32 +52,40 @@
cursor: pointer;
}

@media (max-width: 768px) {
.patientHead {
flex-direction: column;
}

/* Large screens (1208px and up) */
@media (min-width: 1208px) {


.search-bar-container {
flex-direction: column;
align-items: stretch;
width: 45%;
margin-top: 0%;
right: 130px;
}

.search-input {
width: 100%;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
.patientHead {
flex-direction: row;
width: 45%;
}

.search-bar-container {
flex-direction: row;
align-items: center;
.patients {
overflow-y: auto;
width: 45%;
max-height: 250px;
position: absolute;
background-color: #f0e7e7;
top: 48px;
right: 130px;
box-shadow: 0em 0.1em 0.5em #ccc;
}

.search-input {
width: 75%;

.patientHead {
overflow-y: auto;
width: 600px;
right: -1px;
position: relative;
border-bottom: 2px solid #eee3e3;
background-color: #fcfbfb;
height: 52px;
box-shadow: 0em 0.01em 0.05em #ccc;
}
}
2 changes: 1 addition & 1 deletion frontend/src/components/layout/search/searchBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,4 @@ const SearchBar = (props) => {
);
};

export default SearchBar;
export default SearchBar;
3 changes: 2 additions & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ code {
.slide-over-panel {
width: 25%;
/* Use percentage for width on larger screens */
max-width: 25%;
/* max-width: 25%;*/
max-width: 50%;
/* Use percentage for max-width on larger screens */
}
}
Expand Down
Loading

0 comments on commit ffc6ffa

Please sign in to comment.