Bug 622288 - CSS warnings: Error in parsing value for 'height'/'width'. Declaration dropped. [r=ian, a=beltzner]

--HG--
extra : rebase_source : 322f60ff026467dc0fd954fd1c01b8deff4358ed
This commit is contained in:
Tim Taubert 2011-01-25 22:00:20 +01:00
parent 51595e1354
commit f89b0f4bf0
4 changed files with 1 additions and 7 deletions

View File

@ -745,7 +745,7 @@ TabItem.prototype = Utils.extend(new Item(), new Subscribable(), {
top: orig.top * (1 - 1/scaleCheat),
left: orig.left * (1 - 1/scaleCheat),
width: zoomWidth,
height: orig.height * zoomWidth / orig.width
height: (orig.width ? orig.height * zoomWidth / orig.width : 0)
};
},

View File

@ -429,10 +429,8 @@ input.name:-moz-placeholder {
font-style: italic !important;
color: transparent;
background-image: url(chrome://browser/skin/tabview/edit-light.png);
background-image-opacity: .1;
background-repeat: no-repeat;
-moz-padding-start: 20px;
-moz-padding-end: -20px;
}
.title-container:hover input.name:-moz-placeholder {

View File

@ -425,10 +425,8 @@ input.name:-moz-placeholder {
font-style: italic !important;
color: transparent;
background-image: url(chrome://browser/skin/tabview/edit-light.png);
background-image-opacity: .1;
background-repeat: no-repeat;
-moz-padding-start: 20px;
-moz-margin-end: -20px;
}
.title-container:hover input.name:-moz-placeholder {

View File

@ -448,10 +448,8 @@ input.name:-moz-placeholder {
font-style: italic !important;
color: transparent;
background-image: url(chrome://browser/skin/tabview/edit-light.png);
background-image-opacity: .1;
background-repeat: no-repeat;
-moz-padding-start: 20px;
-moz-padding-end: -20px;
}
.title-container:hover input.name:-moz-placeholder {