QA removed styles in the html and put the translate

This commit is contained in:
jorgebl 2021-03-16 08:44:05 +01:00
parent fdecf6510f
commit 1fc53f5565
4 changed files with 11 additions and 9 deletions

View File

@ -168,17 +168,11 @@
on-close="$ctrl.editedColumn = null"> on-close="$ctrl.editedColumn = null">
<tpl-body> <tpl-body>
<vn-horizontal> <vn-horizontal>
<span style="font-size: 16px; font-weight: 600; max-width: 50px;">Editar</span> <span class="titleDialog" translate>Edit</span>
<span <span class="countLines">
style='
flex: 0.15;
margin-left: 10px;
font-size: 24px;
color: orangered;
font-weight: bold;'>
{{::$ctrl.totalChecked}} {{::$ctrl.totalChecked}}
</span> </span>
<span style="font-size: 16px; font-weight: 600; max-width: 50px;"> compra(s)</span> <span class="titleDialog" translate>buy(s)</span>
</vn-horizontal> </vn-horizontal>
<vn-horizontal> <vn-horizontal>
<vn-autocomplete <vn-autocomplete

View File

@ -1,5 +1,6 @@
import ngModule from '../module'; import ngModule from '../module';
import Section from 'salix/components/section'; import Section from 'salix/components/section';
import './style.scss';
export default class Controller extends Section { export default class Controller extends Section {
constructor($element, $) { constructor($element, $) {

View File

@ -12,3 +12,5 @@ Weight: Peso
Minimun amount: Cantidad mínima de compra Minimun amount: Cantidad mínima de compra
Field to edit: Campo a editar Field to edit: Campo a editar
PackageName: Cubo PackageName: Cubo
Edit: Editar
buy(s): compra(s)

View File

@ -4,9 +4,14 @@
font-size: 24px; font-size: 24px;
color: orangered; color: orangered;
font-weight: bold; font-weight: bold;
padding-left: 10px;
padding-right: 10px;
max-width: 30px;
} }
.titleDialog { .titleDialog {
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
max-width: 30px;
} }