mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
+ Updated the spec
+ Modified the tabitem layout code so that favicons are more sensibly handled at smaller sizes.
This commit is contained in:
parent
0e1ecccb88
commit
0976054f8a
@ -251,6 +251,7 @@ window.TabItem.prototype = iQ.extend(new Item(), {
|
||||
var $title = iQ('.tab-title', $container);
|
||||
var $thumb = iQ('.thumb', $container);
|
||||
var $close = iQ('.close', $container);
|
||||
var $fav = iQ('.favicon', $container);
|
||||
var css = {};
|
||||
|
||||
const minFontSize = 8;
|
||||
@ -305,15 +306,46 @@ window.TabItem.prototype = iQ.extend(new Item(), {
|
||||
$title.fadeIn();//.dequeue();
|
||||
}
|
||||
|
||||
if(css.width) {
|
||||
if(css.width < 30) {
|
||||
$thumb.fadeOut();
|
||||
$close.fadeOut();
|
||||
} else {
|
||||
$thumb.fadeIn();
|
||||
$close.fadeIn();
|
||||
|
||||
// TODO: This code is functional, but should probably be rewritten to
|
||||
// break DRY less. I'm not really sure the best way to do that in
|
||||
// this case, though. I've leave it for a man with four hands. -- Aza
|
||||
if(css.width && !this.inStack()) {
|
||||
$fav.css({top:4,left:4});
|
||||
if(css.width < 70) {
|
||||
$fav.addClass("lessVisible");
|
||||
|
||||
var opacity = (css.width-60)/10;
|
||||
if( opacity > 0 ){
|
||||
$close.show().css({opacity:opacity});
|
||||
$fav.css({backgroundColor:"rgba(245,245,245," + opacity + ")"})
|
||||
}
|
||||
else $close.hide();
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
$fav.removeClass("lessVisible").css({backgroundColor:"rgba(245,245,245,1)"});
|
||||
$close.show();
|
||||
}
|
||||
}
|
||||
|
||||
if(css.width && this.inStack()){
|
||||
if(css.width < 90) {
|
||||
$fav.addClass("lessVisible");
|
||||
|
||||
var opacity = (css.width-80)/10;
|
||||
if( opacity > 0 ){
|
||||
$fav.css({backgroundColor:"rgba(245,245,245," + opacity + ")"})
|
||||
}
|
||||
|
||||
} else {
|
||||
$fav.removeClass("lessVisible").css({
|
||||
backgroundColor:"rgba(245,245,245,1)",
|
||||
top: 0,
|
||||
left: 0
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
this._hasBeenDrawn = true;
|
||||
}
|
||||
|
@ -80,6 +80,12 @@ body {
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.lessVisible {
|
||||
background-color: rgba(245,245,245, .2);
|
||||
-moz-box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.close {
|
||||
position: absolute;
|
||||
|
Loading…
Reference in New Issue
Block a user