mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-11 09:29:28 +00:00
46 lines
1.0 KiB
Sass
46 lines
1.0 KiB
Sass
.Queryable-Container
|
|
display: flex
|
|
align-items: center
|
|
|
|
&.displayIconOnMouseOver
|
|
.Queryable-Icon
|
|
opacity: 0
|
|
width: 0px
|
|
pointer-events: none
|
|
&:hover
|
|
.Queryable-Icon
|
|
opacity: 1
|
|
pointer-events: all
|
|
|
|
|
|
.Queryable-Icon
|
|
height: 22px
|
|
width: 22px
|
|
cursor: pointer
|
|
margin-right: 3px
|
|
color: #27AE60
|
|
|
|
&:hover
|
|
background-color: rgba(255, 255, 255, 0.06)
|
|
border-radius: 4px
|
|
color: #1E884B
|
|
|
|
&.Queryable-ContainerEllipsis
|
|
.Queryable-Text
|
|
text-align: left
|
|
text-overflow: ellipsis
|
|
overflow: hidden
|
|
white-space: nowrap
|
|
width: calc(100% - 30px)
|
|
|
|
.Queryable-CopyNotifier
|
|
background-color: #1E884B
|
|
font-weight: normal
|
|
padding: 2px 5px
|
|
border-radius: 4px
|
|
position: absolute
|
|
transform: translate(0, -80%)
|
|
color: white
|
|
z-index: 1000
|
|
|