Use border instead of BG-coloring for detail group

This commit is contained in:
Brian Federle 2013-10-03 16:11:11 -07:00
parent 937ed44b77
commit 4cf18a1d9e
1 changed files with 14 additions and 3 deletions

View File

@ -23,7 +23,7 @@
}
@mixin csui-tab-active {
background: lighten(#ccc, 10%);
background: lighten(#ccc, 15%);
border-radius: 8px 8px 0 0;
margin: 0;
}
@ -40,17 +40,28 @@
}
@mixin csui-details {
background: lighten(#ccc, 10%);
background: lighten(#ccc, 15%);
padding: 10px;
border-bottom: 1px solid #ccc;
&:not(.detail-actions) {
table {
background: lighten(#ccc, 15%);
width: 100%;
tr {
&:nth-child(even) {
background: lighten(#ccc, 12%);
}
}
th, td {
padding: 10px;
}
}
}
.detail-actions {
background: white;
border-radius: 6px;
}
}