mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:26:22 +00:00
fix: color de fuente legible en modo oscuro #16288
This commit is contained in:
parent
b8c54a4d0f
commit
59abb9e68a
3 changed files with 14 additions and 1 deletions
|
@ -52,6 +52,9 @@ $sizes: (
|
||||||
--background: #{$black};
|
--background: #{$black};
|
||||||
--color: #{$cyan};
|
--color: #{$cyan};
|
||||||
}
|
}
|
||||||
|
a.black {
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Encontrar la forma de generar esto desde los locales de Rails
|
// TODO: Encontrar la forma de generar esto desde los locales de Rails
|
||||||
|
|
|
@ -31,4 +31,8 @@ $cyan: #13fefe;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.black {
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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) }
|
%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
|
%label.custom-control-label.font-weight-normal{ for: schema }= schema.humanized_name
|
||||||
%button.btn.btn-secondary.mt-3{ type: 'submit' }= t('.filters.submit')
|
%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
|
%table.table-sm.w-100
|
||||||
%tbody
|
%tbody
|
||||||
- @site.schema_organization.each do |schema, _|
|
- @site.schema_organization.each do |schema, _|
|
||||||
|
|
Loading…
Reference in a new issue