Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ out
log
build
addon/build
node_modules
out
.vscode/.BROWSE.VC.DB
*.vsix
*.vsix
node_modules
src/components/node_modules
src/components/out
19 changes: 19 additions & 0 deletions html/c_pure_function_call_graph.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.pure_function_call_graph_main{
width: 100%;
height: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
}
.pure_function_call_graph_text_block{
width: 40%;
height: 100%;
font-size: 1rem;
}
.pure_function_call_graph_button_block{
width: 60%;
height: 100%;
}
.__component_button_group{
width : 100%;
}
63 changes: 63 additions & 0 deletions html/c_pure_functions.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
.pure_func_button_mark_pure{
color: #007bff !important;
border-color: #007bff !important;
background-color: white !important;
text-align: center !important;
padding: 0 !important;
font-size: 0.6rem !important;
width: 1.2rem;
height: 1.2rem;
}

.pure_func_button_mark_pure:hover{
color: rgb(249, 163, 4) !important;
border-color: rgb(249, 163, 4)!important;
background-color: white !important;
text-align: center !important;
padding: 0 !important;
font-size: 0.6rem !important;
width: 1.2rem;
height: 1.2rem;
}

.pure_func_button_mark_not_pure{
color: rgb(249, 163, 4) !important;
border-color: rgb(249, 163, 4) !important;
background-color: white !important;
text-align: center !important;
padding: 0 !important;
font-size: 0.6rem !important;
width: 1.2rem;
height: 1.2rem;
}

.pure_func_button_mark_not_pure:hover{
color: black !important;
border-color: black!important;
background-color: white !important;
text-align: center !important;
padding: 0 !important;
font-size: 0.6rem !important;
width: 1.2rem;
height: 1.2rem;
}

.pure_func_button_unmark{
color: black !important;
background-color: white !important;
text-align: center !important;
padding: 0 !important;
font-size: 0.6rem !important;
width: 1.2rem;
height: 1.2rem;
}
.pure_func_button_unmark:hover{
color: #007bff !important;
border-color: #007bff !important;
background-color: white !important;
text-align: center !important;
padding: 0 !important;
font-size: 0.6rem !important;
width: 1.2rem;
height: 1.2rem;
}
37 changes: 37 additions & 0 deletions html/calleeFunc.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
.bg-grey {
background-color : rgba(223, 219, 219, 0.911) !important;
}

.accordion {
height: calc(100% - 2rem);
max-height: calc(100vh - 2rem);
min-height: 365px;
margin-top: 1rem;
margin-bottom: 1rem;
display: flex;
flex-flow: column nowrap;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}

.accordion_border{
border-bottom: 1px solid lightgrey;
}

.accordion .card.show_1{
flex-grow: 1;
flex-shrink: 0;
}

.accordion .card.show{
flex-grow: 100;
flex-shrink: 1;
}

.collapsing {
transition: none !important;
}

.card{
border-bottom: 1px solid lightgrey;
}
62 changes: 62 additions & 0 deletions html/loopTree.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
#sort-button:hover {
color : #007bff !important;
}

#config-button:hover {
color : #007bff !important;
}

.cst_link {
color : rgb(249, 163, 4) !important;
font-size: 1rem !important;
font-weight: bold;
}

.card-header {
padding-left: 0;
}

.cst_link:hover {
color : #007bffdc !important;
}

.orange {
color : orange !important;
}

.background_orange {
background-color : orange !important;
}


.black{
color : black !important;
}

.blue {
color : #007bff !important;
}

#conf_sort_asc{
font-size: 0.7rem;
height: 1.8rem;
}

#conf_sort_desc{
font-size: 0.7rem;
height: 1.8rem;
}

.funtions_loops_names{
display: flex;
align-items: center;
justify-content: space-between;
}

.funtions_loops_names_p1{
width : '80%'
}

.funtions_loops_names_p2{
width : '80%'
}
3 changes: 2 additions & 1 deletion html/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ html, body { height: 100%; }
color: burlywood;
}


.table-row:hover {
background-color: var(--light);
}
Expand All @@ -25,4 +26,4 @@ html, body { height: 100%; }
clear: both !important;
overflow: hidden;
visibility: hidden;
}
}
Empty file added html/test_style.css
Empty file.
1 change: 1 addition & 0 deletions node_modules/.bin/cake

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/catw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/coffee

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/node-which

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/npm-run-all

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/pidtree

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/rimraf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/run-p

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/run-s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/semver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/tsc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/tsserver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions node_modules/@types/node/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions node_modules/@types/node/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading