Skip to content

Commit 1c834d9

Browse files
authored
Fix panel min width and new project styles (#110)
* Fix panel min width and new project styles * Point install instructions at site
1 parent 644a996 commit 1c834d9

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In desktop mode and server mode:
2929

3030
## Install
3131

32-
Install instructions are available [here](https://github.com/multiprocessio/datastation-documentation/blob/main/0.3.0/Installation.md).
32+
Install instructions are available [here](https://datastation.multiprocess.io/docs/0.3.0/Installation.html).
3333

3434
## Documentation
3535

ui/style.css

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ a:hover {
4545
.main-body {
4646
flex: 1;
4747
overflow-y: auto;
48+
min-width: 900px;
4849
}
4950

5051
header {
@@ -343,15 +344,15 @@ label.select select {
343344
border-right: 1px solid #ccc;
344345
border-bottom: 1px solid #ccc;
345346
background: white;
346-
width: 350px;
347+
min-width: 350px;
347348
background: #fbfbfb;
348349
padding: 15px;
349350
max-height: 100%;
350351
overflow-y: hidden;
351352
}
352353

353354
.sidebar--collapsed {
354-
width: initial;
355+
min-width: initial;
355356
}
356357

357358
.connector-group {
@@ -435,7 +436,6 @@ label.select select {
435436
}
436437

437438
.panel {
438-
min-width: 900px;
439439
background: white;
440440
border: 1px solid #ccc;
441441
margin: 15px;
@@ -1027,10 +1027,10 @@ body.dark {
10271027
background: #999;
10281028
}
10291029

1030-
.sidebar {
1030+
.sidebar,
1031+
.project-name {
10311032
background: #31314e;
1032-
border-right-color: black;
1033-
border-bottom-color: black;
1033+
border-color: black;
10341034
}
10351035

10361036
.server,
@@ -1045,4 +1045,8 @@ body.dark {
10451045
border-color: black;
10461046
box-shadow: 0 1px 3px 0 #111;
10471047
}
1048+
1049+
.project-existing {
1050+
border-color: black;
1051+
}
10481052
}

0 commit comments

Comments
 (0)