UI: JavaScript library (Module type) minor style enhancement: remove redundant space before required symbol, decrease help popover width (prod-5636).

This commit is contained in:
deaflynx 2025-04-01 12:04:26 +03:00
parent e8eef3a7df
commit ced71331ef
3 changed files with 7 additions and 3 deletions

View File

@ -91,8 +91,7 @@
<label class="tb-title no-padding tb-required"
[class.tb-error]="entityForm.get('content').invalid && entityForm.get('content').touched"
style="font-size: 16px;">
{{ 'javascript.module-script' | translate }}
</label>
{{ 'javascript.module-script' | translate }}</label>
<tb-file-input *ngIf="(isAdd || isEdit)"
asButton
uploadButtonText="{{ 'javascript.upload-from-file' | translate }}"

View File

@ -85,4 +85,8 @@
color: rgb(49, 132, 149);
}
}
label.tb-title.tb-required::after {
content: "*";
}
}

View File

@ -14,7 +14,8 @@ JavaScript resource modules are advantageous for reusing custom logic. They can
- Cell content functions.
- Custom actions.
These modules can contain any JavaScript code, facilitating the reuse of specific logic. This includes variables or functions that are exported for use in other parts of the application.
These modules can contain any JavaScript code, facilitating the reuse of specific logic. This includes variables or functions<br>
that are exported for use in other parts of the application.
##### Examples
You can declare variables: