Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | table > thead > tr > th { |
| 2 | cursor: pointer; |
| 3 | position: relative; |
| 4 | background-image: none; |
| 5 | color: #fff; |
| 6 | background-color: #666; |
| 7 | a{ |
| 8 | color: #fff; |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | .table-sortable > thead > tr > th:after, |
| 13 | .table-sortable > thead > tr > th.sort-false:after, |
| 14 | .table-sortable > thead > tr > th.sort-true:after { |
| 15 | font-family: FontAwesome; |
| 16 | padding-left: 5px; |
| 17 | } |
| 18 | |
| 19 | .table-sortable > thead > tr > th:after { |
| 20 | content: "\f0dc"; |
| 21 | color: #ddd; |
| 22 | } |
| 23 | .table-sortable > thead > tr > th.sort-false:after { |
| 24 | content: "\f0de"; |
| 25 | color: #767676; |
| 26 | } |
| 27 | .table-sortable > thead > tr > th.sort-true:after { |
| 28 | content: "\f0dd"; |
| 29 | color: #767676; |
| 30 | } |
| 31 | //.table-sortable > tbody > td > |
| 32 | .table-sortable { |
| 33 | tbody{ |
| 34 | td{ |
| 35 | .btn-primary{ |
| 36 | min-width: 100px; |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | } |