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" />
|
2010-03-05 15:14:10 -08:00
|
|
|
<link rel="icon" href="chrome://tabcandy/content/tabcandy.png"/>
|
2010-03-22 17:12:32 -07:00
|
|
|
<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);
|
2010-03-09 16:04:36 -08:00
|
|
|
z-index: 0;
|
2010-03-17 14:06:07 -07:00
|
|
|
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{
|
2010-03-17 14:06:07 -07:00
|
|
|
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);
|
2010-03-22 17:12:32 -07:00
|
|
|
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;
|
2010-03-22 17:12:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2010-03-01 04:15:19 -08:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2010-03-19 13:21:21 -07:00
|
|
|
.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);
|
|
|
|
}
|
2010-03-20 11:01:45 -07:00
|
|
|
|
|
|
|
.scale-down-animate{
|
|
|
|
-moz-transition-property: height, width, left, top;
|
|
|
|
-moz-transition-duration: .26s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
}
|
2010-03-19 13:21:21 -07:00
|
|
|
|
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>
|
|
|
|
|
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
|
|
|
|
2010-03-25 17:22:45 -07:00
|
|
|
<script type="text/javascript;version=1.8" src="../../js/shared/groups.js"></script>
|
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-03-01 04:15:19 -08:00
|
|
|
|
2010-02-24 01:47:55 -08:00
|
|
|
</body>
|
|
|
|
</html>
|