Unverified Commit 8e498147 authored by Marcos Iglesias's avatar Marcos Iglesias Committed by GitHub

fix: Fixes dashboard query list (#653)

Signed-off-by: 's avatarMarcos Iglesias Valle <golodhros@gmail.com>
parent 08aaa099
...@@ -366,11 +366,9 @@ body { ...@@ -366,11 +366,9 @@ body {
} }
.column-name { .column-name {
@extend %text-title-w3;
color: $column-name-color; color: $column-name-color;
font-family: $font-family-body;
font-size: 14px;
font-weight: $font-weight-body-bold;
line-height: 18px;
} }
.resource-type { .resource-type {
......
...@@ -14,6 +14,7 @@ $code-block-button-hover-opacity: 1; ...@@ -14,6 +14,7 @@ $code-block-button-hover-opacity: 1;
$code-block-max-height: 400px; $code-block-max-height: 400px;
$shimmer-loader-height: 200px; $shimmer-loader-height: 200px;
$shimmer-loader-lines: 1, 2, 3, 4, 5, 6; $shimmer-loader-lines: 1, 2, 3, 4, 5, 6;
$query-list-hover-z-index: 999;
@mixin code-block-action-button-style { @mixin code-block-action-button-style {
max-width: $code-block-button-size; max-width: $code-block-button-size;
...@@ -42,13 +43,19 @@ $shimmer-loader-lines: 1, 2, 3, 4, 5, 6; ...@@ -42,13 +43,19 @@ $shimmer-loader-lines: 1, 2, 3, 4, 5, 6;
background: $btn-default-bg; background: $btn-default-bg;
border: 0; border: 0;
width: 100%; width: 100%;
padding-left: $spacer-3; padding: $spacer-3;
padding-right: $spacer-3;
&:hover, &:hover,
&:focus { &:focus {
text-decoration: none; text-decoration: none;
outline: 0; outline: 0;
box-shadow: $elevation-level2;
position: relative;
z-index: $query-list-hover-z-index;
&[aria-expanded='true'] {
box-shadow: none;
}
} }
} }
......
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