Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(notebooks): make panels focusable #18233

Merged
merged 9 commits into from
May 27, 2020
Prev Previous commit
Next Next commit
chore: prettier
  • Loading branch information
alexpaxton committed May 26, 2020
commit eb9e3ed8f15251cfe3a9e3aba755c70ea962e3b3
17 changes: 9 additions & 8 deletions ui/src/notebooks/style.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "@influxdata/clockface/dist/variables.scss";
@import '@influxdata/clockface/dist/variables.scss';

$notebook-header-height: 46px;
$notebook-size-toggle: 16px;
Expand Down Expand Up @@ -123,7 +123,8 @@ $notebook-divider-height: ($cf-marg-a * 2) + $cf-border;
left: 50%;
transform: translate(-50%, -50%);
width: $notebook-size-toggle;
transition: height 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s ease;
transition: height 0.25s cubic-bezier(0.25, 1, 0.5, 1),
border-color 0.25s ease;
border: $cf-border solid $g8-storm;
border-radius: $cf-radius / 2;
}
Expand Down Expand Up @@ -221,11 +222,11 @@ $notebook-divider-height: ($cf-marg-a * 2) + $cf-border;
}

.notebook-header--buttons {
display: inline-flex;
flex: 0 0 auto;
flex-wrap: wrap;
display: inline-flex;
flex: 0 0 auto;
flex-wrap: wrap;

> * {
margin-left: 4px;
}
> * {
margin-left: 4px;
}
}