-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(app) dqa software keyboard round3 (#13493)
* fix(app): dqa software keyboard round3
- Loading branch information
Showing
14 changed files
with
66 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ describe('CustomKeyboard', () => { | |
'J', | ||
'K', | ||
'L', | ||
'SHIFT', | ||
'abc', | ||
'Z', | ||
'X', | ||
'C', | ||
|
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,33 @@ | ||
/* stylelint-disable */ | ||
|
||
.simple-keyboard.oddTheme1.hg-theme-default { | ||
width: 100%; | ||
height: 100%; | ||
background-color: #d0d0d0; | ||
font-family: 'Public Sans', sans-serif; | ||
padding: 8px; | ||
font-size: 28px; | ||
} | ||
|
||
.simple-keyboard.oddTheme1 | ||
.hg-row:not(:last-child) | ||
.hg-button:not(:last-child) { | ||
margin-right: 8px; | ||
margin-bottom: 3px; | ||
} | ||
|
||
.simple-keyboard.simple-keyboard.oddTheme1 .hg-button { | ||
height: 48px; | ||
} | ||
|
||
.simple-keyboard .hg-button:active { | ||
color: #16212d; | ||
background-color: #e3e3e3; | ||
} | ||
|
||
/* Numeric keyboard in custom keyboard */ | ||
.hg-layout-numbers button.hg-button.hg-button-backspace, | ||
.hg-layout-numbers button.hg-button.hg-button-abc, | ||
.hg-layout-numbers button.hg-button.hg-standardBtn { | ||
flex: 1; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,7 +87,7 @@ describe('SoftwareKeyboard', () => { | |
'J', | ||
'K', | ||
'L', | ||
'SHIFT', | ||
'abc', | ||
'Z', | ||
'X', | ||
'C', | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* stylelint-disable */ | ||
|
||
.numpad button.hg-button.hg-button-backspace, | ||
.numpad button.hg-button.hg-button-abc, | ||
.numpad button.hg-button.hg-standardBtn { | ||
flex: 1; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export { CustomKeyboard } from './CustomKeyboard' | ||
export { NormalKeyboard } from './NormalKeyboard' | ||
export { Numpad } from './Numpad' | ||
export { CustomKeyboard } from './CustomKeyboard' |
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