Repository URL to install this package:
|
Version:
1.0.0.pre ▾
|
//= depend_on_asset "active_admin/orderable.png"
// ----------------------------------- Tables
table tr {
td {
vertical-align: top;
}
}
// --------- Index Tables
table.index_table {
width: 100%;
margin-bottom: 10px;
border: 0;
border-spacing: 0;
th {
@include section-header;
border-right: none;
text-align: left;
padding-left: $cell-horizontal-padding;
padding-right: $cell-horizontal-padding;
a, a:link, a:visited {
color: $section-header-text-color;
text-decoration: none;
display: block;
white-space: nowrap;
-webkit-font-smoothing: antialiased;
}
&.sortable a {
background: image-url('active_admin/orderable.png') no-repeat 0 4px; padding-left: 13px;
}
&.sorted-asc a { background-position: 0 -27px; }
&.sorted-desc a { background-position: 0 -56px;}
&.sorted-asc, &.sorted-desc {
@include gradient(darken($secondary-gradient-start, 5%), darken($secondary-gradient-stop, 5%));
}
&:last-child {
border-right: solid 1px #d4d4d4;
}
}
tr.even td { background: $table-stripe-color; }
tr.selected td {
background: $table-selected-color;
}
td {
padding: 10px $cell-horizontal-padding 8px $cell-horizontal-padding;
border-bottom: 1px solid #e8e8e8;
vertical-align: top;
}
}
// --------- Tables inside Panels
.panel_contents table {
margin-top: 5px;
th {
padding-top: 10px;
background: none;
color: $primary-color;
@include no-shadow;
@include text-shadow;
text-transform: uppercase;
border-bottom: 1px solid #ccc;
}
tr.odd td { background: darken($table-stripe-color, 3%); }
tr.even td { background: $table-stripe-color; }
}
// -------------------------------------- Resource Attributes Table
.attributes_table { overflow: hidden; }
.attributes_table table {
col.even { background: $table-stripe-color; }
col.odd { background: darken($table-stripe-color, 3%); }
th, td {
padding: 8px $cell-horizontal-padding 6px $cell-horizontal-padding;
vertical-align: top;
border-bottom: 1px solid #e8e8e8;
}
th {
@include no-shadow;
@include no-gradient;
width: 150px;
font-size: 0.9em;
padding-left: 0;
text-transform: uppercase;
color: $primary-color;
@include text-shadow;
}
td {
.empty {
color: #bbb;
font-size: 0.8em;
text-transform: uppercase;
letter-spacing: 0.2em;
}
}
}
.sidebar_section .attributes_table th { width: 50px; }