5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-24 14:26:22 +00:00

fix: corregido vista desktop con toggler #13587
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jazzari 2023-12-19 18:04:02 +01:00
parent 6c6801f781
commit 274e0d9413
2 changed files with 69 additions and 18 deletions

View file

@ -582,4 +582,52 @@ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
} }
} }
// force ci @import "new_editor";
.new-editor {
.editor {
table {
@extend .table;
@extend .table-responsive;
}
}
}
.content {
p { min-height: $font-size-base * $line-height-base; }
h1 { min-height: $h1-font-size * $headings-line-height; }
h2 { min-height: $h2-font-size * $headings-line-height; }
h3 { min-height: $h3-font-size * $headings-line-height; }
h4 { min-height: $h4-font-size * $headings-line-height; }
h5 { min-height: $h5-font-size * $headings-line-height; }
h6 { min-height: $h6-font-size * $headings-line-height; }
iframe { border: 0; }
audio { width: 100%; }
img,
video,
iframe {
@extend .img-fluid;
height: auto;
}
& > * {
margin-bottom: 1rem;
&:last-child {
margin-bottom: 0;
}
}
}
.toggler {
& + .toggled {
display: none;
}
&:checked + .toggled {
display: flex;
}
}

View file

@ -6,25 +6,28 @@
- @designs.each do |design| - @designs.each do |design|
.col.d-flex.flex-column.pl-2.mb-n1.border-magenta.border-solid .col.d-flex.flex-column.pl-2.mb-n1.border-magenta.border-solid
%div %div
= f.radio_button :design_id, design.id,
checked: design.id == site.design_id,
disabled: design.disabled,
required: true, class: 'radio-toolbar'
= f.label "design_id_#{design.id}", " - #{design.name}", = f.label "design_id_#{design.id}", " - #{design.name}",
class: 'h5 font-weight-bolder' class: 'h5 font-weight-bolder'
.flex-fill.f-3 .flex-fill.f-3
= sanitize_markdown design.description, = sanitize_markdown design.description,
tags: %w[p a strong em] tags: %w[p a strong em]
.col-md-6.border-0.border-lg-right.border-dashed.border-cyan .col
- designs.each do |design|
= f.radio_button :design_id, design.id,
checked: design.id == (site.design_id || @designs.first.id),
disabled: design.disabled,
required: true, class: 'radio-toolbar toggler'
.row.toggled
.col-md-8.border-0.border-lg-right.border-dashed.border-cyan
.border-lg-left.border-cyan .border-lg-left.border-cyan
%h2.text-center.pb-3= t('.preview') %h2.text-center.pb-3= t('.preview')
.embed-responsive.embed-responsive-1by1 .embed-responsive.embed-responsive-1by1
%iframe.embed-responsive-item{allowfullscreen: "", src: "/placeholder.png"} %iframe.embed-responsive-item{allowfullscreen: "", src: "/placeholder.png"}
.col-md-2 .col-md-3
%h2.pb-3= t('.characteristics') %h2.pb-3= t('.characteristics')
%div %div
%p 1. Es gratis - characteristics = design.characteristics
%p 2. Sofware libre - Licencia GPL - characteristics.each_line.with_index do |characteristic, index|
%p 3. Compatible con la web distribuida %h5 #{index+1}. #{characteristic}
%br %br
%a.btn.btn-primary.btn-lg.mt-4{role: "button", href: ""}= t('.source_code') %a.btn.btn-primary.btn-lg.mt-4{role: "button", href: design.url}= t('.source_code')