Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typo #59

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/components/base/HelpTip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
padding: 0 50px;
min-height: 100px;

color: var(--fr-cr-placholder);
color: var(--fr-cr-placeholder);

@include codeAndKBD;
@keyframes short {
Expand Down Expand Up @@ -81,7 +81,7 @@
border: none;
border-radius: 2px;
background-color: transparent;
color: var(--fr-cr-placholder);
color: var(--fr-cr-placeholder);

cursor: pointer;
user-select: none;
Expand Down
6 changes: 3 additions & 3 deletions core/src/components/base/List.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
cursor: pointer;
transition: .1s;
&::before {
color: var(--fr-cr-placholder);
color: var(--fr-cr-placeholder);
}
&:hover::before {
color: var(--fr-cr);
Expand Down Expand Up @@ -132,7 +132,7 @@
color: var(--primary-active-fc);
}
.ppd-list-item__placeholder {
color: var(--primary-active-placholder);
color: var(--primary-active-placeholder);
}
}
&:focus, &:focus-visible {
Expand Down Expand Up @@ -210,7 +210,7 @@
}
}
&__placeholder {
color: var(--fr-cr-placholder);
color: var(--fr-cr-placeholder);
}
}
&:not(&--contain-icon) {
Expand Down
4 changes: 2 additions & 2 deletions core/src/components/base/List.share.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
padding: 0 4px;
margin-right: 2px;
border-radius: 4px;
border: 1px solid var(--fr-cr-placholder);
border: 1px solid var(--fr-cr-placeholder);
background-color: var(--bg-cr);
}
kbd {
Expand All @@ -28,7 +28,7 @@
margin-top: 5px;
font-size: 12px;
padding-bottom: 2px;
color: var(--fr-cr-placholder);
color: var(--fr-cr-placeholder);
@include codeAndKBD;
}
}
2 changes: 1 addition & 1 deletion core/src/components/base/ListHelpDialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
html[theme-mode=dark] & {
opacity: .8;
}
border-bottom: 1px solid var(--fr-cr-placholder);
border-bottom: 1px solid var(--fr-cr-placeholder);

font-size: 15px;

Expand Down
4 changes: 2 additions & 2 deletions core/src/components/base/Tooltip.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.ppd-tooltip {
&-placehoder {
color: var(--fr-cr-placholder);
&-placeholder {
color: var(--fr-cr-placeholder);
}
}
2 changes: 1 addition & 1 deletion core/src/plugins/outputs/Run.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Run: React.ComponentType<BarItemProps> = () => {
</>}
offset={[0, 6]}
>
<button className='excute'
<button className='execute'
// @ts-ignore
style={{ '--btn-color': '#4eb03e' }}
onClick={() => elBridgeP.send('run')}>
Expand Down
8 changes: 4 additions & 4 deletions src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ body {
--primary-active: #365eb444;
--primary-active-border: #365eb4cc;
--primary-active-fc: color-mix(in srgb, var(--fr-cr), var(--primary) 20%);
--primary-active-placholder: rgba(255, 255, 255, 0.6);
--primary-active-placeholder: rgba(255, 255, 255, 0.6);

--border-color: #ddd;
--shadow-color: #9995;

--fr-cr: rgba(0, 0, 0, 0.9);
--fr-cr-placholder: rgba(0, 0, 0, 0.26);
--fr-cr-placeholder: rgba(0, 0, 0, 0.26);
// TODO replace to --primary-active-fc
--pr-fr-cr: #fff;
--bg-cr: #efefef;
Expand All @@ -49,13 +49,13 @@ body {

--primary-active: #263c6eaa;
--primary-active-fc: rgba(230, 230, 230, 0.9);
--primary-active-placholder: rgba(140, 140, 140, 0.6);
--primary-active-placeholder: rgba(140, 140, 140, 0.6);

--border-color: #333333;
--shadow-color: #0008;

--fr-cr: rgba(255, 255, 255, 0.9);
--fr-cr-placholder: rgba(255, 255, 255, 0.26);
--fr-cr-placeholder: rgba(255, 255, 255, 0.26);

--bg-cr: #242424;
--bg-cr-o0: #24242488;
Expand Down