Commit 191769a1 authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Merge branch '322680-refactor-stylesheet' into 'master'

Moved contextual-header styles out of the left column

See merge request gitlab-org/gitlab!62110
parents 7cab899b 2e84cdd4
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
@import 'framework/secondary_navigation_elements'; @import 'framework/secondary_navigation_elements';
@import 'framework/selects'; @import 'framework/selects';
@import 'framework/sidebar'; @import 'framework/sidebar';
@import 'framework/contextual_sidebar_header';
@import 'framework/contextual_sidebar'; @import 'framework/contextual_sidebar';
@import 'framework/tables'; @import 'framework/tables';
@import 'framework/notes'; @import 'framework/notes';
......
...@@ -20,48 +20,6 @@ ...@@ -20,48 +20,6 @@
} }
} }
.context-header {
position: relative;
margin-right: 2px;
width: $contextual-sidebar-width;
> a,
> button {
transition: padding $sidebar-transition-duration;
font-weight: $gl-font-weight-bold;
display: flex;
width: 100%;
align-items: center;
padding: 10px 16px 10px 10px;
color: $gl-text-color;
background-color: transparent;
border: 0;
text-align: left;
&:hover,
&:focus {
background-color: $link-hover-background;
color: $gl-text-color;
outline: 0;
}
}
.avatar-container {
flex: 0 0 40px;
background-color: $white;
}
.sidebar-context-title {
overflow: hidden;
text-overflow: ellipsis;
&.text-secondary {
font-weight: normal;
font-size: 0.8em;
}
}
}
.settings-avatar { .settings-avatar {
background-color: $white; background-color: $white;
...@@ -72,14 +30,8 @@ ...@@ -72,14 +30,8 @@
} }
@mixin collapse-contextual-sidebar-content { @mixin collapse-contextual-sidebar-content {
.context-header {
height: 60px;
width: $contextual-sidebar-collapsed-width;
a { @include context-header-collapsed;
padding: 10px 4px;
}
}
.sidebar-top-level-items > li { .sidebar-top-level-items > li {
.sidebar-sub-level-items { .sidebar-sub-level-items {
...@@ -135,7 +87,6 @@ ...@@ -135,7 +87,6 @@
} }
.badge.badge-pill:not(.fly-out-badge), .badge.badge-pill:not(.fly-out-badge),
.sidebar-context-title,
.nav-item-name { .nav-item-name {
@include gl-sr-only; @include gl-sr-only;
} }
......
.context-header {
position: relative;
margin-right: 2px;
width: $contextual-sidebar-width;
> a,
> button {
transition: padding $sidebar-transition-duration;
font-weight: $gl-font-weight-bold;
display: flex;
width: 100%;
align-items: center;
padding: 10px 16px 10px 10px;
color: $gl-text-color;
background-color: transparent;
border: 0;
text-align: left;
&:hover,
&:focus {
background-color: $link-hover-background;
color: $gl-text-color;
outline: 0;
}
}
.avatar-container {
flex: 0 0 40px;
background-color: $white;
}
.sidebar-context-title {
overflow: hidden;
text-overflow: ellipsis;
&.text-secondary {
font-weight: normal;
font-size: 0.8em;
}
}
}
@mixin context-header-collapsed {
.context-header {
height: 60px;
width: $contextual-sidebar-collapsed-width;
a {
padding: 10px 4px;
}
}
.sidebar-context-title {
@include gl-sr-only;
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment