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

html and css #65 #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
43 changes: 17 additions & 26 deletions web/lib/HabitatCommunity.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,13 @@ button, .button {
display: none;
padding-bottom: 1em;
}
#sticky {
position: sticky;
top: .5em;
max-width: max-content;
padding: .5em 1em;
border-radius: 2em;
background-color: var(--color-bg);
border: 1px solid var(--color-bg-invert);
z-index: 9;
#t_cart {
bottom: 26px;
left: 0;
right: 0;
z-index: 100;
position: absolute;
display: flex;
}
#tabs * {
outline: none;
Expand Down Expand Up @@ -320,27 +318,20 @@ button, .button {
<div id='tabnav' class='flex row evenly'></div>
<space></space>
</div>

<space></space>

<div id='sticky' class='flex row center evenly'>
<div class='flex row'>
<habitat-toggle
id='delegateModeToggle'
left='Personal Mode'
tooltip-left='Your personal voting power'
right='Delegation Mode'
tooltip-right='Voting power delegated to you'
></habitat-toggle>
<habitat-transaction-cart></habitat-transaction-cart>
</div>
</div>

<div id='tabs'></div>

</div>
<space></space>
</section>
<habitat-transaction-cart id='t_cart'>
<habitat-toggle
id='delegateModeToggle'
left='Personal Mode'
tooltip-left='Your personal voting power'
right='Delegation Mode'
tooltip-right='Voting power delegated to you'
></habitat-toggle>
</habitat-transaction-cart>
</div>
</div>
`;
Expand Down Expand Up @@ -694,4 +685,4 @@ button, .button {
window.postMessage({ type: 'hbt-tx-bundle', value: batch }, window.location.origin);
}
}
customElements.define('habitat-community', HabitatCommunity);
customElements.define('habitat-community', HabitatCommunity);
36 changes: 24 additions & 12 deletions web/lib/HabitatToggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ const TEMPLATE = document.createElement('template');
TEMPLATE.innerHTML = `
<style>
* {
color: var(--color-text);
line-height: 1;
vertical-align: bottom;
box-sizing: border-box;
}
#inner,
Expand Down Expand Up @@ -41,14 +38,19 @@ pin {
background-color: var(--color-bg);
transition: margin .2s ease-in;
}
#inner.on {
background-color: var(--color-bg-invert);
}
// #inner.on {
// background-color: var(--color-bg-invert);
// }
#inner.on > pin {
margin-left: 1em;
}
#mode {
margin: 0 .2em 0 .5em;
margin: 0 .2em 2px 0;
color: white;
font-family: arial;
font-style: normal;
font-size: 14px;
line-height: 18px;
}
#tooltip {
display: block;
Expand All @@ -60,11 +62,11 @@ pin {
align-self: start;
background-color: var(--color-bg-invert);
visibility: hidden;
margin-top: -4px;
}
#tooltip > span {
display: block;
line-height: .9;
color: var(--color-bg);
}
#tooltip > #content {
display: none;
Expand Down Expand Up @@ -94,16 +96,26 @@ pin {
}
#wrapper {
display: flex;
flex-direction: row;
flex-direction: column;
align-items: center;
}
#top{
display: flex;
flex-direction: row;
}
</style>
<div id='top'>
<div id='wrapper'>
<span id='mode'></span>
<div id='inner'>
<pin></pin>
</div>
<span id='mode'></span>
<div id='tooltip'><span>ℹ</span><p id='content'> </p></div>
</div>
<div id='tooltip'>
<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.77778 0.00537109C0.791111 0.00537109 0 0.796482 0 1.78315V8.00537H1.77778H6.22222C7.20889 8.00537 8 7.21426 8 6.22759V1.78315C8 0.796482 7.20889 0.00537109 6.22222 0.00537109H1.77778ZM4 1.3387C4.48889 1.3387 4.88889 1.7387 4.88889 2.22759C4.88889 2.71648 4.48889 3.11648 4 3.11648C3.51111 3.11648 3.11111 2.71648 3.11111 2.22759C3.11111 1.7387 3.51111 1.3387 4 1.3387ZM3.55556 3.56093H4.44444C4.69333 3.56093 4.88889 3.75648 4.88889 4.00537V6.22759C4.88889 6.47648 4.69333 6.67204 4.44444 6.67204H3.55556C3.30667 6.67204 3.11111 6.47648 3.11111 6.22759V4.00537C3.11111 3.75648 3.30667 3.56093 3.55556 3.56093Z" fill="white"/>
</svg>
<p id='content'> </p></div>
</div>
`;

Expand Down Expand Up @@ -152,4 +164,4 @@ class HabitatToggle extends HTMLElement {
this.shadowRoot.querySelector('#content').innerHTML = tooltipText;
}
}
customElements.define('habitat-toggle', HabitatToggle);
customElements.define('habitat-toggle', HabitatToggle);
Loading