Browse Source

table-view borders

pull/253/head
connors 11 years ago
parent
commit
747d92e6dd
  1. 2
      dist/ios-theme.css
  2. 4
      dist/ratchet.css
  3. 2
      docs-assets/css/docs.css
  4. 2
      lib/sass/forms.scss
  5. 2
      lib/sass/table-views.scss
  6. 2
      lib/sass/theme-ios.scss

2
dist/ios-theme.css vendored

@ -200,7 +200,7 @@ p {
.table-view .table-view-cell {
border-bottom: 0;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
background-position: 0 100%;
background-position: 15px 100%;
background-repeat: no-repeat;
}
.table-view .table-view-cell:last-child {

4
dist/ratchet.css vendored

@ -698,7 +698,7 @@ input[type="button"] {
.table-view {
padding: 0;
margin: 0 0 20px 0;
margin: 0 0 15px 0;
list-style: none;
background-color: #fff;
border-top: 1px solid #dddddd;
@ -809,7 +809,7 @@ input[type="color"],
width: 100%;
height: 35px;
padding: 0 15px;
margin-bottom: 10px;
margin-bottom: 15px;
line-height: 21px;
background-color: #fff;
border: 1px solid #dddddd;

2
docs-assets/css/docs.css

@ -965,7 +965,7 @@ hr {
.platform-ios .table-view .table-view-cell {
border-bottom: 0;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
background-position: 0 100%;
background-position: 15px 100%;
background-repeat: no-repeat;
}
.platform-ios .table-view .table-view-cell:last-child {

2
lib/sass/forms.scss

@ -32,7 +32,7 @@ input[type="color"],
width: 100%;
height: 35px;
padding: 0 15px;
margin-bottom: 10px;
margin-bottom: 15px;
line-height: $line-height-default;
background-color: #fff;
border: $border-default;

2
lib/sass/table-views.scss

@ -4,7 +4,7 @@
.table-view {
padding: 0;
margin: 0 0 20px 0;
margin: 0 0 15px 0;
list-style: none; // Remove usual bullet styles from table view
background-color: #fff;
border-top: $border-default;

2
lib/sass/theme-ios.scss

@ -296,7 +296,7 @@ p {
.table-view-cell {
border-bottom: 0;
@include hairline(single, #c8c7cc, 0); // Single grey border.
@include hairline(single, #c8c7cc, 15px); // Single grey border with 15px offset.
// Remove the border from the last table view item
&:last-child {

Loading…
Cancel
Save