Skip to content

Commit

Permalink
Merge pull request #532 from twbs/active-states
Browse files Browse the repository at this point in the history
Active states on table-views shouldn't have blue text
  • Loading branch information
connors committed Apr 1, 2014
2 parents 06bf8f5 + 809a69b commit 2f79274
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 5 deletions.
1 change: 1 addition & 0 deletions dist/css/ratchet-theme-android.css
Expand Up @@ -317,6 +317,7 @@ a:active {
background-image: none;
}
.table-view .table-view-cell > a:not(.btn):active {
color: inherit;
background-color: #e0e0e0;
}
.table-view .table-view-cell > a:not(.btn):active .icon {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/ratchet-theme-android.min.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/css/ratchet-theme-ios.css
Expand Up @@ -210,6 +210,9 @@ p {
.table-view .table-view-cell:last-child {
background-image: none;
}
.table-view .table-view-cell > a:not(.btn):active {
color: inherit;
}
.table-view .table-view-divider {
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>"), 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-repeat: no-repeat;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/ratchet-theme-ios.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions docs/assets/css/docs.css
Expand Up @@ -1154,6 +1154,9 @@ hr {
.platform-ios .table-view .table-view-cell:last-child {
background-image: none;
}
.platform-ios .table-view .table-view-cell > a:not(.btn):active {
color: inherit;
}
.platform-ios .table-view .table-view-divider {
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>"), 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-repeat: no-repeat;
Expand Down Expand Up @@ -1677,6 +1680,7 @@ hr {
background-image: none;
}
.platform-android .table-view .table-view-cell > a:not(.btn):active {
color: inherit;
background-color: #e0e0e0;
}
.platform-android .table-view .table-view-cell > a:not(.btn):active .icon {
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/css/docs.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/dist/css/ratchet-theme-android.css
Expand Up @@ -317,6 +317,7 @@ a:active {
background-image: none;
}
.table-view .table-view-cell > a:not(.btn):active {
color: inherit;
background-color: #e0e0e0;
}
.table-view .table-view-cell > a:not(.btn):active .icon {
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/css/ratchet-theme-android.min.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions docs/dist/css/ratchet-theme-ios.css
Expand Up @@ -210,6 +210,9 @@ p {
.table-view .table-view-cell:last-child {
background-image: none;
}
.table-view .table-view-cell > a:not(.btn):active {
color: inherit;
}
.table-view .table-view-divider {
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>"), 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-repeat: no-repeat;
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/css/ratchet-theme-ios.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions sass/theme-android.scss
Expand Up @@ -435,6 +435,7 @@ a {
background-image: none;
}
> a:not(.btn):active {
color: inherit;
background-color: #e0e0e0;

.icon {
Expand Down
3 changes: 3 additions & 0 deletions sass/theme-ios.scss
Expand Up @@ -309,6 +309,9 @@ p {
&:last-child {
background-image: none;
}
> a:not(.btn):active {
color: inherit;
}
}

// Table view dividers
Expand Down

0 comments on commit 2f79274

Please sign in to comment.