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 {
}
.column-name {
@extend %text-title-w3;
color: $column-name-color;
font-family: $font-family-body;
font-size: 14px;
font-weight: $font-weight-body-bold;
line-height: 18px;
}
.resource-type {
......
......@@ -14,6 +14,7 @@ $code-block-button-hover-opacity: 1;
$code-block-max-height: 400px;
$shimmer-loader-height: 200px;
$shimmer-loader-lines: 1, 2, 3, 4, 5, 6;
$query-list-hover-z-index: 999;
@mixin code-block-action-button-style {
max-width: $code-block-button-size;
......@@ -42,13 +43,19 @@ $shimmer-loader-lines: 1, 2, 3, 4, 5, 6;
background: $btn-default-bg;
border: 0;
width: 100%;
padding-left: $spacer-3;
padding-right: $spacer-3;
padding: $spacer-3;
&:hover,
&:focus {
text-decoration: none;
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