Commit 2a4c4f2f410229a9d68e143c270717de8df6a622

Authored by Leonardo Merlin
1 parent 40a0f7ab

Small improvments on result table (Issue #297)

Showing 1 changed file with 51 additions and 0 deletions   Show diff stats
sass/style.sass
... ... @@ -894,6 +894,57 @@ td
894 894 margin: 0 auto
895 895 .footable-row-detail-cell
896 896 background-color: #e0e0e0
  897 + .footable-row-detail-name
  898 + display: block
  899 + text-transform: uppercase
  900 + .footable-row-detail-value
  901 + display: block
  902 +
  903 + // fix height
  904 + .footable-row-detail-row:nth-child(1)
  905 + .footable-row-detail-value:before
  906 + height: 30px
  907 +
  908 + // check icon
  909 + .footable-row-detail-row:nth-child(2)
  910 + .footable-row-detail-name
  911 + display: none
  912 + .footable-row-detail-value:before
  913 + content: '\f00c'
  914 + font: normal normal normal 14px/1 'FontAwesome'
  915 + display: block
  916 + background-color: #32dbb5
  917 + border: 2px solid #ffffff
  918 + border-radius: 100%
  919 + color: #fff
  920 + font-size: 16px
  921 + height: 30px
  922 + padding: 5px 0
  923 + text-align: center
  924 + transition: all 200ms ease 0s
  925 + width: 30px
  926 + margin: 0 20px
  927 +
  928 + // check icon
  929 + .footable-row-detail-row:nth-child(3)
  930 + .footable-row-detail-name
  931 + display: none
  932 + .footable-row-detail-value:before
  933 + content: '\f00d'
  934 + font: normal normal normal 14px/1 'FontAwesome'
  935 + display: block
  936 + background-color: #DB4127
  937 + border: 2px solid #ffffff
  938 + border-radius: 100%
  939 + color: #fff
  940 + font-size: 16px
  941 + height: 30px
  942 + padding: 5px 0
  943 + text-align: center
  944 + transition: all 200ms ease 0s
  945 + width: 30px
  946 + margin: 0 20px
  947 +
897 948 // 6.15 - paginador
898 949 .paging
899 950 padding: $gutter * 0.25
... ...