Detail view: store tab BG color in $csui-tab-bg for resuse in other styles

This commit is contained in:
Brian Federle 2013-10-08 13:56:33 -07:00
parent c81b9fc921
commit c56e59f2cd
1 changed files with 4 additions and 2 deletions

View File

@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.
$csui-tab-bg: lighten(#ccc, 15%);
@mixin csui-tab {
float: left;
list-style: none;
@ -30,7 +32,7 @@
}
@mixin csui-tab-active {
background: lighten(#ccc, 15%);
background: $csui-tab-bg;
border-radius: 8px 8px 0 0;
margin: 0;
@ -53,7 +55,7 @@
}
@mixin csui-details {
background: lighten(#ccc, 15%);
background: $csui-tab-bg;
padding: 10px;
border-bottom: 1px solid #ccc;
}