Skip to content

Commit

Permalink
User manual support
Browse files Browse the repository at this point in the history
• Changed the user manual button
• Added support link
  • Loading branch information
deemeetree committed Nov 19, 2019
1 parent d67ede5 commit e3e91ed
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 16 deletions.
60 changes: 45 additions & 15 deletions public/stylesheets/side-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -872,18 +872,27 @@ small screens.

#manualsupport {
position: absolute;
top: 355px;
font-size: 8px; /* change this value to increase/decrease button size */
width: 2em;
height: 25px;
right: 0; /* "#menu width" */
padding: 0em 2.5em;
z-index: 11;
background: none;
background-image: var(--manual-button-background-image);
opacity: var(--manual-button-opacity);
background-repeat:no-repeat;
background-position:center;
top:360px;
right: 0px;
padding: 0px 0px 0px 0px;
margin: 0px;
width: 50px;
height: 150px;
background: #288fd4; /* #105bfb; */
z-index:15;
border-radius: 3px 0px 0px 3px;
text-decoration:none!important;
opacity: 1;
}

#manualsupport p {
font-size: 18px; /* change this value to increase/decrease button size */
color: #fff;
padding: 5px 0px 0px 10px;
-moz-transform:rotate(90deg);
-ms-transform:rotate(90deg);
-o-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
}


Expand Down Expand Up @@ -944,14 +953,12 @@ small screens.
}

.manual-on {
opacity: 1!important;
background-image: url('/images/manual-blue.png')!important;
opacity: 0.8!important;
}


#graph-tools {
position: absolute;
display: none;
top: 320px;
text-align: right;
right: -2px; /* "#menu width" */
Expand Down Expand Up @@ -1091,7 +1098,30 @@ Hides the menu at `48em`, but modify this based on your app's needs.
-webkit-overflow-scrolling: touch;
}

#manualsupport {
position: absolute;
top: 355px;
font-size: 8px; /* change this value to increase/decrease button size */
width: 2em;
height: 25px;
right: 0; /* "#menu width" */
padding: 0em 2.5em;
z-index: 11;
background: none;
background-image: var(--manual-button-background-image);
opacity: var(--manual-button-opacity);
background-repeat:no-repeat;
background-position:center;
}

#manualsupport p {
display: none;
}

.manual-on {
opacity: 1!important;
background-image: url('/images/manual-blue.png')!important;
}


#graph-link {
Expand Down
2 changes: 1 addition & 1 deletion views/components/entries/Graph/GraphMenu.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<a href="javascript:" class="tooltip" title="show tutorial" id="walkthrough"></a>
<a href="javascript:" class="tooltip" title="switch theme light/dark" id="themeswitch"></a>
<a href="javascript:" class="tooltip" title="adjust settings" id="adjustsettings"></a>
<a href="javascript:" class="tooltip" title="manual and support site" id="manualsupport"></a>
<a href="javascript:" class="tooltip" title="manual and support site" id="manualsupport"><p>User&nbsp;Manual</p></a>

</div>

Expand Down

0 comments on commit e3e91ed

Please sign in to comment.