blob: dc0a814cce394983a219f6cffdc0a34a71db3973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* mbl.widget.Heading */
@import url("iphone-compat.css");
.alertTitle {
background-image: url(compat/heading-bg.png);
}
.mblImageThumbView .mblThumb {
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
}
.mblImageThumbView .mblThumb:hover {
-moz-transform: scale(1.2);
-moz-transition: all 0.3s ease-in-out;
-o-transform: scale(1.2);
-o-transition: all 0.3s ease-in-out;
}
.mblImageThumbView .mblThumbInner .mblThumbMask .mblThumbSrc {
-moz-background-size: 100% 100%;
-moz-border-radius: 5px;
-o-background-size: 100% 100%;
-o-border-radius: 5px;
}
|