Bug 980339 - Remove border-radius from add-on manager on Windows 8. r=mikedeboer, sr=Unfocused.

This commit is contained in:
Tim Nguyen 2014-04-02 13:17:44 +02:00
parent b8e1625bb0
commit eed0252386
2 changed files with 23 additions and 8 deletions

View File

@ -68,10 +68,18 @@ html|html {
background-image: linear-gradient(rgba(255, 255, 255, 0),
rgba(255, 255, 255, 0.75));
border: 1px solid #C3CEDF;
border-radius: 5px;
}
%ifdef WINDOWS_AERO
@media (-moz-os-version: windows-vista),
(-moz-os-version: windows-win7) {
%endif
*|*.main-content {
border-radius: 5px;
}
%ifdef WINDOWS_AERO
}
@media (-moz-windows-glass) {
/* Buttons */
*|button,

View File

@ -181,15 +181,22 @@
overflow: hidden;
}
.category:-moz-locale-dir(ltr) {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
%ifdef WINDOWS_AERO
@media (-moz-os-version: windows-vista),
(-moz-os-version: windows-win7) {
%endif
.category:-moz-locale-dir(ltr) {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.category:-moz-locale-dir(rtl) {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
.category:-moz-locale-dir(rtl) {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
%ifdef WINDOWS_AERO
}
%endif
.category[disabled] {
border-top: 0;