Lungo.layout.nav.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace LUNGO.Layout
  5. * @class Nav
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "mixins.less";
  10. @defaultTrasition : @easeOutSine;
  11. @header_footer_height: 40px;
  12. @header_extended_height: 74px;
  13. @footer_toolbar_height: 48px;
  14. /* @group <nav> */
  15. nav {
  16. height: inherit;
  17. text-align: center;
  18. & a {
  19. padding: 0 6px;
  20. z-index: 1000;
  21. float: left;
  22. //line-height: 39px;
  23. & .icon {
  24. position: relative;
  25. top: 3px;
  26. font-size: 24px;
  27. display: inline-block;
  28. }
  29. & img {
  30. width: 16px;
  31. height: 16px;
  32. top: -1px !important;
  33. }
  34. & abbr {
  35. position: relative;
  36. margin-left: 2px;
  37. display: none;
  38. }
  39. &.current abbr, &.active abbr { display: inline; }
  40. }
  41. & .bubble {
  42. position: relative;
  43. top: -8px;
  44. left: -8px;
  45. margin-right: -20px;
  46. }
  47. }
  48. .toolbar {
  49. height: @footer_toolbar_height;
  50. display: block;
  51. & nav { display: block; }
  52. & a { padding: 0; }
  53. & .icon {
  54. display: block;
  55. top: 0px;
  56. font-size: 32px;
  57. line-height: @footer_toolbar_height;
  58. }
  59. &.with-labels .icon {
  60. line-height: 36px;
  61. padding-bottom: 12px;
  62. }
  63. & .bubble {
  64. top: -52px;
  65. left: 4px;
  66. }
  67. & abbr {
  68. position: absolute;
  69. top: 32px;
  70. width: inherit;
  71. height: 14px;
  72. margin-left: 0px;
  73. display: block !important;
  74. font-size: 11px;
  75. line-height: 14px;
  76. overflow: hidden;
  77. white-space: nowrap;
  78. text-overflow: ellipsis;
  79. }
  80. }
  81. .groupbar {
  82. position: absolute;
  83. top: 39px;
  84. height: 28px;
  85. width: 100%;
  86. padding: 4px 0 2px;
  87. display: block;
  88. line-height: 28px;
  89. z-index: 2;
  90. & a {
  91. padding: 0px;
  92. }
  93. }
  94. /* @end */