mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
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:
parent
51595e1354
commit
f89b0f4bf0
@ -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)
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user