Add Font Awesome
This commit is contained in:
parent
98357d8c27
commit
ce80e928c6
21
FONT-AWESOME-LICENSE.md
Normal file
21
FONT-AWESOME-LICENSE.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Dave Gandy
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
4
font-awesome.min.css
vendored
Normal file
4
font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -8,11 +8,11 @@ body{
|
|||
user-select: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
span.close{
|
||||
padding-left: 10px;
|
||||
i.close{
|
||||
padding-left: 5px;
|
||||
color:#000;
|
||||
}
|
||||
span.close:hover{
|
||||
padding-left: 10px;
|
||||
i.close:hover{
|
||||
padding-left: 5px;
|
||||
color:#E53935
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<link href="popup.css" rel="stylesheet" type="text/css">
|
||||
<link href="font-awesome.min.css" rel="stylesheet" type="text/css">
|
||||
<script src="popup.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
5
popup.js
5
popup.js
|
@ -11,8 +11,9 @@ function getWindows(windowList){
|
|||
windowList.appendChild(li);
|
||||
tabs.forEach(function(currentTab){
|
||||
var li = document.createElement("li");
|
||||
var closeButton = document.createElement("span");
|
||||
closeButton.textContent = "x";
|
||||
var closeButton = document.createElement("i");
|
||||
closeButton.classList.add("fa");
|
||||
closeButton.classList.add("fa-remove");
|
||||
closeButton.classList.add("close");
|
||||
closeButton.classList.add("noselect");
|
||||
closeButton.onclick = function(event){
|
||||
|
|
Loading…
Reference in a new issue