debian-mirror-gitlab/app/assets/stylesheets/framework/header.scss

633 lines
10 KiB
SCSS
Raw Normal View History

2018-03-17 18:26:18 +05:30
.navbar-gitlab {
2018-05-09 12:01:36 +05:30
padding: 0 16px;
2020-04-22 19:07:51 +05:30
z-index: $header-zindex;
2018-05-09 12:01:36 +05:30
margin-bottom: 0;
min-height: $header-height;
border: 0;
border-bottom: 1px solid $border-color;
position: fixed;
top: 0;
left: 0;
right: 0;
border-radius: 0;
.logo-text {
line-height: initial;
svg {
width: 55px;
height: 14px;
margin: 0;
2020-04-22 19:07:51 +05:30
fill: $white;
2015-09-11 14:41:01 +05:30
}
2017-08-17 22:00:37 +05:30
}
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
.close-icon {
display: none;
}
.menu-expanded {
.more-icon {
2017-09-10 17:25:29 +05:30
display: none;
}
2018-03-17 18:26:18 +05:30
.close-icon {
display: block;
2019-02-15 15:39:39 +05:30
margin: auto;
2017-09-10 17:25:29 +05:30
}
}
2018-03-17 18:26:18 +05:30
.header-content {
2018-11-08 19:23:39 +05:30
width: 100%;
2018-03-17 18:26:18 +05:30
display: flex;
justify-content: space-between;
position: relative;
min-height: $header-height;
padding-left: 0;
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
.title-container {
display: flex;
align-items: stretch;
flex: 1 1 auto;
padding-top: 0;
overflow: visible;
2017-08-17 22:00:37 +05:30
}
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
.title {
padding-right: 0;
color: currentColor;
display: flex;
position: relative;
margin: 0;
font-size: 18px;
vertical-align: top;
white-space: nowrap;
img {
height: 28px;
+ .logo-text {
margin-left: 8px;
}
2016-06-02 11:05:42 +05:30
}
2015-09-11 14:41:01 +05:30
2018-03-17 18:26:18 +05:30
&.wrap {
white-space: normal;
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
&.initializing {
opacity: 0;
}
a {
display: flex;
align-items: center;
padding: 2px 8px;
margin: 5px 2px 5px -8px;
border-radius: $border-radius-default;
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
.project-item-select {
right: auto;
left: 0;
}
2017-08-17 22:00:37 +05:30
}
2018-03-17 18:26:18 +05:30
.dropdown.open {
> a {
2020-04-22 19:07:51 +05:30
border-bottom-color: $white;
2018-03-17 18:26:18 +05:30
}
}
2016-06-02 11:05:42 +05:30
2019-02-15 15:39:39 +05:30
.navbar-collapse > ul.nav > li:not(.d-none) {
margin: 0 2px;
}
2017-09-10 17:25:29 +05:30
&.menu-expanded {
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2017-09-10 17:25:29 +05:30
.title-container {
display: none;
}
.navbar-collapse {
2019-02-15 15:39:39 +05:30
display: flex;
2017-09-10 17:25:29 +05:30
}
}
}
2018-03-17 18:26:18 +05:30
}
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
.navbar-collapse {
flex: 0 0 auto;
border-top: 0;
padding: 0;
2016-11-03 12:29:30 +05:30
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
flex: 1 1 auto;
}
2016-08-24 12:49:21 +05:30
2018-03-17 18:26:18 +05:30
.nav {
2018-11-08 19:23:39 +05:30
flex-wrap: nowrap;
> li:not(.d-none) a {
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
margin-left: 0;
}
}
2017-08-17 22:00:37 +05:30
}
2018-03-17 18:26:18 +05:30
}
2018-03-17 18:26:18 +05:30
.container-fluid {
2018-05-09 12:01:36 +05:30
padding: 0;
.user-counter {
svg {
margin-right: 3px;
}
}
2018-11-08 19:23:39 +05:30
.navbar-toggler {
position: relative;
2018-05-09 12:01:36 +05:30
right: -10px;
border-radius: 0;
min-width: 45px;
padding: 0;
2018-11-08 19:23:39 +05:30
margin: $gl-padding-8 -7px $gl-padding-8 0;
2018-05-09 12:01:36 +05:30
font-size: 14px;
text-align: center;
color: currentColor;
&:hover,
&:focus,
&.active {
color: currentColor;
background-color: transparent;
}
}
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
.navbar-nav {
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
display: flex;
padding-right: 10px;
2018-11-08 19:23:39 +05:30
flex-direction: row;
2018-03-17 18:26:18 +05:30
}
li {
2018-11-08 19:23:39 +05:30
.badge.badge-pill {
2018-03-17 18:26:18 +05:30
box-shadow: none;
font-weight: $gl-font-weight-bold;
2016-11-03 12:29:30 +05:30
}
}
}
2018-03-17 18:26:18 +05:30
.nav > li {
&.header-user {
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
padding-left: 10px;
}
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
> a {
will-change: color;
2019-02-15 15:39:39 +05:30
margin: 4px 0;
2018-03-17 18:26:18 +05:30
padding: 6px 8px;
height: 32px;
2015-09-11 14:41:01 +05:30
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
padding: 0;
}
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
&.header-user-dropdown-toggle {
margin-left: 2px;
2018-03-17 18:26:18 +05:30
.header-user-avatar {
margin-right: 0;
}
}
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
&:hover,
&:focus {
text-decoration: none;
outline: 0;
opacity: 1;
2020-04-22 19:07:51 +05:30
color: $white;
2018-03-17 18:26:18 +05:30
&.header-user-dropdown-toggle .header-user-avatar {
2020-04-22 19:07:51 +05:30
border-color: $white;
2018-03-17 18:26:18 +05:30
}
2015-09-11 14:41:01 +05:30
}
}
2016-04-02 18:10:28 +05:30
2018-03-17 18:26:18 +05:30
.header-new-dropdown-toggle {
margin-right: 0;
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
.impersonated-user,
.impersonated-user:hover {
margin-right: 1px;
2020-04-22 19:07:51 +05:30
background-color: $white;
2018-03-17 18:26:18 +05:30
border-top-right-radius: 0;
border-bottom-right-radius: 0;
2016-04-02 18:10:28 +05:30
}
2018-03-17 18:26:18 +05:30
.impersonation-btn,
.impersonation-btn:hover {
2020-04-22 19:07:51 +05:30
background-color: $white;
2018-03-17 18:26:18 +05:30
border-top-left-radius: 0;
border-bottom-left-radius: 0;
i {
color: $orange-500;
font-size: 20px;
}
2016-04-02 18:10:28 +05:30
}
2015-09-11 14:41:01 +05:30
}
2018-03-17 18:26:18 +05:30
}
}
2015-09-11 14:41:01 +05:30
2018-03-17 18:26:18 +05:30
.navbar-sub-nav,
.navbar-nav {
> li {
2018-11-08 19:23:39 +05:30
> a,
> button {
2018-03-17 18:26:18 +05:30
display: flex;
align-items: center;
justify-content: center;
padding: 6px 8px;
margin: 4px 2px;
font-size: 12px;
color: currentColor;
border-radius: $border-radius-default;
height: 32px;
font-weight: $gl-font-weight-bold;
2018-11-08 19:23:39 +05:30
&:hover,
&:focus {
text-decoration: none;
outline: 0;
2020-04-22 19:07:51 +05:30
color: $white;
2018-11-08 19:23:39 +05:30
}
}
> button {
background: transparent;
border: 0;
2015-09-11 14:41:01 +05:30
}
2018-03-17 18:26:18 +05:30
&.line-separator {
margin: 8px;
}
}
2018-11-08 19:23:39 +05:30
.dropdown-menu {
position: absolute;
}
2018-03-17 18:26:18 +05:30
}
.navbar-sub-nav {
display: flex;
margin: 0 0 0 6px;
.dropdown-chevron {
position: relative;
top: -1px;
font-size: 10px;
2015-09-11 14:41:01 +05:30
}
2018-11-08 19:23:39 +05:30
.frequent-items-item-select-holder {
2016-06-02 11:05:42 +05:30
display: inline;
2015-09-11 14:41:01 +05:30
}
2015-11-26 14:37:03 +05:30
.impersonation i {
2017-08-17 22:00:37 +05:30
color: $red-500;
}
}
2019-07-07 11:18:12 +05:30
.caret-down,
.btn .caret-down {
top: 0;
2018-03-17 18:26:18 +05:30
height: 11px;
width: 11px;
margin-left: 4px;
fill: currentColor;
}
2018-11-08 19:23:39 +05:30
.header-user .dropdown-menu,
.header-new .dropdown-menu {
2018-03-17 18:26:18 +05:30
margin-top: $dropdown-vertical-offset;
}
.breadcrumbs {
display: flex;
2018-05-09 12:01:36 +05:30
min-height: $breadcrumb-min-height;
2018-03-17 18:26:18 +05:30
color: $gl-text-color;
}
.breadcrumbs-container {
display: flex;
width: 100%;
position: relative;
padding-top: $gl-padding / 2;
padding-bottom: $gl-padding / 2;
align-items: center;
border-bottom: 1px solid $border-color;
}
.breadcrumbs-links {
flex: 1;
min-width: 0;
align-self: center;
color: $gl-text-color-secondary;
.avatar-tile {
margin-right: 4px;
border: 1px solid $border-color;
border-radius: 50%;
vertical-align: sub;
}
.text-expander {
margin-left: 0;
margin-right: 2px;
> i {
position: relative;
top: 1px;
}
}
2019-02-15 15:39:39 +05:30
.dropdown-menu li a .identicon {
width: 17px;
height: 17px;
font-size: $gl-font-size-xs;
vertical-align: middle;
text-indent: 0;
line-height: $gl-font-size-xs + 2px;
display: inline-block;
}
2018-03-17 18:26:18 +05:30
}
.breadcrumbs-list {
display: flex;
margin-bottom: 0;
line-height: 16px;
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
flex-wrap: wrap;
}
> li {
display: flex;
align-items: center;
position: relative;
padding: 2px 0;
&:not(:last-child) {
padding-right: 20px;
&:not(.dropdown) {
overflow: hidden;
}
}
> a {
font-size: 12px;
color: currentColor;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 0 1 auto;
}
}
}
.breadcrumb-item-text {
text-decoration: inherit;
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
@include str-truncated(128px);
}
}
.breadcrumbs-list-angle {
position: absolute;
right: 7px;
top: 50%;
color: $gl-text-color-tertiary;
transform: translateY(-50%);
}
.breadcrumbs-extra {
display: flex;
flex: 0 0 auto;
margin-left: auto;
}
.breadcrumbs-sub-title {
margin: 0;
font-size: 12px;
font-weight: 600;
line-height: 16px;
a {
color: $gl-text-color;
}
}
.btn-sign-in {
2018-11-08 19:23:39 +05:30
background-color: $indigo-100;
color: $indigo-900;
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-bold;
2018-11-08 19:23:39 +05:30
line-height: 18px;
2019-02-15 15:39:39 +05:30
margin: 4px 0 4px 2px;
2018-03-17 18:26:18 +05:30
&:hover {
2020-04-22 19:07:51 +05:30
background-color: $white;
2018-03-17 18:26:18 +05:30
}
2017-09-10 17:25:29 +05:30
}
2019-07-31 22:56:46 +05:30
.title-container,
2017-08-17 22:00:37 +05:30
.navbar-nav {
2019-07-31 22:56:46 +05:30
.badge.badge-pill {
position: inherit;
font-weight: $gl-font-weight-normal;
margin-left: -6px;
font-size: 11px;
2020-04-22 19:07:51 +05:30
color: $white;
2019-07-31 22:56:46 +05:30
padding: 0 5px;
line-height: 12px;
border-radius: 7px;
box-shadow: 0 1px 0 rgba($gl-header-color, 0.2);
&.green-badge {
background-color: $green-500;
}
2017-08-17 22:00:37 +05:30
2019-07-31 22:56:46 +05:30
&.merge-requests-count {
background-color: $orange-600;
}
2017-08-17 22:00:37 +05:30
2019-07-31 22:56:46 +05:30
&.todos-count {
background-color: $blue-500;
2017-08-17 22:00:37 +05:30
}
2015-11-26 14:37:03 +05:30
}
2019-09-04 21:01:54 +05:30
.canary-badge {
.badge {
font-size: $gl-font-size-small;
line-height: $gl-line-height;
padding: 0 $grid-size;
}
&:hover {
text-decoration: none;
.badge {
text-decoration: none;
}
}
}
2015-09-11 14:41:01 +05:30
}
2018-11-08 19:23:39 +05:30
@include media-breakpoint-down(xs) {
2018-03-17 18:26:18 +05:30
.navbar-gitlab .container-fluid {
2015-09-11 14:41:01 +05:30
font-size: 18px;
.navbar-nav {
2017-08-17 22:00:37 +05:30
table-layout: fixed;
width: 100%;
2016-06-02 11:05:42 +05:30
margin: 0;
2017-08-17 22:00:37 +05:30
text-align: right;
2015-09-11 14:41:01 +05:30
}
.navbar-collapse {
2018-03-17 18:26:18 +05:30
margin-left: -8px;
margin-right: -10px;
2015-09-11 14:41:01 +05:30
2018-11-08 19:23:39 +05:30
.nav > li:not(.d-none) {
2019-02-15 15:39:39 +05:30
flex: 1;
2015-09-11 14:41:01 +05:30
}
}
}
2017-08-17 22:00:37 +05:30
.header-user-dropdown-toggle {
text-align: center;
}
.header-user-avatar {
float: none;
}
2015-09-11 14:41:01 +05:30
}
2016-08-24 12:49:21 +05:30
.header-user {
2018-12-05 23:21:45 +05:30
&.show .dropdown-menu {
2018-03-17 18:26:18 +05:30
margin-top: 4px;
2017-09-10 17:25:29 +05:30
color: $gl-text-color;
left: auto;
2019-12-21 20:55:43 +05:30
max-height: $dropdown-max-height-lg;
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
li.current-user {
2019-02-15 15:39:39 +05:30
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
2017-08-17 22:00:37 +05:30
.user-name {
display: block;
}
2018-12-05 23:21:45 +05:30
2018-12-13 13:39:08 +05:30
.user-status {
2018-12-05 23:21:45 +05:30
margin-right: 0;
2018-12-13 13:39:08 +05:30
max-width: 240px;
font-size: $gl-font-size-small;
2018-12-05 23:21:45 +05:30
gl-emoji {
2018-12-13 13:39:08 +05:30
font-size: $gl-font-size-small;
}
.user-status-emoji {
gl-emoji {
font-size: $gl-font-size;
}
2018-12-05 23:21:45 +05:30
}
}
2017-08-17 22:00:37 +05:30
}
2018-11-08 19:23:39 +05:30
svg {
vertical-align: text-top;
}
2020-01-01 13:55:28 +05:30
2020-05-24 23:13:21 +05:30
a.upgrade-plan-link gl-emoji,
2020-04-22 19:07:51 +05:30
a.ci-minutes-emoji gl-emoji,
2020-01-01 13:55:28 +05:30
a.trial-link gl-emoji {
font-size: $gl-font-size;
vertical-align: baseline;
}
2016-08-24 12:49:21 +05:30
}
}
.header-user-avatar {
float: left;
margin-right: 5px;
border-radius: 50%;
2018-11-20 20:47:30 +05:30
border: 1px solid $gray-normal;
2016-08-24 12:49:21 +05:30
}
2018-03-17 18:26:18 +05:30
2020-04-22 19:07:51 +05:30
.header-user-notification-dot {
background-color: $orange-500;
height: 10px;
width: 10px;
right: 8px;
top: -8px;
}
2018-03-17 18:26:18 +05:30
.with-performance-bar .navbar-gitlab {
top: $performance-bar-height;
}
.navbar-empty {
2019-07-07 11:18:12 +05:30
justify-content: center;
2018-03-17 18:26:18 +05:30
height: $header-height;
2020-04-22 19:07:51 +05:30
background: $white;
2018-03-17 18:26:18 +05:30
border-bottom: 1px solid $white-normal;
2019-07-07 11:18:12 +05:30
.tanuki-logo,
.brand-header-logo {
max-height: 100%;
2018-03-17 18:26:18 +05:30
}
}
2018-12-05 23:21:45 +05:30
.set-user-status-modal {
.modal-body {
min-height: unset;
}
.input-lg {
max-width: unset;
}
.no-emoji-placeholder,
.clear-user-status {
svg {
fill: $gl-text-color-secondary;
}
}
.emoji-menu-toggle-button {
@include emoji-menu-toggle-button;
2019-07-31 22:56:46 +05:30
padding: $gl-vert-padding $gl-btn-padding;
2018-12-05 23:21:45 +05:30
}
2019-03-02 22:35:43 +05:30
.input-group {
2019-07-31 22:56:46 +05:30
&,
.input-group-prepend,
.input-group-append {
height: $input-height;
}
2019-03-02 22:35:43 +05:30
}
2018-12-05 23:21:45 +05:30
}
2019-02-15 15:39:39 +05:30
.nav-links > li > a {
.badge.badge-pill {
@include media-breakpoint-down(xs) { display: none; }
}
@include media-breakpoint-down(xs) { margin-right: 3px; }
}