Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
14b2dad9
Unverified
Commit
14b2dad9
authored
Dec 20, 2019
by
Ivana Huckova
Committed by
GitHub
Dec 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Livetailing: set table withd to 100% (#21213)
parent
6cad0580
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
public/app/features/explore/LiveLogs.tsx
+4
-1
public/app/features/explore/utils/LogsCrossFadeTransition.tsx
+2
-2
No files found.
public/app/features/explore/LiveLogs.tsx
View file @
14b2dad9
...
...
@@ -47,6 +47,9 @@ const getStyles = (theme: GrafanaTheme) => ({
button
:
css
`
margin-right:
${
theme
.
spacing
.
sm
}
;
`
,
fullWidth
:
css
`
width: 100%;
`
,
});
export
interface
Props
extends
Themeable
{
...
...
@@ -139,7 +142,7 @@ class LiveLogs extends PureComponent<Props, State> {
return
(
<
div
>
<
table
>
<
table
className=
{
styles
.
fullWidth
}
>
<
tbody
onScroll=
{
isPaused
?
undefined
:
this
.
onScroll
}
className=
{
cx
([
'logs-rows'
,
styles
.
logsRowsLive
])
}
...
...
public/app/features/explore/utils/LogsCrossFadeTransition.tsx
View file @
14b2dad9
...
...
@@ -16,7 +16,7 @@ const getStyles = memoizeOne(() => {
position: absolute;
opacity: 0;
height: auto;
width:
auto
;
width:
100%
;
`
,
logsEnterActive
:
css
`
label: logsEnterActive;
...
...
@@ -28,7 +28,7 @@ const getStyles = memoizeOne(() => {
position: absolute;
opacity: 1;
height: auto;
width:
auto
;
width:
100%
;
`
,
logsExitActive
:
css
`
label: logsExitActive;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment