mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-02 17:53:30 +00:00
* AAE-38957 Cleanup code from color assignments on Material elements (#11266) * AAE-38646 cleanup core lib from custom variables (#11259) * AAE-38646 General cleanup of custom variables from core lib * AAE-38646 Cleanup some of the remaining variables * AAE-38646 Last color-mix removal * AAE-38646 Reduce amount of customizations * AAE-38646 apply overrides, reduce customization * AAE-38646 modify remaining styles * AAE-38646 Fix override assignemnts * AAE-38646 Address comments, cleanup unused * AAE-38978 Cleanup process-services-cloud lib from custom css variables (#11295) * AAE-38978 Cleanup custom variables inside process-services-cloud lib * AAE-38978 Adjust rich text widget styling * AAE-38978 Comment fixes * AAE-38980 Cleanup insights lib from custom css variables (#11314) * AAE-38980 Cleanup insights lib from custom css variables * AAE-38980 Removed unnecessarily specific selector * AAE-38979 Cleanup content-services lib from custom css variables (#11313) * AAE-38979 Remove/replace variable and hardcoded customizations * AAE-38979 Cleanup unused @use and @import statements * AAE-39159 Cleanup process-services lib from custom css variables (#11316) * AAE-39159 Cleanup process-services lib from custom css variables * AAE-39159 Fix import and build * Fix build * Remove leftover button customization * fix missing brace * AAE-39748 Pagination font size match md3 * fix incorrect html templates after rebase * swap leftover variables * fix units * copilot comments * visual regression result fixes * CSX-204 Update card view components (#11358) * CSX-535 Update background color on readonly for card view selectitem (#11799) * remove invalid color test * add stylelint rule --------- Co-authored-by: Ehsan Rezaei <ehsan.rezaei@hyland.com> Co-authored-by: Ricardo Dias <ricardo.dias@hyland.com>
72 lines
1.8 KiB
JSON
72 lines
1.8 KiB
JSON
{
|
|
"extends": ["stylelint-config-standard-scss"],
|
|
"rules": {
|
|
"custom-property-pattern": [
|
|
"^(mat-sys|mdc)",
|
|
{
|
|
"message": "Use only Angular Material system variables (--mat-sys-*, --mdc-*)"
|
|
}
|
|
],
|
|
"color-function-notation": "legacy",
|
|
"alpha-value-notation": "number",
|
|
"color-no-invalid-hex": true,
|
|
"function-calc-no-unspaced-operator": true,
|
|
"function-name-case": "lower",
|
|
"function-url-quotes": "always",
|
|
"function-url-scheme-disallowed-list": [
|
|
"data"
|
|
],
|
|
"length-zero-no-unit": true,
|
|
"string-no-newline": true,
|
|
"unit-no-unknown": true,
|
|
"unit-allowed-list": [
|
|
"px",
|
|
"%",
|
|
"deg",
|
|
"ms",
|
|
"em",
|
|
"vh",
|
|
"vw",
|
|
"vmin",
|
|
"s",
|
|
"rem"
|
|
],
|
|
"shorthand-property-no-redundant-values": true,
|
|
"declaration-no-important": true,
|
|
"no-duplicate-at-import-rules": true,
|
|
"declaration-block-no-duplicate-properties": [
|
|
true,
|
|
{
|
|
"ignore": [
|
|
"consecutive-duplicates-with-different-values"
|
|
]
|
|
}
|
|
],
|
|
"declaration-block-single-line-max-declarations": 1,
|
|
"declaration-property-value-disallowed-list": [
|
|
{
|
|
"/.*/": [
|
|
"initial"
|
|
]
|
|
},
|
|
{
|
|
"message": "The `initial` value is not supported in IE."
|
|
}
|
|
],
|
|
"selector-pseudo-element-colon-notation": "double",
|
|
"selector-pseudo-element-no-unknown": [true, {
|
|
"ignorePseudoElements": ["ng-deep"]
|
|
}],
|
|
"selector-type-case": "lower",
|
|
"selector-max-id": 0,
|
|
"selector-class-pattern": [
|
|
"^_?(adf|adf-|app|app-|example-|demo-|textLayer|canvasWrapper|page)",
|
|
{
|
|
"resolveNestedSelectors": true
|
|
}
|
|
],
|
|
"scss/dollar-variable-empty-line-before": null,
|
|
"scss/at-rule-conditional-no-parentheses": null
|
|
}
|
|
}
|