Merge "Fix border-radius on Firefox > 12"

This commit is contained in:
Shawn Pearce 2013-12-16 06:41:58 +00:00 committed by Gerrit Code Review
commit 4f00f41dc3
4 changed files with 33 additions and 4 deletions

View File

@ -26,6 +26,7 @@
width: 92%;
z-index: 1002;
opacity: 0.85;
border-radius: 10px;
}
@if user.agent safari {

View File

@ -31,9 +31,20 @@ limitations under the License.
padding-right: 12px;
text-align: center;
background: #FFF1A8;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
@if user.agent safari {
.popup {
\-webkit-border-radius: 10px;
}
}
@if user.agent gecko1_8 {
.popup {
\-moz-border-radius: 10px;
}
}
a.action {
color: #222;
text-decoration: underline;

View File

@ -37,8 +37,19 @@ limitations under the License.
text-shadow: 1px 1px 7px #000000;
min-width: 300px;
z-index: 200;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
@if user.agent safari {
.dialog {
\-webkit-border-radius: 10px;
}
}
@if user.agent gecko1_8 {
.dialog {
\-moz-border-radius: 10px;
}
}
.box { margin: 10px; }

View File

@ -158,9 +158,15 @@ a:hover {
border-top: 1px solid lightgray;
border-left: 1px solid lightgray;
border-right: 1px solid lightgray;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.commentPanelBorder.commentPanelLast {
border-bottom: 1px solid lightgray;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
@if user.agent safari {