Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork118
Release v2.4.0#219
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Release v2.4.0#219
Changes fromall commits
02eac4335aa8aee449bb97c503fdbaec6505d277b284896d2c30c54cae0441fc17d5f641f363e6e35bbb8cf099ca993c9dba2b46e6181e4d2607504d0d7eb660890987f926783293ca04b92465c8e783efc81f6a91987c577662ab88514cbcb48069831cd2cbfb56577acfb89File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| print('Visual Python') |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| /* | ||
| * Project Name : Visual Python | ||
| * Description : GUI-based Python code generator | ||
| * File Name : descStats.css | ||
| * Author : Black Logic | ||
| * Note : stylesheet for descStats.html | ||
| * License : GNU GPLv3 with Visual Python special exception | ||
| * Date : 2023. 05. 31 | ||
| * Change Date : | ||
| */ | ||
| .vp-percentile-box { | ||
| width: 300px; | ||
| height: 100px; | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| padding: 0 5px; | ||
| } | ||
| .vp-percentile-item { | ||
| height: 30px; | ||
| width: 100%; | ||
| border-bottom: 0.25px solid var(--vp-border-gray-color); | ||
| padding: 0 10px; | ||
| line-height: 30px; | ||
| display: flex; | ||
| column-gap: 5px; | ||
| align-items: center; | ||
| } | ||
| .vp-percentile-value { | ||
| width: 95%; | ||
| } | ||
| .vp-percentile-box:not(.disabled) .vp-percentile-remove { | ||
| cursor: pointer; | ||
| } | ||
| .vp-percentile-box.disabled { | ||
| background-color: var(--vp-light-gray-color); | ||
| cursor: not-allowed; | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| /* | ||
| * Project Name : Visual Python | ||
| * Description : GUI-based Python code generator | ||
| * File Name : regression.css | ||
| * Author : Black Logic | ||
| * Note : stylesheet for regression.html | ||
| * License : GNU GPLv3 with Visual Python special exception | ||
| * Date : 2023. 05. 31 | ||
| * Change Date : | ||
| */ | ||
| .vp-categorical-box { | ||
| display: grid; | ||
| grid-template-columns: repeat(2, 1fr); | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| padding: 5px; | ||
| min-height: 30px; | ||
| } |
Uh oh!
There was an error while loading.Please reload this page.