mempool/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.scss

126 lines
1.7 KiB
SCSS
Raw Normal View History

2023-07-20 16:26:42 +09:00
.spinner-border {
height: 25px;
width: 25px;
margin-top: 13px;
}
.container-xl {
max-width: 1400px;
}
.container-xl.widget {
padding-left: 0px;
padding-bottom: 0px;
}
.container-xl.legacy {
max-width: 1140px;
}
.container {
max-width: 100%;
}
tr, td, th {
border: 0px;
padding-top: 0.65rem !important;
2023-07-21 14:13:18 +09:00
padding-bottom: 0.8rem !important;
2023-07-20 16:26:42 +09:00
.difference {
margin-left: 0.5em;
&.positive {
color: rgb(66, 183, 71);
}
&.negative {
color: rgb(183, 66, 66);
}
}
}
.clear-link {
color: white;
}
.disabled {
pointer-events: none;
opacity: 0.5;
}
.progress {
background-color: #2d3348;
}
.txid {
2023-12-08 13:03:08 +00:00
width: 25%;
2023-07-20 16:26:42 +09:00
@media (max-width: 1100px) {
padding-right: 10px;
}
@media (max-width: 875px) {
display: none;
}
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 30%;
}
.fee {
2023-12-08 13:03:08 +00:00
width: 35%;
}
.block {
width: 20%;
}
.bid {
width: 30%;
2023-07-20 16:26:42 +09:00
}
2023-12-08 13:03:08 +00:00
.time {
2023-07-20 16:26:42 +09:00
width: 25%;
}
.status {
width: 20%
}
/* Tooltip text */
.tooltip-custom {
position: relative;
}
.tooltip-custom .tooltiptext {
visibility: hidden;
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
position: absolute;
z-index: 1;
top: -40px;
left: 0;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-custom:hover .tooltiptext {
visibility: visible;
}
.scriptmessage {
overflow: hidden;
display: inline-block;
text-overflow: ellipsis;
vertical-align: middle;
max-width: 50vw;
text-align: left;
}
2023-12-07 11:12:20 +00:00
.no-data {
color: rgba(255, 255, 255, 0.4);
display: flex;
height: 280px;
width: 100%;
flex-direction: row;
align-items: center;
justify-content: center;
}