feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run

- Base: wintercms/winter branch 1.2 (full framework)
- Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS
- Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication
- Partials: hero (offline-first), features, modes (offline/nube toggle),
  screenshots, pricing (3 planes), comparison, FAQ, CTA
- Plugin VivesPOS.Site with ContactForm
- Dockerfile: PHP 8.2 Apache, port 80, healthcheck
- Added winter/wn-pages, blog, sitemap, seo plugins
- Active theme set to vivespos
This commit is contained in:
2026-08-21 19:29:00 -06:00
commit 1f72193a64
3266 changed files with 531480 additions and 0 deletions

View File

@@ -0,0 +1,148 @@
@import "../../../../assets/less/core/boot.less";
@color-permissioneditor-section-border: #DBE1E3;
@color-permissioneditor-permission-border: #ECF0F1;
.permissioneditor {
position: relative;
margin: 0 -(@padding-standard);
&.control-disabled {
.permissions-overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.01);
cursor: not-allowed;
}
table {
.opacity(0.5);
}
}
table {
width: 100%;
th {
padding: 30px 4px 8px 4px;
color: @color-label;
font-weight: normal;
border-bottom: 1px solid @color-permissioneditor-section-border;
&.tab {
font-size: @font-size-base - 1;
}
&.permission-type {
text-transform: uppercase;
font-size: @font-size-base - 3;
text-align: center;
cursor: pointer;
user-select: none;
border-radius: 2px;
transition: background-color 0.15s ease, color 0.15s ease;
&:hover {
background-color: @color-list-hover-bg;
color: #ffffff;
}
}
}
td {
padding: 10px 4px;
vertical-align: top;
border-bottom: 1px solid @color-permissioneditor-permission-border;
.user-select(none);
&.permission-value{
text-align: center;
}
&.permission-name {
font-size: @font-size-base - 1;
cursor: pointer;
color: @color-help-block-text;
}
p.comment {
margin-top: 5px;
margin-bottom: 0;
&:empty {
display: none;
}
}
}
tr:hover {
td {
background: @color-list-hover-bg;
&.permission-name {
color: #ffffff !important;
}
}
}
th, td {
&:first-child {
padding-left: @padding-standard;
}
&:last-child {
padding-right: 5px;
}
}
.custom-radio,
.custom-checkbox,
.custom-switch {
display: inline-block;;
padding-left: 0;
&, label {
margin-bottom: 0;
}
label {
padding: 0 0 0 14px;
margin: 0;
top: 0;
span {
text-indent: -10000em;
display: block;
}
&:before {
margin-right: 0;
}
}
}
tr:last-child td {
border-bottom: none;
}
tr:first-child th {
padding-top: 0;
}
tr.disabled {
td.permission-name {
color: #AAA;
}
}
tr.last-section-row {
td {
border-bottom: none;
}
}
}
}