From b02fd1376681c0d3110c4b718b38ded860c07f69 Mon Sep 17 00:00:00 2001 From: Juan Molina Date: Thu, 21 Feb 2019 15:32:45 +0100 Subject: [PATCH] Correct 13_CSS_Coding_Conventions.md Correct two broken links and the syntax of a third one --- docs/en/05_Contributing/13_CSS_Coding_Conventions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/05_Contributing/13_CSS_Coding_Conventions.md b/docs/en/05_Contributing/13_CSS_Coding_Conventions.md index 389bb09da..3e22126fb 100644 --- a/docs/en/05_Contributing/13_CSS_Coding_Conventions.md +++ b/docs/en/05_Contributing/13_CSS_Coding_Conventions.md @@ -31,9 +31,9 @@ Use BEM conventions where possible. ## Linting -We use [sass-lint](hhttps://github.com/sasstools/sass-lint) to ensure all new SCSS +We use [sass-lint](https://github.com/sasstools/sass-lint) to ensure all new SCSS written complies with the rules below. It will be provided as an npm dev dependency. -There are also quite a few [sass-lint IDE integrations]https://github.com/sasstools/sass-lint#ide-integration) +There are also quite a few [sass-lint IDE integrations](https://github.com/sasstools/sass-lint#ide-integration) which highlight any linting errors right in your code. We strongly recommend installing one of these into the editor of your choice, to @@ -72,7 +72,7 @@ consider porting them over into the new structure. Otherwise, follow these conve - Class naming: Use the `cms-` class prefix for major components in the cms interface, and the `ss-ui-` prefix for extensions to jQuery UI. Don't use the `ui-` class prefix, its reserved for jQuery UI built-in styles. - Use jQuery UI's built-in styles where possible, e.g. `ui-widget` for a generic container, or `ui-state-highlight` - to highlight a specific component. See the [jQuery UI Theming API](http://jqueryui.com/docs/Theming/API) for a full list. + to highlight a specific component. See the [jQuery UI Theming API](https://api.jqueryui.com/category/theming/) for a full list. ## Related