Skip to content

Commit d5a2aa6

Browse files
committed
Fix redundancy: 0px => 0
1 parent f5d4910 commit d5a2aa6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

app/assets/stylesheets/wigu/active_admin_theme.scss

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ body.active_admin {
3434
border-top-left-radius: $skinBorderRadius;
3535
border-top-right-radius: $skinBorderRadius;
3636

37-
-webkit-border-bottom-left-radius: 0px;
38-
-moz-border-radius-bottomleft: 0px;
39-
border-bottom-left-radius: 0px;
37+
-webkit-border-bottom-left-radius: 0;
38+
-moz-border-radius-bottomleft: 0;
39+
border-bottom-left-radius: 0;
4040

41-
-webkit-border-bottom-right-radius: 0px;
42-
-moz-border-radius-bottomright: 0px;
43-
border-bottom-right-radius: 0px;
41+
-webkit-border-bottom-right-radius: 0;
42+
-moz-border-radius-bottomright: 0;
43+
border-bottom-right-radius: 0;
4444
}
4545
ul > li.ui-state-active > a {
4646
background-color: #ffffff;
4747
border: 1px solid $skinBorderWindowColor;
48-
border-bottom: 0px;
48+
border-bottom: 0;
4949
color: $skinMainSecondColor;
5050
}
5151
div.tab-content {
@@ -160,7 +160,7 @@ body.active_admin {
160160
a {
161161
background-color: #ffffff;
162162
color: $skinMainFirstColor;
163-
border-radius: 0px;
163+
border-radius: 0;
164164
&:hover {
165165
background-color: $skinMainSecondColor;
166166
color: #ffffff;
@@ -231,7 +231,7 @@ body.active_admin {
231231
a {
232232
background-color: #ffffff;
233233
color: $skinMainFirstColor;
234-
border-radius: 0px;
234+
border-radius: 0;
235235
&:hover {
236236
background-color: $skinMainSecondColor;
237237
color: #ffffff;
@@ -271,7 +271,7 @@ body.active_admin {
271271
background-color: #ffffff;
272272
box-shadow: none;
273273
color: $skinMainFirstColor;
274-
border-radius: 0px;
274+
border-radius: 0;
275275
text-shadow: none;
276276
&:hover {
277277
background-color: $skinMainSecondColor;

0 commit comments

Comments
 (0)