Skip to content
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.

Commit

Permalink
this addresses #506
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Feb 28, 2016
1 parent adfc3b2 commit 17cc720
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
32 changes: 28 additions & 4 deletions src/css/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,34 @@ a {
text-decoration: none;
}

#version {
font-size: 10px;
font-weight: normal;
}
#gotoDashboard {
background-color: #444;
border: 0;
color: #bbb;
cursor: pointer;
display: block;
font-size: 12px;
line-height: 12px;
margin: 0;
padding: 3px 0;
position: relative;
text-align: center;
}
#gotoDashboard > span:last-of-type {
opacity: 0.5;
position: absolute;
}
body[dir="ltr"] #gotoDashboard > span:last-of-type {
left: 3px;
}
body[dir="rtl"] #gotoDashboard > span:last-of-type {
right: 3px;
}

.paneHead {
background-color: white;
left:0;
Expand Down Expand Up @@ -46,10 +74,6 @@ a {
padding: 02px 0;
text-align: center;
}
#version {
font-size: 10px;
font-weight: normal;
}

.toolbar {
border: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</div>

<div class="paneHead">
<a class="extensionURL" href="#" data-extension-url="dashboard.html" title="popupTipDashboard">uMatrix <span id="version"> </span></a>
<a id="gotoDashboard" class="extensionURL" href="#" data-extension-url="dashboard.html" title="popupTipDashboard">uMatrix <span id="version"> </span><span class="fa">&#xf013;</span></a>
<div id="toolbarLeft" class="toolbar alignLeft">
<button id="scopeCell" class="dropdown-menu-button" tabindex="-1"></button>
<div class="dropdown-menu">
Expand Down

0 comments on commit 17cc720

Please sign in to comment.