-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for ChirpChat mod and demod and IEEE802.15.4 mod
- Loading branch information
Showing
21 changed files
with
3,321 additions
and
3 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
114 changes: 114 additions & 0 deletions
114
src/app/channel-details/chirpchat-demod/chirpchat-demod.component.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 |
---|---|---|
@@ -0,0 +1,114 @@ | ||
.channel-card-header { | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 14px; | ||
border: solid; | ||
border-color: gray; | ||
border-width: 1px; | ||
margin-bottom: 5px; | ||
padding: 0.2em 0.2em 0.2em 0.2em; | ||
} | ||
|
||
.channel-header-rx { | ||
background-color: rgb(170,255,200); | ||
} | ||
|
||
.channel-header-comp { | ||
margin-top: 1px; | ||
} | ||
|
||
.button-card { | ||
padding-top: 0px; | ||
padding-right: 0px; | ||
padding-bottom: 0px; | ||
padding-left: 0px; | ||
width: 22px; | ||
height: 22px; | ||
} | ||
|
||
.button-on { | ||
border: solid; | ||
border-width: 1px; | ||
border-color: gray; | ||
background-color: rgb(0, 255, 0, 1.0); | ||
} | ||
|
||
.button-off { | ||
border: solid; | ||
border-width: 1px; | ||
border-color: gray; | ||
background-color: rgb(0, 0, 0, 0); | ||
} | ||
|
||
.address-input { | ||
width: 15ch; | ||
} | ||
|
||
.volume-input { | ||
width: 6ch; | ||
} | ||
|
||
.squelch-input { | ||
width: 6ch; | ||
} | ||
|
||
.rfbw-input { | ||
width: 6ch; | ||
} | ||
|
||
.index-input { | ||
width: 6ch; | ||
} | ||
|
||
.file-input { | ||
width: 70ch; | ||
} | ||
|
||
.status-parity-ok { | ||
background-color: rgb(134, 255, 110); | ||
} | ||
|
||
.status-parity-error { | ||
background-color: rgb(255, 134, 110); | ||
} | ||
|
||
.status-parity-corrected { | ||
background-color: rgb(110, 134, 255); | ||
} | ||
|
||
.status-parity-undefined { | ||
background-color: rgb(180, 180, 180); | ||
} | ||
|
||
td { | ||
background-color: rgb(230, 230, 210); | ||
} | ||
|
||
.status-ok-card { | ||
border: outset; | ||
border-color: rgb(134, 255, 110); | ||
border-width: 2px; | ||
margin-bottom: 5px; | ||
padding: 0.2em 0.2em 0.2em 0.2em; | ||
} | ||
|
||
.status-ko-card { | ||
border: solid; | ||
border-color: rgb(255, 134, 110); | ||
border-width: 2px; | ||
padding: 0.2em 0.2em 0.2em 0.2em; | ||
} | ||
|
||
::ng-deep .mat-card { | ||
/* CSS styles go here */ | ||
padding: 0px; /* for example to remove the margin */ | ||
} | ||
|
||
::ng-deep .mat-checkbox-inner-container { | ||
height: 14px!important; | ||
width: 14px!important; | ||
background-color: white; | ||
} | ||
|
||
::ng-deep .mat-checkbox-label { | ||
line-height: 16px!important; | ||
} |
Oops, something went wrong.