2020-05-26 21:52:42 +02:00
|
|
|
@addTagHelper *, BundlerMinifier.TagHelpers
|
2018-11-27 07:14:32 +01:00
|
|
|
@inject BTCPayServer.HostedServices.CssThemeManager themeManager
|
2018-05-07 17:19:28 +02:00
|
|
|
|
2020-05-27 14:20:21 +02:00
|
|
|
@using BTCPayServer.Services.Apps
|
2018-08-30 20:16:24 +02:00
|
|
|
@model BTCPayServer.Models.AppViewModels.ViewPointOfSaleViewModel
|
2018-04-03 04:50:41 +02:00
|
|
|
@{
|
|
|
|
ViewData["Title"] = Model.Title;
|
|
|
|
Layout = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="h-100">
|
|
|
|
<head>
|
|
|
|
<title>@Model.Title</title>
|
2019-05-24 08:07:09 +02:00
|
|
|
<meta charset="utf-8" />
|
2018-04-03 04:50:41 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
2018-12-13 14:36:19 +01:00
|
|
|
<link rel="apple-touch-icon" href="~/img/icons/icon-512x512.png">
|
|
|
|
<link rel="apple-touch-startup-image" href="~/img/splash.png">
|
|
|
|
|
|
|
|
<link rel="manifest" href="~/manifest.json">
|
|
|
|
|
2020-04-18 17:56:05 +02:00
|
|
|
<link href="@this.Context.Request.GetRelativePathOrAbsolute(themeManager.BootstrapUri)" rel="stylesheet" asp-append-version="true" />
|
|
|
|
<link href="@this.Context.Request.GetRelativePathOrAbsolute(themeManager.ThemeUri)" rel="stylesheet" asp-append-version="true" />
|
2018-11-17 03:39:43 +01:00
|
|
|
@if (Model.CustomCSSLink != null)
|
|
|
|
{
|
2019-05-24 08:07:09 +02:00
|
|
|
<link href="@Model.CustomCSSLink" rel="stylesheet" />
|
2018-11-17 03:39:43 +01:00
|
|
|
}
|
2020-04-18 17:56:05 +02:00
|
|
|
<link href="~/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" asp-append-version="true" />
|
2018-11-27 07:14:32 +01:00
|
|
|
|
2020-05-27 14:20:21 +02:00
|
|
|
@if (Model.ViewType == PosViewType.Cart)
|
2018-11-27 07:14:32 +01:00
|
|
|
{
|
2020-04-18 17:56:05 +02:00
|
|
|
<link rel="stylesheet" href="~/cart/css/style.css" asp-append-version="true">
|
2018-11-27 07:14:32 +01:00
|
|
|
<script type="text/javascript">
|
2019-08-10 07:05:11 +02:00
|
|
|
var srvModel = @Safe.Json(Model);
|
2018-11-27 07:14:32 +01:00
|
|
|
</script>
|
2020-04-18 17:56:05 +02:00
|
|
|
<bundle name="wwwroot/bundles/cart-bundle.min.js" asp-append-version="true" />
|
2018-11-27 07:14:32 +01:00
|
|
|
}
|
2019-03-07 06:28:42 +01:00
|
|
|
<style>
|
|
|
|
.card-deck {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
|
|
grid-gap: .5rem;
|
|
|
|
}
|
2019-04-05 09:50:41 +02:00
|
|
|
|
2019-11-15 13:05:30 +01:00
|
|
|
.card-deck .card:only-of-type {
|
|
|
|
max-width: 320px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.js-cart-item-minus .fa,
|
|
|
|
.js-cart-item-plus .fa {
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
|
|
|
display: inline-flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2019-10-26 21:20:39 +02:00
|
|
|
|
2019-11-15 13:05:30 +01:00
|
|
|
.js-cart-item-count {
|
|
|
|
-moz-appearance:textfield;
|
|
|
|
margin: 0;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2019-11-02 16:57:53 +01:00
|
|
|
|
2019-11-15 13:05:30 +01:00
|
|
|
.js-cart-item-count::-webkit-inner-spin-button,
|
|
|
|
.js-cart-item-count::-webkit-outer-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
2019-04-05 09:50:41 +02:00
|
|
|
</style>
|
2019-08-19 07:13:42 +02:00
|
|
|
@if (!string.IsNullOrEmpty(Model.EmbeddedCSS))
|
|
|
|
{
|
2019-08-31 05:06:08 +02:00
|
|
|
@Safe.Raw($"<style>{Model.EmbeddedCSS}</style>");
|
2019-08-19 07:13:42 +02:00
|
|
|
}
|
|
|
|
|
2018-04-03 04:50:41 +02:00
|
|
|
</head>
|
2018-12-13 14:36:19 +01:00
|
|
|
|
2019-04-05 09:50:41 +02:00
|
|
|
<body class="h-100">
|
2019-11-14 12:55:18 +01:00
|
|
|
@if (this.TempData.HasStatusMessage())
|
|
|
|
{
|
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
}
|
2020-05-26 21:52:42 +02:00
|
|
|
|
2020-05-28 08:50:04 +02:00
|
|
|
@RenderBody()
|
2018-04-03 04:50:41 +02:00
|
|
|
</body>
|
|
|
|
</html>
|