Lungo.layout.nav.less 1.6 KB

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