gecko/content/candies/original/index.html

159 lines
3.9 KiB
HTML
Raw Normal View History

2010-02-24 01:47:55 -08:00
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<head>
<title>Switch</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
+ Major reorg: moved all visualizations into "candies" folder, moved core js files into "core" folder, and js files shared by a couple of visualizations into "shared" folder + the top level index.html now automatically grabs all the different visualizations and lists them + Added a visualization switcher that can be dropped into any visualization; drop down in the upper left of the window + The Utils routines log(), trace() and error() now take in any number of parameters. If a parameter is an object, its first level is automatically expanded + Fixed lasso in the "original" visualization --HG-- rename : browser/base/content/tabcandy/jquery-ui.js => browser/base/content/tabcandy/app/jquery-ui.js rename : browser/base/content/tabcandy/jquery.js => browser/base/content/tabcandy/core/jquery.js rename : browser/base/content/tabcandy/app/jquery.lasso.js => browser/base/content/tabcandy/shared/jquery.lasso.js rename : content/ian1/index.html => content/candies/ian1/index.html rename : content/ian1/ui.js => content/candies/ian1/js/ui.js rename : content/line/index.html => content/candies/line/index.html rename : content/line/js/jquery.line.js => content/candies/line/js/jquery.line.js rename : content/line/js/jquery.select.js => content/candies/line/js/jquery.select.js rename : content/tab.html => content/candies/original/index.html rename : content/select/index.html => content/candies/select/index.html rename : content/stacks/index.html => content/candies/stacks/index.html rename : content/stacks/js/jquery.select.js => content/candies/stacks/js/jquery.select.js rename : content/stacks/js/ui.js => content/candies/stacks/js/ui.js
2010-03-05 15:14:10 -08:00
<link rel="icon" href="chrome://tabcandy/content/tabcandy.png"/>
<link rel="stylesheet" href="../../css/shared/groups.css" type="text/css">
2010-02-24 01:47:55 -08:00
<style media="screen" type="text/css">
html, body {
margin: 0;
padding: 0;
font-family: Geneva;
}
.tab{
position: absolute;
display: block;
float:left;
margin: 10px;
padding: 0;
background-color: rgba(255,255,255,.8);
z-index: 0;
width: 160px;
height: 137px;
2010-02-24 01:47:55 -08:00
}
.fav{
position: absolute;
width: 16px;
height: 16px;
background-color: rgba(255,255,255,.8);
-moz-border-radius: 0 0 5px 0;
padding: 3px;
-moz-box-shadow: 1px 1px 3px rgba(0,0,0,.2);
}
.thumb{
width: 100%;
height: 80%;
2010-02-24 01:47:55 -08:00
background-color: #ccc;
-moz-box-shadow: 1px 1px 10px rgba(0,0,0,.3);
}
.thumb:hover{
-moz-box-shadow: 1px 1px 10px rgba(0,0,0,.5);
}
.name{
font-size: 9px;
display:block;
width:160px;
white-space: nowrap;
overflow: hidden;
}
.name:before{
display:inline-block;
height:12px;
width:20px;
content:" ";
position: absolute;
right:0px;
background: -moz-linear-gradient(0deg, rgba(255,255,255,0), white);
overflow: hidden;
2010-02-24 01:47:55 -08:00
}
.close{
position: absolute;
top:12px; right:0;
margin: 1px;
width:12px; height:12px;
background-color: rgba(0,0,0,.6);
font-size: 10px;
text-align: center;
line-height:13px;
color: #DDD;
cursor: pointer;
-moz-border-radius: 10px;
-moz-box-shadow: inset 1px 1px 0px rgba(0,0,0,.5), inset -1px -1px 0px rgba(255,255,255,.5);
text-shadow: 1px 1px 1px rgba(0,0,0,.5);
font-family: Helvetica;
}
.titlebar .close {
top: 2px;
right: 2px;
}
2010-02-24 01:47:55 -08:00
.search{width:100%; margin-top: 30px; text-align: center; margin-bottom: 30px;}
.search input{ width: 300px; font-size: 16pt;}
#actions{
position: absolute;
top: 5px;
right: 5px;
font-size: 11px;
}
.unhighlight{
opacity: .1;
z-index: -100;
}
.lasso-menu{
background-color: white;
width: 100px;
height: 100px;
border: 1px solid #DDD;
-moz-box-shadow: 2px 2px 4px rgba(0,0,0,.5);
line-height: 100px;
text-align: center;
cursor: pointer;
}
.scale-animate{
-moz-transition-property: height, width, left, top;
-moz-transition-duration: .17s;
-moz-transition-timing-function: cubic-bezier(1.0, 0.0, 1.0, 1.0);
}
.scale-down-animate{
-moz-transition-property: height, width, left, top;
-moz-transition-duration: .26s;
-moz-transition-timing-function: ease-out;
}
2010-02-24 01:47:55 -08:00
</style>
</head>
<body>
<div class="search">
<input type="text"/>
</div>
<div id="actions">
<a id="tabbar" href="#">Toggle Tab Bar</a>
</div>
+ Major reorg: moved all visualizations into "candies" folder, moved core js files into "core" folder, and js files shared by a couple of visualizations into "shared" folder + the top level index.html now automatically grabs all the different visualizations and lists them + Added a visualization switcher that can be dropped into any visualization; drop down in the upper left of the window + The Utils routines log(), trace() and error() now take in any number of parameters. If a parameter is an object, its first level is automatically expanded + Fixed lasso in the "original" visualization --HG-- rename : browser/base/content/tabcandy/jquery-ui.js => browser/base/content/tabcandy/app/jquery-ui.js rename : browser/base/content/tabcandy/jquery.js => browser/base/content/tabcandy/core/jquery.js rename : browser/base/content/tabcandy/app/jquery.lasso.js => browser/base/content/tabcandy/shared/jquery.lasso.js rename : content/ian1/index.html => content/candies/ian1/index.html rename : content/ian1/ui.js => content/candies/ian1/js/ui.js rename : content/line/index.html => content/candies/line/index.html rename : content/line/js/jquery.line.js => content/candies/line/js/jquery.line.js rename : content/line/js/jquery.select.js => content/candies/line/js/jquery.select.js rename : content/tab.html => content/candies/original/index.html rename : content/select/index.html => content/candies/select/index.html rename : content/stacks/index.html => content/candies/stacks/index.html rename : content/stacks/js/jquery.select.js => content/candies/stacks/js/jquery.select.js rename : content/stacks/js/ui.js => content/candies/stacks/js/ui.js
2010-03-05 15:14:10 -08:00
<script type="text/javascript;version=1.8" src="../../js/core/jquery.js"></script>
<script type="text/javascript;version=1.8" src="../../js/optional/jquery-ui.js"></script>
<script type="text/javascript;version=1.8" src="../../js/core/utils.js"></script>
<script type="text/javascript;version=1.8" src="../../js/core/tabs.js"></script>
<script type="text/javascript;version=1.8" src="../../js/core/mirror.js"></script>
<script type="text/javascript;version=1.8" src="js/ui.js"></script>
2010-02-24 01:47:55 -08:00
<script type="text/javascript;version=1.8" src="../../js/shared/groups.js"></script>
+ Major reorg: moved all visualizations into "candies" folder, moved core js files into "core" folder, and js files shared by a couple of visualizations into "shared" folder + the top level index.html now automatically grabs all the different visualizations and lists them + Added a visualization switcher that can be dropped into any visualization; drop down in the upper left of the window + The Utils routines log(), trace() and error() now take in any number of parameters. If a parameter is an object, its first level is automatically expanded + Fixed lasso in the "original" visualization --HG-- rename : browser/base/content/tabcandy/jquery-ui.js => browser/base/content/tabcandy/app/jquery-ui.js rename : browser/base/content/tabcandy/jquery.js => browser/base/content/tabcandy/core/jquery.js rename : browser/base/content/tabcandy/app/jquery.lasso.js => browser/base/content/tabcandy/shared/jquery.lasso.js rename : content/ian1/index.html => content/candies/ian1/index.html rename : content/ian1/ui.js => content/candies/ian1/js/ui.js rename : content/line/index.html => content/candies/line/index.html rename : content/line/js/jquery.line.js => content/candies/line/js/jquery.line.js rename : content/line/js/jquery.select.js => content/candies/line/js/jquery.select.js rename : content/tab.html => content/candies/original/index.html rename : content/select/index.html => content/candies/select/index.html rename : content/stacks/index.html => content/candies/stacks/index.html rename : content/stacks/js/jquery.select.js => content/candies/stacks/js/jquery.select.js rename : content/stacks/js/ui.js => content/candies/stacks/js/ui.js
2010-03-05 15:14:10 -08:00
<!-- BEGIN Switch Control -->
<script type="text/javascript;version=1.8" src="../../js/optional/switch.js"></script>
<script type="text/javascript;version=1.8">
Switch.insert('body', '');
</script>
<!-- END Switch Control -->
2010-02-24 01:47:55 -08:00
</body>
</html>