btcpayserver/BTCPayServer/wwwroot/main/css/site.css

121 lines
2 KiB
CSS
Raw Normal View History

2018-04-17 15:20:27 -05:00
html {
position: relative;
min-height: 100%;
}
2018-04-17 15:33:29 -05:00
.siteFooter {
position: absolute;
left: 0;
bottom: 0;
height: 18px;
line-height: 18px;
vertical-align: middle;
2018-04-17 15:33:29 -05:00
font-size: 8px;
width: 100%;
overflow: hidden;
}
2019-01-14 22:43:29 +01:00
.only-for-js, .input-group-clear {
2019-01-14 22:43:29 +01:00
display: none;
}
2019-05-08 20:37:37 +02:00
#content {
background: #fff;
border: 1px solid #DFE3E8;
padding: 16px;
border-radius: 4px;
}
.table {
background: #fff;
border: 1px solid #DFE3E8;
border-radius: 4px;
border-collapse: separate !important;
border-spacing: 0px !important;
margin-top: 16px;
margin-bottom: 16px;
}
.table thead > tr {
height: 36px;
}
.table thead th {
border-bottom: none;
border-top: none;
vertical-align: middle;
padding: 4px 12px 4px 12px;
}
.table tbody tr:hover {
background-color: #f8fafc;
}
.table tr {
height: 36px;
}
.table th {
display: table-cell;
padding: 4px 12px 4px 12px;
vertical-align: middle;
}
.table td {
display: table-cell;
padding: 4px 12px 4px 12px;
text-align: left;
color: #12161B;
font-size: 0.8125rem;
font-weight: 400;
vertical-align: middle;
}
.removetopborder tr:first-child td {
border-top: none;
}
.removetopborder tr:first-child th {
border-top: none;
}
a.nav-link {
color: #66788A;
}
.nav-pills .nav-link.active {
color: var(--gray-dark);
font-weight: 500;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: #66788A;
background-color: #d9f7ef;
border-left: 5px solid var(--primary);
font-weight: 500;
}
2019-05-11 17:12:39 -05:00
.display-when-ledger-connected {
2019-05-08 20:37:37 +02:00
display: none;
2019-05-11 17:12:39 -05:00
}
2019-05-09 12:53:13 -05:00
.wraptextAuto {
max-width: 300px;
text-overflow: ellipsis;
overflow: hidden;
display: block;
white-space: nowrap;
}
@media (min-width: 768px) {
.wraptextAuto {
max-width: 600px;
}
2019-05-08 20:37:37 +02:00
}
.invoice-details a{
/* Prevent layout from breaking on hyperlinks with very long URLs as the visible text */
word-break: break-word;
}