Skip to content

Commit

Permalink
Merge pull request #2287 from rhamilto/issue-1232
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue.

Hiding td[role=presentation] at mobile to fix traffic table bug

Fixes #1232 

![screen shot 2017-10-17 at 2 30 38 pm](https://user-images.githubusercontent.com/895728/31683187-480ea82e-b34a-11e7-997b-effbbfd51f07.PNG)
  • Loading branch information
openshift-merge-robot committed Oct 17, 2017
2 parents ce2f355 + f8e448b commit a7bc1f0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
11 changes: 6 additions & 5 deletions app/styles/_tables.less
Expand Up @@ -249,11 +249,12 @@

.table-row-variant(disabled; @color-pf-black-150);

// swaps direction of arrow in table cell
td[role="presentation"].arrow:after {
content: "\2193";

@media (min-width: @screen-sm-min) {
td[role="presentation"] {
@media(max-width: @screen-xs-max) {
// hide td[role="presentation"] at mobile
display: none;
}
&.arrow:after {
content: "\2192";
}
}
10 changes: 4 additions & 6 deletions dist/styles/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a7bc1f0

Please sign in to comment.