From 274e0d9413db75dc209789837fa111edca37638e Mon Sep 17 00:00:00 2001 From: jazzari Date: Tue, 19 Dec 2023 18:04:02 +0100 Subject: [PATCH] fix: corregido vista desktop con toggler #13587 --- app/assets/stylesheets/application.scss | 50 ++++++++++++++++++++++++- app/views/sites/_designs_desktop.haml | 37 +++++++++--------- 2 files changed, 69 insertions(+), 18 deletions(-) diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 5b4d6621..c08d02f3 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -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; + } +} diff --git a/app/views/sites/_designs_desktop.haml b/app/views/sites/_designs_desktop.haml index 76c5c18b..b72f1bb1 100644 --- a/app/views/sites/_designs_desktop.haml +++ b/app/views/sites/_designs_desktop.haml @@ -6,25 +6,28 @@ - @designs.each do |design| .col.d-flex.flex-column.pl-2.mb-n1.border-magenta.border-solid %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}", class: 'h5 font-weight-bolder' .flex-fill.f-3 = sanitize_markdown design.description, tags: %w[p a strong em] - .col-md-6.border-0.border-lg-right.border-dashed.border-cyan - .border-lg-left.border-cyan - %h2.text-center.pb-3= t('.preview') - .embed-responsive.embed-responsive-1by1 - %iframe.embed-responsive-item{allowfullscreen: "", src: "/placeholder.png"} - .col-md-2 - %h2.pb-3= t('.characteristics') - %div - %p 1. Es gratis - %p 2. Sofware libre - Licencia GPL - %p 3. Compatible con la web distribuida - %br - %a.btn.btn-primary.btn-lg.mt-4{role: "button", href: ""}= t('.source_code') + .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 + %h2.text-center.pb-3= t('.preview') + .embed-responsive.embed-responsive-1by1 + %iframe.embed-responsive-item{allowfullscreen: "", src: "/placeholder.png"} + .col-md-3 + %h2.pb-3= t('.characteristics') + %div + - characteristics = design.characteristics + - characteristics.each_line.with_index do |characteristic, index| + %h5 #{index+1}. #{characteristic} + %br + %a.btn.btn-primary.btn-lg.mt-4{role: "button", href: design.url}= t('.source_code')