Skip to content

Commit e567b41

Browse files
committed
Added missing gradients for Opera 12.
1 parent c40c08e commit e567b41

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

themes/jquery/css/base.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,13 +706,15 @@ h1.title a, h1.entry-title a, h2.title a, h2.entry-title a {
706706
border-radius: 3px;
707707
background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#d5d5d5));
708708
background: -moz-linear-gradient(top, #e5e5e5, #d5d5d5);
709+
background: -o-linear-gradient(top, #e5e5e5, #d5d5d5);
709710
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e5e5e5', endColorstr='#d5d5d5');
710711
}
711712

712713
.btn:hover {
713714
text-shadow: 0 -1px 1px #fff;
714715
background: -webkit-gradient(linear, left top, left bottom, from(#d5d5d5), to(#e5e5e5));
715716
background: -moz-linear-gradient(top, #d5d5d5, #e5e5e5);
717+
background: -o-linear-gradient(top, #d5d5d5, #e5e5e5);
716718
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d5d5d5', endColorstr='#e5e5e5');
717719
}
718720

@@ -721,6 +723,7 @@ h1.title a, h1.entry-title a, h2.title a, h2.entry-title a {
721723
text-shadow: 0 -1px 1px #000;
722724
background: -webkit-gradient(linear, left top, left bottom, from(#3492d5), to(#065791));
723725
background: -moz-linear-gradient(top, #3492d5, #065791);
726+
background: -o-linear-gradient(top, #3492d5, #065791);
724727
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3492d5', endColorstr='#065791');
725728
border-color: #065791;
726729
}
@@ -729,6 +732,7 @@ h1.title a, h1.entry-title a, h2.title a, h2.entry-title a {
729732
text-shadow: 0 1px 1px #000;
730733
background: -webkit-gradient(linear, left top, left bottom, from(#065791), to(#3492d5));
731734
background: -moz-linear-gradient(top, #065791, #3492d5);
735+
background: -o-linear-gradient(top, #065791, #3492d5);
732736
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#065791', endColorstr='#3492d5');
733737
}
734738

@@ -1539,6 +1543,7 @@ header nav.top li.toggle-projects.active a {
15391543
font-weight: normal;
15401544
background-color: #7a7a7a;
15411545
background-image: -moz-linear-gradient(top, #7a7a7a, #5e5e5e); /* FF3.6 */
1546+
background-image: -o-linear-gradient(top, #7a7a7a, #5e5e5e); /* Opera 12.0 */
15421547
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #7a7a7a),color-stop(1, #5e5e5e)); /* Saf4+, Chrome */
15431548
background-image: -webkit-linear-gradient(#7a7a7a, #5e5e5e); /* Chrome 10+, Saf6 */
15441549
background-image: linear-gradient(top, #7a7a7a, #5e5e5e);

0 commit comments

Comments
 (0)