Browse Source

Merge pull request #532 from twbs/active-states

Active states on table-views shouldn't have blue text
pull/522/head
Connor Sears 11 years ago
parent
commit
2f792746c5
  1. 1
      dist/css/ratchet-theme-android.css
  2. 2
      dist/css/ratchet-theme-android.min.css
  3. 3
      dist/css/ratchet-theme-ios.css
  4. 2
      dist/css/ratchet-theme-ios.min.css
  5. 4
      docs/assets/css/docs.css
  6. 2
      docs/assets/css/docs.min.css
  7. 1
      docs/dist/css/ratchet-theme-android.css
  8. 2
      docs/dist/css/ratchet-theme-android.min.css
  9. 3
      docs/dist/css/ratchet-theme-ios.css
  10. 2
      docs/dist/css/ratchet-theme-ios.min.css
  11. 1
      sass/theme-android.scss
  12. 3
      sass/theme-ios.scss

1
dist/css/ratchet-theme-android.css vendored

@ -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 {

2
dist/css/ratchet-theme-android.min.css vendored

File diff suppressed because one or more lines are too long

3
dist/css/ratchet-theme-ios.css vendored

@ -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;

2
dist/css/ratchet-theme-ios.min.css vendored

File diff suppressed because one or more lines are too long

4
docs/assets/css/docs.css

@ -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;
@ -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 {

2
docs/assets/css/docs.min.css vendored

File diff suppressed because one or more lines are too long

1
docs/dist/css/ratchet-theme-android.css vendored

@ -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 {

2
docs/dist/css/ratchet-theme-android.min.css vendored

File diff suppressed because one or more lines are too long

3
docs/dist/css/ratchet-theme-ios.css vendored

@ -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;

2
docs/dist/css/ratchet-theme-ios.min.css vendored

File diff suppressed because one or more lines are too long

1
sass/theme-android.scss

@ -435,6 +435,7 @@ a {
background-image: none;
}
> a:not(.btn):active {
color: inherit;
background-color: #e0e0e0;
.icon {

3
sass/theme-ios.scss

@ -309,6 +309,9 @@ p {
&:last-child {
background-image: none;
}
> a:not(.btn):active {
color: inherit;
}
}
// Table view dividers

Loading…
Cancel
Save