123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- @import "globals";
- .breadcrumbs {
- white-space: nowrap;
- text-overflow: ellipsis;
- padding-right: 200px;
- overflow: hidden;
- }
- .top {
- padding: 20px;
- &-breadcrumbs {
- text-transform: uppercase;
- font-size: 12px;
- font-weight: bold;
- line-height: $top-height;
- color: $top-text-color;
- a, a:visited, a:hover {
- color: $top-link-color;
- text-decoration: none;
- word-spacing: normal;
- }
- a:hover {
- color: $top-hover-link-color;
- }
- &-separator {
- color: $top-separator-color;
- margin: 0 6px 0 6px;
- font-weight: bold !important;
- font-size: 15px;
- vertical-align: middle;
- }
- }
- &-right {
- float: right;
- position: relative;
- padding-right: 175px + 10px;
- }
- &-user-tools {
- @extend .clear-list;
- position: absolute;
- top: 0;
- right: 0;
- border: 1px solid $top-border-color;
- border-radius: 4px;
- font-size: 12px;
- text-align: left;
- width: 175px;
- z-index: 1;
- &-welcome-msg {
- font-weight: bold;
- line-height: $top-height - 2px;
- padding: 0 10px 0 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- &-arrow {
- float: right;
- color: $top-icon-color;
- font-size: 24px;
- line-height: $top-height - 2px !important;
- @include transition(color $transitions-duration);
- }
- }
- &.opened &-welcome-msg-arrow {
- color: $top-dropdown-icon-color;
- @include transform(rotate(180deg));
- }
- &-contrast-block {
- display: none;
- padding: 8px 14px;
- background: $top-dropdown-contrast-background-color;
- color: $top-dropdown-contrast-text-color;
- &-title {
- text-transform: uppercase;
- font-size: 10px;
- font-weight: bold;
- margin-bottom: 6px;
- }
- }
- &.opened &-contrast-block {
- display: block;
- }
- &-theme-link {
- display: inline-block;
- float: left;
- margin-right: 6px;
- margin-bottom: 6px;
- width: 14px;
- height: 14px;
- border: 1px solid $top-dropdown-contrast-background-color;
- border-radius: 3px;
- &:last-child {
- margin-right: 0;
- }
- &.selected {
- box-shadow: 0 0 1px 1px $top-dropdown-selected-color;
- }
- }
- &-user-link {
- display: none;
- padding: 8px 14px;
- a, a:visited, a:hover {
- color: $top-dropdown-link-color;
- text-decoration: none;
- }
- a:hover {
- color: $top-dropdown-hover-link-color;
- text-decoration: underline;
- }
- &-icon {
- color: $top-dropdown-icon-color;
- font-size: 15px;
- vertical-align: middle;
- }
- }
- &.opened {
- background-color: $top-dropdown-background-color;
- border-color: transparent;
- color: $top-dropdown-text-color;
- }
- &.opened &-welcome-msg {
- border-bottom: 1px solid $top-dropdown-border-color;
- }
- &.opened &-user-link {
- display: block;
- }
- }
- }
|