Build mobile apps with simple HTML, CSS, and JS components. http://goratchet.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
2.8 KiB

11 years ago
//
// Table views
// --------------------------------------------------
12 years ago
.table-view {
padding: 0;
margin: 0;
11 years ago
list-style: none; // Remove usual bullet styles from table view
12 years ago
background-color: #fff;
11 years ago
// Pad each table view item and add dividers
.table-view-cell {
11 years ago
position: relative;
padding: 11px 15px 12px 15px;
border-bottom: $border-default;
11 years ago
// Remove the border from the last table view item
&:last-child {
border-bottom: 0;
}
11 years ago
// If it's a table view of links, make sure the child <a> takes up full table view item tap area (want to avoid selecting child buttons though)
11 years ago
> a:not(.btn) {
position: relative;
display: block;
padding: inherit;
margin: -11px -15px -12px -15px; // Make the entire list item tappable.
color: inherit;
&:active {
background-color: #eee;
}
}
11 years ago
p {
margin: 0;
}
11 years ago
}
// Table view dividers
// --------------------------------------------------
.table-view-divider {
padding-top: 6px;
padding-bottom: 6px;
padding-left: 15px;
margin-top: -1px; // Hides the border of the previous list item
11 years ago
margin-left: 0;
color: #999;
font-weight: $font-weight;
border-top: $border-default;
border-bottom: $border-default;
background-color: #fafafa;
11 years ago
// Rounding first divider on inset lists and remove border on the top
&:first-child {
11 years ago
top: 0;
border-radius: $border-radius $border-radius 0 0;
11 years ago
}
// Rounding last divider on inset table views
&:last-child {
border-radius: 0 0 $border-radius $border-radius;
11 years ago
}
}
}
// Indented table views
// --------------------------------------------------
.table-view-indented .table-view-cell {
padding-left: 59px;
background-position-x: 59px; // Make room for your left aligned media/icons.
11 years ago
> a:not(.btn) {
margin-left: -59px;
}
> .pull-left,
11 years ago
> a:not(.btn) .pull-left {
position: absolute;
left: 15px;
z-index: 1;
}
}
11 years ago
// Table-views with buttons
// --------------------------------------------------
11 years ago
.table-view .btn {
margin-top: -1px; // Center the btn inside the cell
}
11 years ago
// Table-views with badges
// --------------------------------------------------
11 years ago
.table-view .badge {
margin-top: 2px;
11 years ago
&.pull-left {
margin-right: 5px;
}
&.pull-right {
margin-left: 5px;
}
}
// Table-views with toggles
// --------------------------------------------------
.table-view .toggle {
margin-top: -4px; // Center the toggle inside the cell
}
// Table-views with Ratchicons
// --------------------------------------------------
.table-view .icon {
margin-top: 3px;
font-size: inherit;
&.icon-left,
&.icon-right {
color: #bbb;
}
&.pull-left {
margin-right: 5px;
}
&.pull-right {
margin-left: 5px;
}
11 years ago
}