Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vig
Sublinear Algorithms for VA
pseudo
Commits
1a4dfea3
Commit
1a4dfea3
authored
Feb 14, 2021
by
Kruyff,D.L.W. (Dylan)
Browse files
Adjustable dividers
parent
9316e75b
Changes
8
Hide whitespace changes
Inline
Side-by-side
AngularApp/prototype/package.json
View file @
1a4dfea3
...
...
@@ -7,7 +7,8 @@
"build"
:
"ng build"
,
"test"
:
"ng test"
,
"lint"
:
"ng lint"
,
"e2e"
:
"ng e2e"
"e2e"
:
"ng e2e"
,
"postinstall"
:
"ngcc"
},
"private"
:
true
,
"dependencies"
:
{
...
...
AngularApp/prototype/src/app/labeling-window/labeling-window.component.css
View file @
1a4dfea3
...
...
@@ -34,7 +34,6 @@
.channel_header
{
height
:
20px
;
padding
:
10px
;
border-bottom
:
1px
solid
lightgray
;
color
:
black
;
font-weight
:
500
;
text-align
:
center
;
...
...
AngularApp/prototype/src/app/main/main.component.html
View file @
1a4dfea3
<div
class=
"container"
>
<div
class=
"left"
>
<div
class=
"top"
>
<app-overview-window
style=
"z-index: 10"
></app-overview-window>
</div>
<div
class=
"bot"
>
<div
class=
"channel_header"
>
Feedback
</div>
<div
class=
"progress"
>
<app-training-window></app-training-window>
</div>
</div>
</div>
<div
class=
"right"
>
<div
class=
"top"
>
<div
class=
"channel_header"
>
Query
</div>
<div
class=
"progress"
>
<app-query-window></app-query-window>
</div>
</div>
<div
class=
"bot"
>
<div
class=
"channel_header"
>
Results
</div>
<div
class=
"progress"
>
<app-progress-view></app-progress-view>
</div>
</div>
</div>
<as-split
direction=
"vertical"
>
<as-split-area
[size]=
"30"
>
<as-split
direction=
"horizontal"
>
<as-split-area
[size]=
"70"
>
<app-overview-window
style=
"z-index: 10"
></app-overview-window>
</as-split-area>
<as-split-area
[size]=
"30"
>
<div
class=
"channel_header"
>
Query
</div>
<div
class=
"progress"
>
<app-query-window></app-query-window>
</div>
</as-split-area>
</as-split>
</as-split-area>
<as-split-area
[size]=
"70"
>
<as-split
direction=
"horizontal"
>
<as-split-area
[size]=
"70"
>
<div
class=
"channel_header"
>
Feedback
</div>
<div
class=
"progress"
>
<app-training-window></app-training-window>
</div>
</as-split-area>
<as-split-area
[size]=
"30"
>
<div
class=
"channel_header"
>
Results
</div>
<div
class=
"progress"
>
<app-progress-view></app-progress-view>
</div>
</as-split-area>
</as-split>
</as-split-area>
</as-split>
</div>
<div
class=
"overlay"
[class.show]=
"greyOut"
*ngIf=
"loadingProgress != 100"
></div>
<div
class=
"loading-progress"
*ngIf=
"loadingProgress != 100"
>
...
...
AngularApp/prototype/src/app/overview-window/overview-window.component.css
View file @
1a4dfea3
...
...
@@ -8,12 +8,15 @@
.left
{
width
:
15%
;
display
:
flex
;
flex-direction
:
column
;
}
.list
{
padding-top
:
10px
;
margin-left
:
5px
;
overflow-y
:
scroll
;
flex-grow
:
1
;
}
.right
{
...
...
AngularApp/prototype/src/app/progress-view/progress-view.component.css
View file @
1a4dfea3
...
...
@@ -24,7 +24,6 @@
.main-container
{
overflow-y
:
scroll
;
height
:
100%
;
}
.container
{
...
...
AngularApp/prototype/src/app/query-window/query-window.component.css
View file @
1a4dfea3
.query-container
{
height
:
100%
;
margin
:
auto
;
display
:
flex
;
justify-content
:
center
;
...
...
AngularApp/prototype/src/app/table-overview/table-overview.component.css
View file @
1a4dfea3
...
...
@@ -10,7 +10,7 @@
.subplot
{
margin
:
20px
;
height
:
max-content
;
border
:
2px
solid
;
border
:
2px
solid
lightblue
;
border-radius
:
25px
;
padding
:
20px
;
}
...
...
AngularApp/prototype/src/app/training-window/training-window.component.css
View file @
1a4dfea3
.container
{
height
:
100%
;
position
:
relative
;
}
.top
{
height
:
50%
;
overflow-y
:
scroll
;
border-bottom
:
groove
;
}
.bot
{
height
:
50%
;
overflow-y
:
scroll
;
}
.train-button
:hover
{
background-color
:
white
;
color
:
black
;
...
...
@@ -45,10 +33,3 @@ button {
transition-duration
:
0.4s
;
cursor
:
pointer
;
}
::ng-deep
mat-tab-group
{
height
:
100%
;
}
::ng-deep
.mat-tab-body
{
flex-grow
:
1
;
}
Kruyff,D.L.W. (Dylan)
@d.l.w.kruyff
mentioned in commit
3efa2f7b
·
Jul 14, 2021
mentioned in commit
3efa2f7b
mentioned in commit 3efa2f7b86ea89c0eaaab9fe516e8c8613ee4364
Toggle commit list
Kruyff,D.L.W. (Dylan)
@d.l.w.kruyff
mentioned in commit
1ccdf119
·
Jul 15, 2021
mentioned in commit
1ccdf119
mentioned in commit 1ccdf119dc70c0eb260339bf431ab26b10071f1f
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment