mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-28 13:55:47 +00:00
52 lines
1.0 KiB
Sass
52 lines
1.0 KiB
Sass
@import '../../../variables.module'
|
|
|
|
.statusBar
|
|
position: absolute
|
|
transform: translate(-50%, -3px)
|
|
left: 50%
|
|
z-index: 9999
|
|
min-width: 200px
|
|
background: $blue-color
|
|
color: rgba(255,255,255,0.75)
|
|
border-bottom-left-radius: 8px
|
|
border-bottom-right-radius: 8px
|
|
top: 0
|
|
padding: 10px
|
|
font-size: 14px
|
|
transition: max-height 2s ease-out
|
|
width: auto
|
|
max-height: 32px
|
|
overflow: hidden
|
|
|
|
.podsCount
|
|
display: flex
|
|
justify-content: center
|
|
font-weight: 600
|
|
|
|
img
|
|
margin-right: 10px
|
|
height: 22px
|
|
|
|
table
|
|
width: 100%
|
|
margin-top: 20px
|
|
|
|
tbody
|
|
max-height: 70vh
|
|
overflow-y: auto
|
|
display: block
|
|
tr
|
|
display: table
|
|
table-layout: fixed
|
|
width: 100%
|
|
th
|
|
text-align: left
|
|
padding-right: 5%
|
|
td
|
|
text-align: left
|
|
padding-right: 5%
|
|
|
|
.expandedStatusBar
|
|
max-height: 100vh
|
|
padding-bottom: 15px
|