Skip to content

Commit

Permalink
Update plugin with new timecard links
Browse files Browse the repository at this point in the history
  • Loading branch information
LanceGundersen committed Jul 10, 2019
1 parent f79d2dc commit a11ee2e
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 21 deletions.
7 changes: 4 additions & 3 deletions Firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"author": "Lance Gundersen",
"manifest_version": 2, "name": "MIKEL, Inc. Launcher",
"manifest_version": 2,
"name": "MIKEL, Inc. Launcher",
"description": "Quick Launch MIKEL, Inc.",
"version": "1.0.0",
"icons": {"128": "mikel-128.png"},
"version": "2.0.0",
"icons": { "128": "mikel-128.png" },
"browser_action": {
"default_icon": "mikel.png",
"default_popup": "popup.html"
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"manifest_version": 2,
"name": "MIKEL, Inc. Launcher",
"description": "Quick Launch MIKEL, Inc.",
"version": "1.0.0",
"icons": {"128": "mikel-128.png"},
"version": "2.0.0",
"icons": { "128": "mikel-128.png" },
"browser_action": {
"default_icon": "mikel.png",
"default_popup": "popup.html"
Expand Down
72 changes: 56 additions & 16 deletions popup.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>MIKEL Launcher</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans"
type="text/css"
/>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>

<style>
html, body {
html,
body {
font-family: 'Open Sans', sans-serif;
font-size: 14px;
margin: 0;
Expand All @@ -23,10 +33,11 @@
font-size: 22px;
font-weight: 400;
margin: 0;
color: #4B7173;
color: #4b7173;
}

a:link, a:visited {
a:link,
a:visited {
color: #000;
outline: 0;
text-decoration: none;
Expand Down Expand Up @@ -84,15 +95,15 @@

.flex .fa {
font-size: 40px;
color: #4B7173;
color: #4b7173;
}
</style>

</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img src="images/mikel-logo.png" alt="MIKEL Logo" class="logo-icon"> MIKEL Launcher <span class="version">(1.0.0)</span>
<img src="images/mikel-logo.png" alt="MIKEL Logo" class="logo-icon" />
MIKEL Launcher <span class="version">(2.0.0)</span>
</h1>
</div>
<div class="modal-content">
Expand All @@ -101,30 +112,59 @@ <h1 class="logo">
<div class="modal-icons">
<div class="flex-container">
<div class="flex">
<a href="https://www.mikelinc.com" target="_blank">
<a
href="https://www.mikelinc.com"
target="_blank"
title="MIKEL Website"
>
<i class="fa fa-globe"></i>
</a>
</div>
<div class="flex">
<a href="https://outlook.office365.com/owa/" target="_blank">
<a
href="https://outlook.office365.com/owa/"
target="_blank"
title="Outlook Email"
>
<i class="fa fa-envelope"></i>
</a>
</div>
<div class="flex">
<a href="https://tcg2.hostedaccess.com/DeltekTC/welcome.msv" target="_blank">
<a
href="https://cpmkl.hostedaccess.com/cploginform.htm?1554929128"
target="_blank"
title="CostPoint Timesheets"
>
<i class="fa fa-clock-o"></i>
</a>
</div>
<div class="flex">
<a href="https://mikelinc.sharepoint.com" target="_blank">
<a
href="https://mikelinc.sharepoint.com"
target="_blank"
title="MIKEL SharePoint"
>
<i class="fa fa-file-text"></i>
</a>
</div>
<div class="flex">
<a href="https://www.mykplan.com/participantsecure_net/login.aspx" target="_blank">
<a
href="https://www.mykplan.com/participantsecure_net/login.aspx"
target="_blank"
title="MIKEL Retirement"
>
<i class="fa fa-bar-chart"></i>
</a>
</div>
<div class="flex">
<a
href="https://mikel.hostedaccess.com/"
target="_blank"
title="CostPoint Portal"
>
<i class="fa fa-user"></i>
</a>
</div>
</div>
</div>
</body>
Expand Down

0 comments on commit a11ee2e

Please sign in to comment.