-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f828848
commit 56b7797
Showing
60 changed files
with
1,631 additions
and
292 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
2 changes: 1 addition & 1 deletion
2
packages/apps/esm-devtools-app/src/devtools/devtools-popup.styles.scss
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
2 changes: 1 addition & 1 deletion
2
packages/apps/esm-help-menu-app/src/help-menu/components/styles.scss
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
2 changes: 1 addition & 1 deletion
2
.../apps/esm-implementer-tools-app/src/backend-dependencies/backend-dependencies.styles.scss
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,4 +1,4 @@ | ||
@use '@carbon/styles/scss/type'; | ||
@use '@carbon/type'; | ||
|
||
.container { | ||
height: 50vh; | ||
|
49 changes: 45 additions & 4 deletions
49
packages/apps/esm-implementer-tools-app/src/configuration/configuration.styles.scss
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
Empty file.
60 changes: 51 additions & 9 deletions
60
...ps/esm-implementer-tools-app/src/configuration/interactive-editor/description.styles.scss
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,26 +1,68 @@ | ||
@use '@carbon/styles/scss/spacing'; | ||
@use '@carbon/styles/scss/type'; | ||
@import '~@openmrs/esm-styleguide/src/vars'; | ||
@import '../../implementer-tools.styles.scss'; | ||
@use '@carbon/layout'; | ||
@use '@carbon/type'; | ||
@use '@carbon/react/scss/themes'; | ||
@use '@carbon/react/scss/theme'; | ||
@use '@openmrs/esm-styleguide/src/vars' as *; | ||
|
||
.productiveHeading01 { | ||
@include type.type-style('heading-compact-01'); | ||
} | ||
|
||
.productiveHeading02 { | ||
@include type.type-style('heading-compact-02'); | ||
} | ||
|
||
.bodyShort01 { | ||
@include type.type-style('body-compact-01'); | ||
} | ||
|
||
.toolStyles { | ||
background-color: transparent; | ||
} | ||
|
||
// Chevron button - implementer-tools component | ||
.chevronImplementerToolsButton { | ||
position: fixed; | ||
bottom: 0; | ||
left: calc(50vw - layout.$spacing-05); | ||
z-index: 9999; | ||
|
||
div { | ||
background-color: $ui-02; | ||
width: layout.$spacing-07; | ||
display: flex; | ||
justify-content: center; | ||
cursor: pointer; | ||
transition: all 0.1s ease-in-out; | ||
} | ||
|
||
div:hover { | ||
padding: layout.$spacing-03 0; | ||
} | ||
} | ||
|
||
.darkTheme { | ||
@include theme.theme(themes.$g90); | ||
} | ||
|
||
.path { | ||
@include type.type-style('heading-02'); | ||
margin-bottom: spacing.$spacing-03; | ||
margin-bottom: layout.$spacing-03; | ||
} | ||
|
||
.description { | ||
@include type.type-style('body-compact-01'); | ||
margin-bottom: spacing.$spacing-05; | ||
margin-bottom: layout.$spacing-05; | ||
} | ||
|
||
.source { | ||
@include type.type-style('body-compact-01'); | ||
font-style: italic; | ||
margin-bottom: spacing.$spacing-03; | ||
margin-bottom: layout.$spacing-03; | ||
} | ||
|
||
.value { | ||
font-family: monospace; | ||
margin-top: spacing.$spacing-03; | ||
margin-left: spacing.$spacing-03; | ||
margin-top: layout.$spacing-03; | ||
margin-left: layout.$spacing-03; | ||
} |
50 changes: 47 additions & 3 deletions
50
...es/apps/esm-implementer-tools-app/src/configuration/interactive-editor/display-value.scss
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,6 +1,50 @@ | ||
@use '@carbon/styles/scss/spacing'; | ||
@import '../../implementer-tools.styles.scss'; | ||
@use '@carbon/layout'; | ||
@use '@carbon/type'; | ||
@use '@carbon/react/scss/themes'; | ||
@use '@carbon/react/scss/theme'; | ||
@use '@openmrs/esm-styleguide/src/vars' as *; | ||
|
||
.productiveHeading01 { | ||
@include type.type-style('heading-compact-01'); | ||
} | ||
|
||
.productiveHeading02 { | ||
@include type.type-style('heading-compact-02'); | ||
} | ||
|
||
.bodyShort01 { | ||
@include type.type-style('body-compact-01'); | ||
} | ||
|
||
.toolStyles { | ||
background-color: transparent; | ||
} | ||
|
||
// Chevron button - implementer-tools component | ||
.chevronImplementerToolsButton { | ||
position: fixed; | ||
bottom: 0; | ||
left: calc(50vw - layout.$spacing-05); | ||
z-index: 9999; | ||
|
||
div { | ||
background-color: $ui-02; | ||
width: layout.$spacing-07; | ||
display: flex; | ||
justify-content: center; | ||
cursor: pointer; | ||
transition: all 0.1s ease-in-out; | ||
} | ||
|
||
div:hover { | ||
padding: layout.$spacing-03 0; | ||
} | ||
} | ||
|
||
.darkTheme { | ||
@include theme.theme(themes.$g90); | ||
} | ||
|
||
.smallListCell { | ||
padding: spacing.$spacing-03; | ||
padding: layout.$spacing-03; | ||
} |
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
Oops, something went wrong.