You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.0 KiB

  1. /*******************************
  2. Data Display Grid
  3. *******************************/
  4. .ui.data-grid {
  5. width: 100%;
  6. font-size: 12px;
  7. color: #555555;
  8. }
  9. .ui.data-grid.hide {
  10. display: none;
  11. }
  12. .ui.data-grid tbody tr {
  13. border-top: 1px solid #D9D9D9;
  14. }
  15. .ui.data-grid tbody tr:first-child {
  16. border-top: none;
  17. }
  18. .ui.data-grid tbody td {
  19. padding: 10px 14px;
  20. vertical-align: middle;
  21. }
  22. /* Special Row Types */
  23. .ui.data-grid tbody td.who {
  24. width: 240px;
  25. }
  26. .ui.data-grid tbody td.who i {
  27. float: left;
  28. width: 35px;
  29. height: 35px;
  30. background: #efefef url(../images/placeholder-tiny.png) no-repeat center center;
  31. }
  32. .ui.data-grid tbody td.who img {
  33. width: 35px;
  34. }
  35. .ui.data-grid tbody td.who hgroup {
  36. display: block;
  37. margin-left: 50px;
  38. }
  39. .ui.data-grid tbody td.who hgroup h2 {
  40. font-size: 14px;
  41. font-weight: bold;
  42. }
  43. .ui.data-grid tbody td.who hgroup h3 {
  44. font-size: 12px;
  45. }
  46. .ui.data-grid tbody td.action {
  47. width: 120px;
  48. text-align: right;
  49. }
  50. /* data-grid Hover Style */
  51. .ui.data-grid tbody tr.hover {
  52. background-color: #F4F4F4;
  53. }