Commit a1ae6803 authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch '239795-boards-ee-scss-page-bundle' into 'master'

Convert ee boards.scss into page specific bundle

See merge request gitlab-org/gitlab!45613
parents 3bef636a 33e2039c
@import '../../../../../app/assets/stylesheets/page_bundles/boards';
.boards-add-list { .boards-add-list {
&.show { &.show {
.dropdown-menu-tabs { .dropdown-menu-tabs {
...@@ -8,15 +10,15 @@ ...@@ -8,15 +10,15 @@
} }
.dropdown-tabs-list { .dropdown-tabs-list {
box-shadow: 0 0 0 1px $border-color; box-shadow: 0 0 0 1px var(--border-color, $border-color);
} }
.dropdown-tab-item { .dropdown-tab-item {
border-left: 1px solid $border-color; border-left: 1px solid var(--border-color, $border-color);
a { a {
border-bottom: 2px solid transparent; border-bottom: 2px solid transparent;
background-color: $gray-light; background-color: var(--gray-50, $gray-50);
&:focus, &:focus,
&.active { &.active {
...@@ -25,7 +27,7 @@ ...@@ -25,7 +27,7 @@
&.active { &.active {
font-weight: bold; font-weight: bold;
border-bottom-color: $indigo-500; border-bottom-color: var(--indigo-500, $indigo-500);
} }
} }
} }
...@@ -34,7 +36,7 @@ ...@@ -34,7 +36,7 @@
margin: 0; margin: 0;
padding: $gl-padding; padding: $gl-padding;
border-bottom: 0; border-bottom: 0;
color: $gl-text-color-secondary; color: var(--gl-text-color-secondary, $gl-text-color-secondary);
} }
} }
...@@ -69,7 +71,7 @@ ...@@ -69,7 +71,7 @@
.board-type-assignee { .board-type-assignee {
.board-title-sub-text { .board-title-sub-text {
color: $gl-text-color-secondary; color: var(--gl-text-color-secondary, $gl-text-color-secondary);
font-weight: normal; font-weight: normal;
} }
} }
...@@ -97,7 +99,7 @@ ...@@ -97,7 +99,7 @@
// add a border between all items, but not at the start or end // add a border between all items, but not at the start or end
+ .block { + .block {
border-top: solid 1px $border-color; border-top: solid 1px var(--border-color, $border-color);
} }
} }
} }
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