mirror of https://github.com/grafana/grafana
parent
26e3e7146e
commit
aca69df755
@ -0,0 +1,64 @@ |
||||
.ReactVirtualized__Table { |
||||
} |
||||
|
||||
.ReactVirtualized__Table__Grid { |
||||
} |
||||
|
||||
.ReactVirtualized__Table__headerRow { |
||||
font-weight: 700; |
||||
display: flex; |
||||
flex-direction: row; |
||||
align-items: left; |
||||
|
||||
background: $list-item-bg; |
||||
border-top: 2px solid $body-bg; |
||||
border-bottom: 2px solid $body-bg; |
||||
|
||||
color: $blue; |
||||
} |
||||
.ReactVirtualized__Table__row { |
||||
display: flex; |
||||
flex-direction: row; |
||||
align-items: center; |
||||
|
||||
border-bottom: 2px solid $body-bg; |
||||
} |
||||
|
||||
.ReactVirtualized__Table__headerTruncatedText { |
||||
display: inline-block; |
||||
max-width: 100%; |
||||
white-space: nowrap; |
||||
text-overflow: ellipsis; |
||||
overflow: hidden; |
||||
} |
||||
|
||||
.ReactVirtualized__Table__headerColumn, |
||||
.ReactVirtualized__Table__rowColumn { |
||||
margin-right: 10px; |
||||
min-width: 0px; |
||||
} |
||||
.ReactVirtualized__Table__rowColumn { |
||||
text-overflow: ellipsis; |
||||
white-space: nowrap; |
||||
|
||||
border-right: 2px solid $body-bg; |
||||
} |
||||
|
||||
.ReactVirtualized__Table__headerColumn:first-of-type, |
||||
.ReactVirtualized__Table__rowColumn:first-of-type { |
||||
margin-left: 10px; |
||||
} |
||||
.ReactVirtualized__Table__sortableHeaderColumn { |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.ReactVirtualized__Table__sortableHeaderIconContainer { |
||||
display: flex; |
||||
align-items: center; |
||||
} |
||||
.ReactVirtualized__Table__sortableHeaderIcon { |
||||
flex: 0 0 24px; |
||||
height: 1em; |
||||
width: 1em; |
||||
fill: currentColor; |
||||
} |
Loading…
Reference in new issue