_top.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. @import "globals";
  2. .breadcrumbs {
  3. white-space: nowrap;
  4. text-overflow: ellipsis;
  5. padding-right: 200px;
  6. overflow: hidden;
  7. }
  8. .top {
  9. padding: 20px;
  10. &-breadcrumbs {
  11. text-transform: uppercase;
  12. font-size: 12px;
  13. font-weight: bold;
  14. line-height: $top-height;
  15. color: $top-text-color;
  16. a, a:visited, a:hover {
  17. color: $top-link-color;
  18. text-decoration: none;
  19. word-spacing: normal;
  20. }
  21. a:hover {
  22. color: $top-hover-link-color;
  23. }
  24. &-separator {
  25. color: $top-separator-color;
  26. margin: 0 6px 0 6px;
  27. font-weight: bold !important;
  28. font-size: 15px;
  29. vertical-align: middle;
  30. }
  31. }
  32. &-right {
  33. float: right;
  34. position: relative;
  35. padding-right: 175px + 10px;
  36. }
  37. &-user-tools {
  38. @extend .clear-list;
  39. position: absolute;
  40. top: 0;
  41. right: 0;
  42. border: 1px solid $top-border-color;
  43. border-radius: 4px;
  44. font-size: 12px;
  45. text-align: left;
  46. width: 175px;
  47. z-index: 1;
  48. &-welcome-msg {
  49. font-weight: bold;
  50. line-height: $top-height - 2px;
  51. padding: 0 10px 0 14px;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. white-space: nowrap;
  55. &-arrow {
  56. float: right;
  57. color: $top-icon-color;
  58. font-size: 24px;
  59. line-height: $top-height - 2px !important;
  60. @include transition(color $transitions-duration);
  61. }
  62. }
  63. &.opened &-welcome-msg-arrow {
  64. color: $top-dropdown-icon-color;
  65. @include transform(rotate(180deg));
  66. }
  67. &-contrast-block {
  68. display: none;
  69. padding: 8px 14px;
  70. background: $top-dropdown-contrast-background-color;
  71. color: $top-dropdown-contrast-text-color;
  72. &-title {
  73. text-transform: uppercase;
  74. font-size: 10px;
  75. font-weight: bold;
  76. margin-bottom: 6px;
  77. }
  78. }
  79. &.opened &-contrast-block {
  80. display: block;
  81. }
  82. &-theme-link {
  83. display: inline-block;
  84. float: left;
  85. margin-right: 6px;
  86. margin-bottom: 6px;
  87. width: 14px;
  88. height: 14px;
  89. border: 1px solid $top-dropdown-contrast-background-color;
  90. border-radius: 3px;
  91. &:last-child {
  92. margin-right: 0;
  93. }
  94. &.selected {
  95. box-shadow: 0 0 1px 1px $top-dropdown-selected-color;
  96. }
  97. }
  98. &-user-link {
  99. display: none;
  100. padding: 8px 14px;
  101. a, a:visited, a:hover {
  102. color: $top-dropdown-link-color;
  103. text-decoration: none;
  104. }
  105. a:hover {
  106. color: $top-dropdown-hover-link-color;
  107. text-decoration: underline;
  108. }
  109. &-icon {
  110. color: $top-dropdown-icon-color;
  111. font-size: 15px;
  112. vertical-align: middle;
  113. }
  114. }
  115. &.opened {
  116. background-color: $top-dropdown-background-color;
  117. border-color: transparent;
  118. color: $top-dropdown-text-color;
  119. }
  120. &.opened &-welcome-msg {
  121. border-bottom: 1px solid $top-dropdown-border-color;
  122. }
  123. &.opened &-user-link {
  124. display: block;
  125. }
  126. }
  127. }