Skip to content

Commit

Permalink
ui cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
geoyogesh committed Oct 5, 2020
1 parent fc60be5 commit c5a7101
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<td>

<div>
<table style="margin: 0 auto;">
<table class="zone-table">
<tr>
<td class="zone-cell">Zone 5</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<tr>
<td style="border: 0.05rem solid #e8e8e8;">
<div>
<table style="margin: 0 auto;">
<table class="zone-table">
<tr>
<td class="zone-cell">Zone 1</td>
</tr>
Expand Down Expand Up @@ -91,7 +91,7 @@
<td style="width: 210px;border: 0.05rem solid #e8e8e8;">

<div>
<table style="margin: 0 auto;">
<table class="zone-table">
<tr>
<td class="zone-cell">Zone 5</td>
</tr>
Expand Down Expand Up @@ -154,7 +154,7 @@
<td style="border: 0.05rem solid #e8e8e8;">

<div>
<table style="margin: 0 auto;">
<table class="zone-table">
<tr>
<td class="zone-cell">Zone 2</td>
</tr>
Expand Down
53 changes: 28 additions & 25 deletions projects/capx/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,41 @@ button:focus {
outline: 0;
}


// scrollbar
/* The emerging W3C standard
that is currently Firefox-only */
* {
scrollbar-width: thin;
scrollbar-color: #666 hsl(198, 0%, 80%);
}

/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
width: 14px;
}
*::-webkit-scrollbar-track {
background: hsl(198, 0%, 80%);
}
*::-webkit-scrollbar-thumb {
background-color: #666;
border-radius: 20px;
border: 3px solid hsl(198, 0%, 80%);
}
* {
scrollbar-width: thin;
scrollbar-color: #666 hsl(198, 0%, 80%);
}

/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
width: 14px;
}
*::-webkit-scrollbar-track {
background: hsl(198, 0%, 80%);
}
*::-webkit-scrollbar-thumb {
background-color: #666;
border-radius: 20px;
border: 3px solid hsl(198, 0%, 80%);
}

table {
border-collapse: collapse;
&.zone-table {
margin: 0 auto;

td.zone-cell {
background-color: #fff;
}

td {
padding: 7px 10px;
font-size: 0.7rem;
}
}
&.config-table {
& > tr {
border: 0.05rem solid #e8e8e8;
Expand Down Expand Up @@ -111,10 +120,6 @@ table {
background-color: #cccccc;
}

&.zone-cell {
background-color: #fff;
}

&.readonly {
//background-color: hsl(198, 0%, 87%);
}
Expand Down Expand Up @@ -178,7 +183,6 @@ table.small-content-tbl {
}
}


.back-to-results-text {
padding-right: 5px;
}
Expand All @@ -191,11 +195,10 @@ table.small-content-tbl {
capx-svg-viewer {
svg {
width: 100%;
height:100%
height: 100%;
}
}


.nav {
box-shadow: none;
}
Binary file modified readme-images/conventinal-junction-configuration.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c5a7101

Please sign in to comment.