2022-06-28 07:05:02 +02:00
|
|
|
/* Variables */
|
|
|
|
:root {
|
|
|
|
--chart-main-rgb: 68, 164, 49;
|
|
|
|
--chart-series-a-rgb: var(--chart-main-rgb);
|
|
|
|
--chart-series-b-rgb: 245, 0, 0;
|
|
|
|
--chart-series-c-rgb: 0, 109, 242;
|
|
|
|
--chart-series-d-rgb: 255, 188, 4;
|
|
|
|
--chart-series-e-rgb: 160, 98, 75;
|
|
|
|
}
|
|
|
|
|
2021-06-30 09:57:38 +02:00
|
|
|
/* General and site-wide Bootstrap modifications */
|
2021-09-03 09:16:36 +02:00
|
|
|
p {
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-12-11 04:32:23 +01:00
|
|
|
hr.primary {
|
2021-09-03 09:16:36 +02:00
|
|
|
width: 50px;
|
|
|
|
height: 3px;
|
|
|
|
background: var(--btcpay-primary);
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-gutter > [class*='col-'] {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2020-03-19 09:44:47 +01:00
|
|
|
.hide-when-js,
|
2019-11-01 17:29:28 +01:00
|
|
|
.input-group-clear {
|
2019-01-14 22:43:29 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2019-05-08 20:37:37 +02:00
|
|
|
|
2022-06-28 05:03:13 +02:00
|
|
|
.input-group-clear .icon {
|
|
|
|
--btn-icon-size: .65rem;
|
|
|
|
}
|
|
|
|
|
2021-11-15 15:41:25 +01:00
|
|
|
.note-editable {
|
|
|
|
color: var(--btcpay-form-text);
|
|
|
|
background-color: var(--btcpay-form-bg);
|
|
|
|
}
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
.wraptextAuto {
|
|
|
|
max-width: 300px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
2019-05-30 13:59:01 -05:00
|
|
|
}
|
|
|
|
|
2021-06-17 12:43:47 +02:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.text-md-nowrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.wraptextAuto {
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
2019-05-30 13:59:01 -05:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
.smMaxWidth {
|
|
|
|
max-width: 150px;
|
2019-05-30 13:59:01 -05:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:29:28 +01:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.smMaxWidth {
|
|
|
|
max-width: 300px;
|
2019-05-30 13:59:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-27 03:56:46 +01:00
|
|
|
@media (min-width: 1400px) {
|
|
|
|
.col-xxl-constrain {
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-17 10:07:41 +01:00
|
|
|
a.unobtrusive-link {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: inherit;
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:55:10 +02:00
|
|
|
/* Badges */
|
|
|
|
.badge-new {
|
|
|
|
background: #d4edda;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-expired {
|
|
|
|
background: #eee;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-invalid {
|
|
|
|
background: #c94a47;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-processing {
|
|
|
|
background: #f1c332;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-settled {
|
|
|
|
background: #329f80;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2021-06-06 13:44:54 +02:00
|
|
|
/* Info icons in main headline */
|
|
|
|
h2 small .fa-question-circle-o {
|
|
|
|
position: relative;
|
2021-09-02 10:25:16 +02:00
|
|
|
top: -.1rem;
|
|
|
|
font-size: var(--btcpay-font-size-l);
|
2021-06-06 13:44:54 +02:00
|
|
|
}
|
|
|
|
|
2022-06-12 18:47:26 -07:00
|
|
|
/* Invoices */
|
|
|
|
.invoice-payments {
|
|
|
|
padding: var(--btcpay-space-m) var(--btcpay-space-l);
|
|
|
|
}
|
|
|
|
.invoice-details-row {
|
|
|
|
background: var(--btcpay-bg-tile);
|
|
|
|
}
|
|
|
|
.badge .dropdown-toggle {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
|
|
#MassAction {
|
|
|
|
margin-top: -4rem;
|
|
|
|
}
|
|
|
|
}
|
2019-11-01 17:29:28 +01:00
|
|
|
/* Prevent layout from breaking on hyperlinks with very long URLs as the visible text */
|
|
|
|
.invoice-details a {
|
2019-08-04 11:29:03 +02:00
|
|
|
word-break: break-word;
|
2019-09-21 16:24:01 +02:00
|
|
|
}
|
2019-11-15 11:23:52 +01:00
|
|
|
|
|
|
|
#qrCode {
|
|
|
|
padding: 10px;
|
|
|
|
background: white;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-11-18 20:21:36 -08:00
|
|
|
|
2019-11-11 14:22:04 +09:00
|
|
|
.feedback-icon-loading {
|
|
|
|
color: orange;
|
|
|
|
}
|
|
|
|
.feedback-icon-success {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
.feedback-icon-failed {
|
|
|
|
color: red;
|
2019-11-18 20:21:36 -08:00
|
|
|
}
|
2021-09-03 09:16:36 +02:00
|
|
|
|
2019-11-21 16:38:43 +09:00
|
|
|
.pin-button {
|
|
|
|
height: 135px;
|
|
|
|
margin-top: 20px;
|
|
|
|
background-color: white;
|
|
|
|
border: solid lightgray 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-04-05 13:09:48 +02:00
|
|
|
.pin-button:hover {
|
|
|
|
background-color: lightgray;
|
|
|
|
}
|
|
|
|
|
2020-10-13 09:58:46 +02:00
|
|
|
[v-cloak] { display:none }
|
|
|
|
[v-cloak-loading] > * { display:none }
|
|
|
|
[v-cloak-loading]::before { content: "loading…" }
|
2020-04-05 13:09:48 +02:00
|
|
|
|
2020-11-06 11:14:00 +01:00
|
|
|
.list-group-item a:not(.btn) {
|
2020-04-07 18:12:15 +02:00
|
|
|
color: inherit;
|
|
|
|
}
|
2020-05-03 17:42:01 -06:00
|
|
|
|
2021-09-07 04:55:53 +02:00
|
|
|
.list-group-item .icon-caret-right {
|
|
|
|
flex: 0 0 24px;
|
|
|
|
height: 24px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
2020-07-24 15:54:01 +02:00
|
|
|
.content-wrapper {
|
|
|
|
padding: 50px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
.content-wrapper {
|
|
|
|
padding: 75px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-13 19:09:21 +02:00
|
|
|
[class*="field-validation"]:not(:empty) {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: .5rem;
|
|
|
|
}
|
2020-10-13 09:58:46 +02:00
|
|
|
|
|
|
|
/* Print */
|
|
|
|
@media print {
|
2020-10-23 10:37:28 +02:00
|
|
|
.table td,
|
|
|
|
.table th {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2021-08-04 09:13:33 +02:00
|
|
|
.bg-tile.h-100.p-3 {
|
2020-10-13 09:58:46 +02:00
|
|
|
padding: 1rem 0 !important;
|
|
|
|
}
|
2020-10-23 10:37:28 +02:00
|
|
|
.text-print-default {
|
|
|
|
color: inherit !important;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
2020-10-24 10:20:19 +02:00
|
|
|
.toasted-container {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2021-10-05 22:49:57 -07:00
|
|
|
#markStatusDropdownMenuButton {
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0 !important;
|
|
|
|
color: inherit;
|
|
|
|
font-weight: var(--btcpay-font-weight-normal);
|
|
|
|
font-size: var(--btcpay-body-font-size);
|
|
|
|
}
|
|
|
|
#markStatusDropdownMenuButton::after {
|
|
|
|
content: none;
|
|
|
|
}
|
2020-10-13 09:58:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Richtext editor */
|
|
|
|
.note-editor .table.table-sm {
|
|
|
|
border-collapse: collapse !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.note-editor .table.table-sm th,
|
|
|
|
.note-editor .table.table-sm td {
|
2021-05-19 04:39:27 +02:00
|
|
|
border: 1px dotted var(--btcpay-neutral-400);
|
2020-10-26 10:34:43 +01:00
|
|
|
}
|
2021-01-07 01:07:42 -08:00
|
|
|
|
2022-06-28 05:03:13 +02:00
|
|
|
/* Icons */
|
2021-01-07 01:07:42 -08:00
|
|
|
svg.icon {
|
|
|
|
display: inline-block;
|
2022-01-24 18:07:52 -08:00
|
|
|
width: 1rem;
|
|
|
|
height: 1rem;
|
|
|
|
flex-shrink: 0 !important;
|
2021-01-07 01:07:42 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
svg.icon-note {
|
2021-05-19 04:39:27 +02:00
|
|
|
color: var(--btcpay-neutral-500);
|
2021-01-07 01:07:42 -08:00
|
|
|
}
|
2022-01-19 03:52:05 +01:00
|
|
|
|
|
|
|
/* Services */
|
|
|
|
.services-list {
|
|
|
|
display: flex;
|
2022-06-14 07:36:22 +02:00
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: var(--btcpay-space-l);
|
2022-01-19 03:52:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.services-list .service {
|
|
|
|
--service-width: 100px;
|
|
|
|
flex: 0 0 var(--service-width);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.services-list .service img {
|
|
|
|
width: var(--service-width);
|
|
|
|
height: var(--service-width);
|
|
|
|
}
|
|
|
|
|
|
|
|
.services-list .service h6 {
|
|
|
|
margin: var(--btcpay-space-m) 0 0 0;
|
|
|
|
}
|
2022-01-27 03:56:46 +01:00
|
|
|
|
|
|
|
/* Setup Guide */
|
|
|
|
#SetupGuide {
|
|
|
|
max-width: 30em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#SetupGuide .list-group-item .icon {
|
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
|
|
|
margin: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#SetupGuide .list-group-item .content {
|
|
|
|
flex: 1;
|
|
|
|
padding: 1rem 0;
|
|
|
|
}
|
2022-04-12 09:55:10 +02:00
|
|
|
|
|
|
|
/* Dashboard */
|
|
|
|
#Dashboard {
|
|
|
|
display: grid;
|
|
|
|
gap: var(--btcpay-space-m);
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget {
|
|
|
|
--widget-padding: var(--btcpay-space-m);
|
|
|
|
--widget-chart-width: 100vw;
|
|
|
|
|
|
|
|
border: 1px solid var(--btcpay-body-border-light);
|
2022-04-13 21:08:43 -07:00
|
|
|
border-radius: var(--btcpay-border-radius-l);
|
2022-04-12 09:55:10 +02:00
|
|
|
padding: var(--widget-padding);
|
|
|
|
background: var(--btcpay-bg-tile);
|
|
|
|
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 13;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget header {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: var(--btcpay-space-s);
|
|
|
|
gap: var(--btcpay-space-s);
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget header a,
|
|
|
|
.widget header .btn-link {
|
|
|
|
margin-top: var(--btcpay-space-xs);
|
|
|
|
font-weight: var(--btcpay-font-weight-semibold);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget h3,
|
|
|
|
.widget .h3 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget h6,
|
|
|
|
.widget .h6 {
|
2022-04-20 02:42:14 +02:00
|
|
|
font-weight: var(--btcpay-font-weight-semibold);
|
2022-04-12 09:55:10 +02:00
|
|
|
color: var(--btcpay-body-text-muted);
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .btn-group {
|
|
|
|
display: inline-flex;
|
|
|
|
gap: var(--btcpay-space-m);
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .btn-link {
|
|
|
|
color: var(--btcpay-body-text-muted);
|
|
|
|
padding: 0;
|
|
|
|
font-weight: var(--btcpay-font-weight-semibold);
|
|
|
|
box-shadow: none !important;
|
|
|
|
text-decoration: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget input:checked + .btn-link {
|
|
|
|
color: var(--btcpay-body-link-accent);
|
|
|
|
}
|
|
|
|
|
2022-06-14 07:36:22 +02:00
|
|
|
.widget.store-lightning-balance .balances {
|
|
|
|
gap: 1.5rem 2.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-lightning-services .services-list {
|
|
|
|
gap: var(--btcpay-space-m);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-lightning-services .services-list .service {
|
|
|
|
--service-width: 3rem;
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:55:10 +02:00
|
|
|
.widget.store-numbers {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: var(--btcpay-space-l) var(--btcpay-space-xl);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-numbers header {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-numbers header h6 {
|
|
|
|
margin-right: var(--btcpay-space-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget header a,
|
|
|
|
.widget header .btn-link {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .store-number {
|
|
|
|
flex: 0 1 calc(50% - var(--btcpay-space-xl) / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .number {
|
|
|
|
font-weight: var(--btcpay-font-weight-bold);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .table {
|
|
|
|
margin-left: -.5rem;
|
|
|
|
margin-right: -.5rem;
|
|
|
|
width: calc(100% + 1rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .table th {
|
|
|
|
color: var(--btcpay-body-text-muted);
|
|
|
|
font-weight: var(--btcpay-font-weight-semibold);
|
|
|
|
}
|
|
|
|
|
2022-06-28 07:05:02 +02:00
|
|
|
.widget.app-top-items .ct-chart,
|
|
|
|
.widget.app-top-items .ct-chart .ct-chart-bar {
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.app-top-items .ct-chart .ct-chart-bar {
|
|
|
|
margin-left: -.4rem;
|
|
|
|
margin-right: -.5rem;
|
|
|
|
width: calc(100% + 1rem) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.app-top-items .ct-bar {
|
|
|
|
stroke-linecap: round;
|
|
|
|
stroke-width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.app-top-items .ct-grids,
|
|
|
|
.widget.app-top-items .ct-labels {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:55:10 +02:00
|
|
|
.widget.app-top-items .app-items {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--btcpay-space-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.app-top-items .app-item {
|
|
|
|
display: flex;
|
2022-06-28 07:05:02 +02:00
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: var(--btcpay-space-xs);
|
|
|
|
align-items: center;
|
2022-04-12 09:55:10 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2022-06-28 07:05:02 +02:00
|
|
|
.widget.app-top-items .app-item-point {
|
|
|
|
display: inline-block;
|
|
|
|
width: var(--btcpay-space-s);
|
|
|
|
height: var(--btcpay-space-s);
|
|
|
|
margin-right: var(--btcpay-space-s);
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:55:10 +02:00
|
|
|
.widget.app-top-items .app-item-value {
|
|
|
|
font-weight: var(--btcpay-font-weight-semibold);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 575px) {
|
2022-06-14 07:36:22 +02:00
|
|
|
.widget.store-lightning-services .services-list .service {
|
|
|
|
--service-width: 3rem;
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:55:10 +02:00
|
|
|
.widget .store-number {
|
|
|
|
flex: 0 1 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 576px) {
|
|
|
|
.widget {
|
|
|
|
--widget-padding: var(--btcpay-space-l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 07:36:22 +02:00
|
|
|
@media (min-width: 576px) and (max-width: 1199px) {
|
|
|
|
.widget.store-lightning-services .services-list {
|
|
|
|
gap: 1.5rem;
|
|
|
|
}
|
|
|
|
.widget.store-lightning-services .services-list .service {
|
|
|
|
--service-width: 4rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1199px) {
|
|
|
|
/* Reorder so that Lightning is below the wallet balance */
|
|
|
|
.widget.store-wallet-balance {
|
|
|
|
order: -3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-lightning-balance {
|
|
|
|
order: -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-lightning-services {
|
|
|
|
order: -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-12 09:55:10 +02:00
|
|
|
@media (min-width: 1200px) {
|
|
|
|
.widget.app-sales,
|
|
|
|
.widget.setup-guide,
|
2022-06-14 07:36:22 +02:00
|
|
|
.widget.store-wallet-balance,
|
|
|
|
.widget.store-lightning-balance {
|
2022-04-12 09:55:10 +02:00
|
|
|
--widget-chart-width: 80vw;
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 9;
|
|
|
|
}
|
|
|
|
|
2022-06-14 07:36:22 +02:00
|
|
|
.widget.store-lightning-services,
|
2022-04-12 09:55:10 +02:00
|
|
|
.widget.app-top-items,
|
|
|
|
.widget.store-numbers {
|
|
|
|
grid-column-start: 9;
|
|
|
|
grid-column-end: 13;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-numbers {
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget .store-number {
|
|
|
|
flex: 0 1;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-numbers header {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget.store-numbers header h6 {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|