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
3.2 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
li {
position: relative;
padding: 11px 60px 12px 0; // Given extra right padding to accomodate badges, chevrons or buttons. Extra 1px bottom padding given for hairline divider.
11 years ago
margin-left: 15px;
background-image: $hairline;
background-repeat: repeat-x;
background-position: bottom;
11 years ago
// Remove the border from the last table view item
&:last-child {
background-image: none;
}
11 years ago
// If a 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)
> a:not([class*="button"]) {
position: relative;
display: block;
padding: inherit;
margin: -11px -60px -12px 0;
color: inherit;
}
11 years ago
p {
margin: 0;
}
11 years ago
}
// Inset table views
// --------------------------------------------------
&.inset {
width: auto;
margin-right: 10px;
margin-left: 10px;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: 6px;
// Remove border from first/last standard list items to avoid double border at top/bottom of table views
li:first-child,
11 years ago
li:last-child {
background-image: none;
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;
background-color: #fafafa;
background-image: $hairline, $hairline;
background-position: top, bottom;
11 years ago
// Rounding first divider on inset lists and remove border on the top
&:first-child {
11 years ago
top: 0;
border-radius: 6px 6px 0 0;
}
// Rounding last divider on inset table views
&:last-child {
11 years ago
border-radius: 0 0 6px 6px;
}
}
// Right-aligned subcontent in table views (chevrons, buttons, counts and toggles)
// -------------------------------------------------------------------------------
.chevron,
[class*="button"],
[class*="badge"],
11 years ago
.toggle {
position: absolute;
top: 50%;
right: 10px;
}
// Position chevrons/badges vertically centered on the right in table view items
11 years ago
.chevron,
[class*="badge"] {
11 years ago
margin-top: -10px; // Half height of chevron
}
// Push badge over if there's a sibling chevron
.chevron + [class*="badge"] {
right: 30px;
11 years ago
}
12 years ago
11 years ago
// Position buttons vertically centered on the right in table view items
[class*="button"] {
left: auto;
margin-top: -14px; // Half height of button
}
12 years ago
11 years ago
.toggle {
margin-top: -15px; // Half height of toggle
}
}
// Table views in popovers
// --------------------------------------------------
.popover .table-view {
width: auto;
max-height: 300px;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
overflow: auto;
background-color: #fff;
border-radius: 12px;
-webkit-overflow-scrolling: touch;
12 years ago
}