replaced redundant -*-border-radius box-shadows and others with corresponding mixins

This commit is contained in:
Koen Punt 2012-11-23 17:51:38 +01:00
parent 84de1b71d1
commit b825582eb1
26 changed files with 240 additions and 268 deletions

View file

@ -41,16 +41,16 @@
}
.middle_box_content {
border-radius: 0;
@include border-radius(0);
border: none;
font-size: 12px;
background-color:#f5f5f5;
background-color: #f5f5f5;
border: none;
border-top:1px solid #eee;
border-top: 1px solid #eee;
}
.bottom_box_content {
border-top:1px solid #eee;
border-top: 1px solid #eee;
}
}
@ -59,14 +59,14 @@
*
*/
.ui-box {
background:#F9F9F9;
background: #F9F9F9;
margin-bottom: 25px;
@include round-borders-all(4px);
border-color: #CCC;
@include solid_shade;
&.white {
background:#fff;
background: #fff;
}
ul {
@ -87,16 +87,16 @@
}
form {
padding:9px 0;
padding: 9px 0;
margin: 0px;
}
.nav-pills {
li {
padding:3px 0;
padding: 3px 0;
&.active a { background-color: $style_color; }
a {
border-radius: 7px;
@include border-radius(7px);
}
}
}
@ -116,20 +116,20 @@
padding: 5px 20px;
}
.middle_title {
background:#f5f5f5;
background: #f5f5f5;
margin:20px -20px;
padding: 0 20px;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
font-size: 14px;
color:#777;
color: #777;
}
}
.row_title {
font-weight: bold;
color:#444;
color: #444;
&:hover {
color:#444;
color: #444;
text-decoration: underline;
}
}