Skip to content

Commit

Permalink
various style fixes in track view
Browse files Browse the repository at this point in the history
  • Loading branch information
matthesrieke committed Jan 31, 2023
1 parent 3806f7f commit 5292e51
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
Binary file modified app/components/assets/enviroCar_logo_final_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/components/assets/enviroCar_logo_white_13-06-08_165x50.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/components/sidenav/sidenav.directive.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</md-content>

<div class="legal" ng-if="navExpanded">
<p class="copyright">EnviroCar &copy;2018</p>
<p class="copyright">enviroCar &copy; 2018-2023</p>
<ul layout='column'>
<li style="pointer-events:none;opacity:0.6;"> <!-- CURRENTLY DISABLED -->
<a ng-click="openFeedback();">
Expand Down
6 changes: 3 additions & 3 deletions app/components/track_analysis/chart/chart.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
</div>
<div style="width:70%;padding-left:25px;padding-top:10px" layout="column">
<div class="container_header">
<p class="title"><b>{{'TRACK_ID'| translate}}:</b> <br> {{trackid}}</p>
<p class="title"><b>{{'NAME'| translate}}:</b> <br> {{name}}</p>
<p class="title"><b>{{'CREATED'| translate}}:</b> <br> {{created| date:'medium'}}</p>
<p class="title"><b>{{'TRACK_ID'| translate}}:</b> {{trackid}}</p>
<p class="title"><b>{{'NAME'| translate}}:</b> {{name}}</p>
<p class="title"><b>{{'CREATED'| translate}}:</b> {{created| date:'medium'}}</p>
</div>
</div>
</div>
Expand Down
7 changes: 6 additions & 1 deletion app/styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ html, body {
min-width: 36px !important; }
.md-toolbar-tools .logo-icon {
margin-left: 30px;
width: 90px;
height: 25px; }

.track_toolbar {
Expand Down Expand Up @@ -390,6 +389,8 @@ md-sidenav {
.profiletab .cover {
background-color: rgba(0, 0, 0, 0.7);
position: absolute;
display: flex;
flex-direction: column;
top: 0;
left: 0;
width: 100%;
Expand Down Expand Up @@ -479,6 +480,10 @@ md-sidenav {
.container_header {
color: #ffffff; }

.container_header p.title {
margin-top: 0.25em;
margin-bottom: 0.5em; }

.download-track {
position: absolute;
color: #fff;
Expand Down
8 changes: 7 additions & 1 deletion app/styles/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ html, body{
}
.logo-icon {
margin-left: 30px;
width: 90px;
height: 25px;
}
}
Expand Down Expand Up @@ -474,6 +473,8 @@ md-sidenav {
.profiletab .cover {
background-color: rgba(0, 0, 0, 0.7);
position: absolute;
display: flex;
flex-direction: column;
top: 0;
left: 0;
width: 100%;
Expand Down Expand Up @@ -579,6 +580,11 @@ md-sidenav {

.container_header {
color: #ffffff;

p.title {
margin-top: 0.25em;
margin-bottom: 0.5em;
}
}

.download-track {
Expand Down

0 comments on commit 5292e51

Please sign in to comment.