Skip to content

Commit

Permalink
remove debug colors, add separate body styles for each pane
Browse files Browse the repository at this point in the history
  • Loading branch information
rmottola committed Sep 23, 2024
1 parent e126331 commit a2c9bfa
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions Tools/default-styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.content-bar {
background-color: green;
background-color: ;
float: left;
position: fixed;
top: 0px;
Expand All @@ -15,7 +15,14 @@
height: 30%;
width: 100%;
overflow: auto;
background-color: yellow;
}

.content-bar-top-body {
position: absolute;
top: 0px;
left: 0px;
padding-left: 10px;
padding-top: 10px;
}

.content-bar-bottom {
Expand All @@ -25,11 +32,18 @@
height:70%;
width: 100%;
overflow: auto;
background-color: red;
}

.content-bar-bottom-body {
position: absolute;
top: 0px;
left: 0px;
padding-left: 10px;
padding-top: 10px;
}


.content-pane {
background-color: pink;
position: fixed;
top: 0px;
right: 0px;
Expand All @@ -38,8 +52,7 @@
overflow-y: auto;
}

.content-body {
background-color: grey;
.content-pane-body {
position: absolute;
top: 0px;
left: 0px;
Expand Down

0 comments on commit a2c9bfa

Please sign in to comment.