Skip to content

Commit

Permalink
Merge pull request #1 from pramjeet/master
Browse files Browse the repository at this point in the history
merge from pramjeet/peek-a-tab:master
  • Loading branch information
yihuaxiang authored Sep 9, 2019
2 parents f78d150 + fdda512 commit fa2bc7e
Show file tree
Hide file tree
Showing 4 changed files with 483 additions and 430 deletions.
153 changes: 90 additions & 63 deletions app.html
Original file line number Diff line number Diff line change
@@ -1,80 +1,107 @@
<!doctype html>
<!DOCTYPE html>
<html xmlns:v-bind="http://www.w3.org/1999/xhtml">

<head>
<head>
<title>Peek a tab</title>
<link href="fonts/stylesheet.css" rel="stylesheet" type="text/css">
<link href="app.css" rel="stylesheet" type="text/css">
</head>
<link href="fonts/stylesheet.css" rel="stylesheet" type="text/css" />
<link href="app.css" rel="stylesheet" type="text/css" />
</head>

<body>
<body>
<div id="app">
<div id="options-header">
<div id="search-div">
<img id="search-icon" src="./images/search.png" />
<input
placeholder="search title and url"
id="search-input"
type="text"
v-model="searchText"
/>
</div>

<div id="options-header">
<div id="search-div">
<img id="search-icon" src="./images/search.png" />
<input placeholder="search title and url" id="search-input" type="text" v-model="searchText" />
<div id="options">
<div class="option">
<div class="option-inner">
<img
class="option-icon"
id="mouse-behavior-image"
src="./images/cursor-pointer-hover.png"
/>
</div>

<div id="options">
<div class="option">
<div class="option-inner">
<img class="option-icon" id="mouse-behavior-image" src="./images/cursor-pointer-hover.png" />
</div>

<div class="option-body" id="mouse-behavior-options-container">
<div class="option-body" id="mouse-behavior-options-container">
<div
class="option-choice mouse-behavior-option"
data-mouse-behavior="hover"
>
<img
class="option-choice-image"
src="./images/cursor-pointer-hover.png"
/>
<p class="option-choice-text">
Change Tab on hover, single click to shift to the tab and
close tabs list.
</p>
</div>

<div class="option-choice mouse-behavior-option" data-mouse-behavior="hover">
<img class="option-choice-image" src="./images/cursor-pointer-hover.png" />
<p class="option-choice-text">Change Tab on hover, single click to shift to the tab and close tabs list.
</p>
</div>
<div
class="option-choice mouse-behavior-option"
data-mouse-behavior="single-click"
>
<img
class="option-choice-image"
src="./images/cursor-pointer-single-click.png"
/>
<p class="option-choice-text">
Shift to the tab and close tabs list with a single click.
</p>
</div>

<div class="option-choice mouse-behavior-option" data-mouse-behavior="single-click">
<img class="option-choice-image" src="./images/cursor-pointer-single-click.png" />
<p class="option-choice-text">Shift to the tab and close tabs list with a single click.</p>
</div>

<div class="option-choice mouse-behavior-option" data-mouse-behavior="click">
<img class="option-choice-image" src="./images/cursor-pointer-click.png" />
<p class="option-choice-text">Change Tab on click, double click to shift to the tab and close tabs list.</p>
</div>

</div>
<div
class="option-choice mouse-behavior-option"
data-mouse-behavior="click"
>
<img
class="option-choice-image"
src="./images/cursor-pointer-click.png"
/>
<p class="option-choice-text">
Change Tab on click, double click to shift to the tab and
close tabs list.
</p>
</div>
</div>

<!--<div class="option-hint">-->
<!--<p class="option-hint-text">-->
<!--<span>-->
<!--Change mouse behavior-->
<!--</span>-->
<!--</p>-->
<!--<div class="option-hint">-->
<!--<p class="option-hint-text">-->
<!--<span>-->
<!--Change mouse behavior-->
<!--</span>-->
<!--</p>-->

<!--<button class="option-hint-button">-->
<!--ok-->
<!--</button>-->
<!--</div>-->
</div>
</div>
<!--<button class="option-hint-button">-->
<!--ok-->
<!--</button>-->
<!--</div>-->
</div>
</div>
</div>

<ul id="tabs-list">
</ul>
<ul id="tabs-list"></ul>

<div id="announcement-container">
<div id="announcement_header">
<h3 id="announcement-title">What's New</h3>
<img id="announcement-close-icon" src="images/close_icon.png" />
</div>
<div id="announcement-body">
<ul id="announcement-list">
<li>Close tab with 'delete' and 'backspace' keys</li>
<li>Better keyboard navigation</li>
<li>This awesome area to tell about what's new in an update ;)</li>
</ul>
</div>
<div id="announcement-container">
<div id="announcement_header">
<h3 id="announcement-title">What's New</h3>
<img id="announcement-close-icon" src="images/close_icon.png" />
</div>
<div id="announcement-body">
<ul id="announcement-list">
<li>Bug fixed: Window opens and closes immediately</li>
<li>Shows 'current' against the active window</li>
</ul>
</div>
</div>
</div>
<script src="app.js"></script>
</body>

</html>
</body>
</html>
Loading

0 comments on commit fa2bc7e

Please sign in to comment.