Skip to content

Commit d2fc2ad

Browse files
committed
T-15 finishing up with version
1 parent 6b73dba commit d2fc2ad

File tree

3 files changed

+32
-10
lines changed

3 files changed

+32
-10
lines changed

app/src/App.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function App() {
3737
}
3838

3939
return (
40-
<div className={`App ${light ? "_white" : ""} ${min? "_min":""}`}>
40+
<div className={`App ${light ? "_white" : ""} ${min ? "_min" : ""}`}>
4141
<nav>
4242
<span id={"titlemark"}>GRAPHENE</span>
4343
<Button
@@ -51,6 +51,11 @@ function App() {
5151
<Header toggleBg={toggleBg}
5252
toggleMin={toggleMin}
5353
graph={graph}/>
54+
<a id={"vers"}
55+
target={"_blank"}
56+
href={"https://github.com/rontap/thesis"}
57+
title={"Github Source"}
58+
>1.0 Thesis release</a>
5459

5560
</nav>
5661

app/src/ui/PropertyViewer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ export default function PropertyViewer() {
5252
<hr/>
5353
<div className={"grid gtc-2 gtc-m-10"}>
5454
<div className={"gridItem"}>
55-
{/*todo editable props dont work well*/}
5655
MISSING INPUTS
5756
<br/>
5857
{node.nodeInputs

app/src/ui/styles/App.css

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
text-align: center;
44
}
55

6+
#vers {
7+
color: #959595;
8+
position: fixed;
9+
right: 10px;
10+
top: 13px;
11+
font-family: "Bahnschrift";
12+
}
13+
#vers:hover {
14+
color:#dedede;
15+
text-shadow:0px 0px 2px #444;
16+
}
17+
618
.App-logo {
719
height: 40vmin;
820
pointer-events: none;
@@ -549,20 +561,22 @@ body:has(._white) {
549561
width: calc(100% - 25px);
550562
border-radius: 8px;
551563
margin-bottom: 8px;
552-
border:1px solid #aaa;
553-
margin-top:-8px;
564+
border: 1px solid #aaa;
565+
margin-top: -8px;
554566
padding: 12px 10px;
555-
font-size:16px;
567+
font-size: 16px;
556568
font-family: "Bahnschrift", sans-serif;
557569
}
570+
558571
.gptArea[disabled] {
559572
transition: all .5s;
560-
border:1px solid #888;
561-
color:#e5e5e5;
573+
border: 1px solid #888;
574+
color: #e5e5e5;
562575
border-radius: 16px 16px 16px 0px;
563-
margin-top:-8px;
576+
margin-top: -8px;
564577
min-height: 20px;
565578
}
579+
566580
/**
567581
GPT
568582
*/
@@ -696,16 +710,20 @@ GPT
696710
}
697711

698712
}
699-
foreignObject.fo {
713+
714+
foreignObject.fo {
700715
transition: height .4s;
701716

702717
}
718+
703719
._min foreignObject.fo {
704720
height: 60px;
705721
}
706-
foreignObject > div {
722+
723+
foreignObject > div {
707724
transition: background .2s;
708725
}
726+
709727
._min .configPropertyListItem {
710728
display: none;
711729
}

0 commit comments

Comments
 (0)