-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refact(core): Refactor all code according to the standards.
- Loading branch information
1 parent
6d53633
commit badc36e
Showing
18 changed files
with
114 additions
and
77 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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
import collections | ||
from .gen import counter | ||
from .cst import EMPTY, NONE | ||
from .dsp import SubDispatch, bypass, selector, stlp, parent_func, NoSub, inf | ||
from .dsp import SubDispatch, bypass, stlp, parent_func, NoSub, inf | ||
|
||
__author__ = 'Vincenzo Arcidiacono <[email protected]>' | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
129 changes: 72 additions & 57 deletions
129
schedula/utils/form/react/src/themes/antd/components/Pricing/index.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 |
---|---|---|
@@ -1,78 +1,93 @@ | ||
.pricing-wrapper .pricing { | ||
min-height: 370px; | ||
padding: 0 24px; | ||
display: flex; | ||
align-items: flex-end; | ||
min-height: 370px; | ||
padding: 0 24px; | ||
display: flex; | ||
align-items: flex-end; | ||
} | ||
|
||
.pricing-wrapper .pricing-img-wrapper { | ||
height: 100%; | ||
transform-origin: top; | ||
padding: 0 32px; | ||
height: 100%; | ||
transform-origin: top; | ||
padding: 0 32px; | ||
} | ||
|
||
.pricing-wrapper .pricing-img-wrapper .pricing-img { | ||
display: block; | ||
width: 100%; | ||
max-width: 560px; | ||
display: block; | ||
width: 100%; | ||
max-width: 560px; | ||
} | ||
|
||
.pricing-wrapper .pricing-img-wrapper .pricing-img img { | ||
display: block; | ||
display: block; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper { | ||
min-height: 320px; | ||
padding: 0 40px; | ||
max-width: 560px; | ||
margin-bottom: 32px; | ||
min-height: 320px; | ||
padding: 0 40px; | ||
max-width: 560px; | ||
margin-bottom: 32px; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper .pricing-content, | ||
.pricing-wrapper .pricing-text-wrapper .pricing-title { | ||
position: relative !important; | ||
position: relative !important; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper .pricing-title { | ||
font-size: 24px; | ||
font-weight: normal; | ||
color: #404040; | ||
margin: 72px auto 16px; | ||
font-size: 24px; | ||
font-weight: normal; | ||
color: #404040; | ||
margin: 72px auto 16px; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper .pricing-content { | ||
font-size: 12px; | ||
color: #666; | ||
line-height: 1.5; | ||
font-size: 12px; | ||
color: #666; | ||
line-height: 1.5; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper .pricing-pricing { | ||
font-size: 36px; | ||
color: #404040; | ||
margin: 32px 0 24px; | ||
font-size: 36px; | ||
color: #404040; | ||
margin: 32px 0 24px; | ||
} | ||
|
||
@media screen and (max-width: 767px) { | ||
.pricing-wrapper { | ||
min-height: 720px; | ||
} | ||
.pricing-wrapper .pricing { | ||
display: block; | ||
} | ||
.pricing-wrapper .pricing-img-wrapper { | ||
padding: 0; | ||
text-align: center; | ||
margin-top: 24px; | ||
} | ||
.pricing-wrapper .pricing-img-wrapper .pricing-img { | ||
display: inline-block; | ||
width: 80%; | ||
margin: auto; | ||
} | ||
.pricing-wrapper .pricing-text-wrapper { | ||
height: auto; | ||
text-align: center; | ||
padding: 0; | ||
max-width: 100%; | ||
} | ||
.pricing-wrapper .pricing-text-wrapper .pricing-content, | ||
.pricing-wrapper .pricing-text-wrapper .pricing-title { | ||
width: 100%; | ||
top: auto; | ||
} | ||
.pricing-wrapper .pricing-text-wrapper .pricing-title { | ||
margin: 32px auto 16px; | ||
font-size: 24px; | ||
} | ||
.pricing-wrapper { | ||
min-height: 720px; | ||
} | ||
|
||
.pricing-wrapper .pricing { | ||
display: block; | ||
} | ||
|
||
.pricing-wrapper .pricing-img-wrapper { | ||
padding: 0; | ||
text-align: center; | ||
margin-top: 24px; | ||
} | ||
|
||
.pricing-wrapper .pricing-img-wrapper .pricing-img { | ||
display: inline-block; | ||
width: 80%; | ||
margin: auto; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper { | ||
height: auto; | ||
text-align: center; | ||
padding: 0; | ||
max-width: 100%; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper .pricing-content, | ||
.pricing-wrapper .pricing-text-wrapper .pricing-title { | ||
width: 100%; | ||
top: auto; | ||
} | ||
|
||
.pricing-wrapper .pricing-text-wrapper .pricing-title { | ||
margin: 32px auto 16px; | ||
font-size: 24px; | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
schedula/utils/form/react/src/themes/antd/models/locale/en_US.mjs
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
1 change: 1 addition & 0 deletions
1
schedula/utils/form/react/src/themes/antd/models/locale/it_IT.mjs
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,5 @@ | ||
import it_IT from 'antd/locale/it_IT.js'; | ||
|
||
const it = it_IT.default | ||
export const locale = { | ||
...it, | ||
|
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 |
---|---|---|
|
@@ -26,6 +26,7 @@ class Error: | |
class Lock: | ||
pass | ||
|
||
|
||
# noinspection PyUnusedLocal | ||
def finalize(*args, **kwargs): | ||
pass |
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,2 +1,3 @@ | ||
import logging | ||
logging.disable() | ||
|
||
logging.disable() |
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 |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
import os | ||
import unittest | ||
|
||
|
||
EXTRAS = os.environ.get('EXTRAS', 'all') | ||
|
||
|
||
|
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