mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-02 18:17:46 +01:00
action popup html and npm setup
This commit is contained in:
parent
870768ec6c
commit
54695c5673
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
.vs
|
.vs
|
||||||
|
node_modules
|
||||||
|
59
src/action_popup.html
Normal file
59
src/action_popup.html
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title></title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
width: 300px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.42857143;
|
||||||
|
color: #333333;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited, a:focus, a:active {
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
height: 60px;
|
||||||
|
background-color: blue;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
header a {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
height: 60px;
|
||||||
|
background-color: #cccccc;
|
||||||
|
border-top: 1px solid #999999;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<section id="menu">
|
||||||
|
<header></header>
|
||||||
|
<content>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">My Vault</a></li>
|
||||||
|
<li><a href="#">Sites</a></li>
|
||||||
|
<li><a href="#">Matching Sites</a></li>
|
||||||
|
<li><a href="#">Settings</a></li>
|
||||||
|
</ul>
|
||||||
|
</content>
|
||||||
|
<footer>
|
||||||
|
Logout
|
||||||
|
</footer>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -19,6 +19,7 @@
|
|||||||
"19": "images/icon19.png",
|
"19": "images/icon19.png",
|
||||||
"38": "images/icon38.png"
|
"38": "images/icon38.png"
|
||||||
},
|
},
|
||||||
"default_title": "bitwarden"
|
"default_title": "bitwarden",
|
||||||
|
"default_popup": "action_popup.html"
|
||||||
}
|
}
|
||||||
}
|
}
|
7
src/package.json
Normal file
7
src/package.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"name": "bitwarden",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"devDependencies": {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user