generated from athackst/vscode_ros2_workspace
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NET] Local Transceiver - receive function and testing (#465)
* current changes (debug) * Local transceiver receive function updates * Fixes for half of receive function * Fix stoi error * fixes * Data is received but not decoded * Waypoints received now B) * cleanup * lint fixes * Fixes * Merge conflict fixes --------- Co-authored-by: lross03 <liamyr0802@gmail.com> Co-authored-by: Sam Dai <89489298+samdai01@users.noreply.github.com> Co-authored-by: Akshanjay Kompelli <Akshanjay2004@gmail.com>
- Loading branch information
1 parent
af15740
commit 266fee2
Showing
7 changed files
with
211 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
126 changes: 41 additions & 85 deletions
126
src/website/views/components/DropDown/dropdown.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,58 @@ | ||
@import 'https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap'; | ||
@import 'https://fonts.googleapis.com/css2?family=Switzer:wght@400;700&display=swap'; | ||
|
||
.iconButton { | ||
.flexItemContainer { | ||
flex: 1; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-family: Verdana, sans-serif; | ||
padding: 3px; | ||
border: 2px solid white; | ||
border-radius: 5px; | ||
width: 130px; | ||
height: 50px; | ||
color: white; | ||
float: right; | ||
margin-right: 20px; | ||
box-sizing: border-box; | ||
transition: 0.3s ease; | ||
transform: none; | ||
user-select: none; | ||
font-family: Switzer, sans-serif; | ||
color: #092e4e; | ||
font-weight: bold; | ||
} | ||
|
||
.iconButton:hover { | ||
background-color: white; | ||
color: #3498db; | ||
cursor: pointer; | ||
transition: 0.3s ease; | ||
.detailsFlexContainer { | ||
display: flex; | ||
justify-content: space-between; | ||
width: 100%; | ||
position: relative; | ||
padding-bottom: 8px; | ||
margin-top: 2px; | ||
} | ||
|
||
.iconButtonOpen { | ||
font-family: Verdana, Geneva, sans-serif; | ||
padding: 3px; | ||
border: 2px solid white; | ||
border-radius: 5px; | ||
width: 130px; | ||
height: 50px; | ||
float: right; | ||
margin-right: 20px; | ||
box-sizing: border-box; | ||
text-align: center; | ||
background-color: white; | ||
color: #3498db; | ||
cursor: pointer; | ||
transition: 0.3s ease; | ||
transform: none; | ||
user-select: none; | ||
.detailsFlexContainer::after { | ||
content: ''; | ||
display: block; | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 1px; | ||
background-color: black; | ||
} | ||
|
||
.dropdownActive { | ||
opacity: 1; | ||
visibility: visible; | ||
transform: translateY(0); | ||
transition: 0.3s ease; | ||
.contentContainer { | ||
display: flex; | ||
justify-content: space-between; | ||
width: 100%; | ||
padding-top: 8px; | ||
} | ||
|
||
.dropdownInactive { | ||
opacity: 0; | ||
visibility: hidden; | ||
transform: translateY(-45px); | ||
transition: 0.3s; | ||
pointer-events: none; | ||
.accordionCustom { | ||
background-color: #7a8b99; | ||
border: 1px solid #bdc3c7; | ||
box-shadow: none; | ||
} | ||
|
||
.dropdownMenu { | ||
margin: 5px; | ||
position: absolute; | ||
right: 3px; | ||
top: 60px; | ||
z-index: 1000; | ||
background-color: white; | ||
border-bottom: 2px #3498db solid; | ||
border-radius: 5px; | ||
.accordionSummaryCustom { | ||
background-color: #d9dddc; | ||
color: #00263e; | ||
font-family: Switzer, sans-serif; | ||
font-weight: bold; | ||
} | ||
|
||
.dropdownItem { | ||
text-transform: capitalize; | ||
display: grid; | ||
grid-template-columns: 90px auto; | ||
font-size: 18px; | ||
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | ||
width: 150px; | ||
padding: 10px; | ||
height: 40px; | ||
.accordionDetailsCustom { | ||
background-color: white; | ||
border: 2px white solid; | ||
border-radius: 5px; | ||
color: #3498db; | ||
align-items: center; | ||
transform: none; | ||
user-select: none; | ||
cursor: pointer; | ||
} | ||
|
||
.dropdownItem:hover { | ||
background-color: whitesmoke; | ||
} | ||
|
||
.dragDropIndicator { | ||
font-size: 20px; | ||
font-weight: bold; | ||
position: absolute; | ||
right: 15px; | ||
flex-direction: column; | ||
padding: 16px; | ||
font-family: Switzer, sans-serif; | ||
color: #092e4e; | ||
} |