5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 10:46:22 +00:00

fix: color de fuente legible en modo oscuro #16288

This commit is contained in:
maki 2024-05-14 12:22:56 -03:00
parent b8c54a4d0f
commit 59abb9e68a
3 changed files with 14 additions and 1 deletions

View file

@ -52,6 +52,9 @@ $sizes: (
--background: #{$black};
--color: #{$cyan};
}
a.black {
color: $white;
}
}
// TODO: Encontrar la forma de generar esto desde los locales de Rails

View file

@ -31,4 +31,8 @@ $cyan: #13fefe;
}
}
a.black {
color: $white;
}

View file

@ -21,7 +21,13 @@
%input.custom-control-input.magenta{ type: 'checkbox', id: schema, name: "layout[]", class: "", value: schema.name, checked: @filter_params[:layout]&.include?(key.to_s) }
%label.custom-control-label.font-weight-normal{ for: schema }= schema.humanized_name
%button.btn.btn-secondary.mt-3{ type: 'submit' }= t('.filters.submit')
= render 'layouts/details', summary: t('posts.new'), summary_class: "h4 magenta font-weight-bold m-0 px-2", details_class: "d-flex border border-magenta justify-content-between align-items-center w-100 mb-3", open: "+", closed: "+", open_class: "h1 magenta font-weight-bold m-0", closed_class: "h1 magenta font-weight-bold m-0" do
= render 'layouts/details',
summary: t('posts.new'),
summary_class: "h4 magenta font-weight-bold m-0 px-2",
details_class: "d-flex border border-magenta justify-content-between align-items-center w-100 mb-3",
open: "+", closed: "+",
open_class: "h1 magenta font-weight-bold m-0",
closed_class: "h1 magenta font-weight-bold m-0" do
%table.table-sm.w-100
%tbody
- @site.schema_organization.each do |schema, _|