-
Notifications
You must be signed in to change notification settings - Fork 217
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
bccd5d4
commit 249388b
Showing
95 changed files
with
302 additions
and
1,460 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
17 changes: 0 additions & 17 deletions
17
packages/apps/esm-devtools-app/src/devtools/devtools.styles.css
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
packages/apps/esm-devtools-app/src/devtools/devtools.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@use '@carbon/colors'; | ||
@use '@carbon/layout'; | ||
|
||
.devtoolsTriggerButton { | ||
z-index: 7900; | ||
background-color: colors.$gray-30; | ||
height: layout.$spacing-08 !important; | ||
width: layout.$spacing-08 !important; | ||
bottom: layout.$spacing-11; | ||
right: layout.$spacing-02; | ||
position: fixed; | ||
border-radius: layout.$spacing-02; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.overridden { | ||
background-color: colors.$red-60; | ||
} |
4 changes: 3 additions & 1 deletion
4
packages/apps/esm-devtools-app/src/devtools/import-map-list/import-map.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,3 +1,5 @@ | ||
@use '@carbon/layout'; | ||
|
||
.spacer { | ||
margin: 0.5rem 0; | ||
margin: layout.$spacing-03 0; | ||
} |
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
39 changes: 0 additions & 39 deletions
39
...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
44 changes: 0 additions & 44 deletions
44
...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,50 +1,6 @@ | ||
@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: layout.$spacing-03; | ||
} |
Oops, something went wrong.