footer.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. .ui-grid-footer-info {
  2. padding: 5px 10px;
  3. }
  4. .ui-grid-footer-panel-background {
  5. background-color: @headerBackgroundColor;
  6. }
  7. @topPanelRadius: @gridBorderRadius - @gridBorderWidth;
  8. .ui-grid-footer-panel {
  9. position: relative;
  10. // z-index: 1;
  11. // background-color: @darkGray; // #EAEAEA
  12. border-bottom: 1px solid @borderColor; // #D4D4D4
  13. border-top: 1px solid @borderColor;
  14. overflow: hidden; // Disable so menus show up
  15. font-weight: bold;
  16. // .gradient(@headerBackgroundColor, @headerGradientStart, @headerGradientStop);
  17. .ui-grid-footer-panel-background;
  18. .border-radius(@topPanelRadius, 0, 0, @topPanelRadius);
  19. }
  20. .ui-grid-grid-footer {
  21. float: left;
  22. width: 100%;
  23. }
  24. .ui-grid-footer-viewport,
  25. .ui-grid-footer-canvas {
  26. display: flex;
  27. flex: 1 1 auto;
  28. height: 100%;
  29. }
  30. .ui-grid-footer-viewport {
  31. overflow: hidden; // Disable so menus show up
  32. }
  33. .ui-grid-footer-canvas {
  34. position: relative;
  35. // Clearfix for floating header cells
  36. &:before, &:after {
  37. content: "";
  38. display: table;
  39. line-height: 0;
  40. }
  41. &:after {
  42. clear:both;
  43. }
  44. // .border-radius(@gridBorderRadius, 0, 0, @gridBorderRadius);
  45. }
  46. .ui-grid-footer-cell-wrapper {
  47. position: relative;
  48. display: table;
  49. box-sizing: border-box;
  50. height: 100%;
  51. }
  52. .ui-grid-footer-cell-row {
  53. display: table-row;
  54. }
  55. .ui-grid-footer-cell {
  56. overflow: hidden;
  57. // position: relative; // NOTE: removing so border is visible
  58. background-color: inherit;
  59. border-right: @gridBorderWidth solid;
  60. border-color: @borderColor;
  61. box-sizing: border-box;
  62. display: table-cell;
  63. &:last-child {
  64. border-right: 0;
  65. }
  66. }