Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

color changed toggle #117

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 55 additions & 41 deletions search/templates/cosmos/data.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{% block head %}
<title>"cosmos-search</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/sunburst.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You may include this JS file at the end of this file. 👍

<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
td.hljs-ln-numbers {
Expand All @@ -18,67 +19,75 @@
margin: 100px;
}
.tool{
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}

.tool .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.white{
background-color: #edeff2;
border-right: 20px solid #f8f9fa;
color:#1b1e21;
}
.tool .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}

.tool .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tool .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}

.tool:focus .tooltiptext {
visibility: visible;
opacity: 1;
}
.tool:focus .tooltiptext {
visibility: visible;
opacity: 1;
}
</style>
{% endblock %}
{% block body %}
<div class="row">
<div class="col-xl-8 ">
<div class="col-xl-7 ">
<h5>
{% for items in path%}
{{ items }}/
{% endfor %}
</h5>
</div>
<div class="col-xl-3">
<div class="col-xl-4">
<a href="https://discourse.opengenus.org" target="_blank"><button type="button" class="btn btn-info">Ask any questions</button></a>
<button type="button" id='theme_button' class="btn btn-success">Editor theme</button>
</div>
<div class="col-xl-1">
<button type="button" name="button" class="btn btn-light tool" onclick="getValue()"><i class="fa fa-clipboard"></i><span class="tooltiptext">Copied</span></button>
<div class="col-xl-1">
<button type="button" name="button" class="btn btn-light tool" onclick="getValue()">
<i class="fa fa-clipboard"></i>
<span class="tooltiptext">Copied</span>
</button>
</div>
</div>
<div style="display: none;" id="select">{{code}}</div>
<pre class="language">
<code>
<code id='black'>
{{code}}
</code>
</pre>

<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlightjs-line-numbers.js/2.3.0/highlightjs-line-numbers.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
Expand All @@ -92,4 +101,9 @@ <h5>
createtag.remove();
}
</script>
<script>
$('#theme_button').click(function(){
$('#black').toggleClass('white');
});
</script>
{% endblock %}