From 40b4cd5c0fcdddffbcfe2f9d553fa5734254acb5 Mon Sep 17 00:00:00 2001 From: Volker E Date: Mon, 10 Oct 2016 20:17:14 -0700 Subject: [PATCH] mediawiki.UI: Document explicitly about deprecated .mw-ui-constructive Changing documentation in mediawiki.UI anchors about deprecated `.mw-ui-constructive` class. Bug: T146923 Change-Id: If3686c7c9c071fa708ae1deb82aa465a1f390175 --- .../src/mediawiki.ui/components/anchors.less | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/src/mediawiki.ui/components/anchors.less b/resources/src/mediawiki.ui/components/anchors.less index 5bb69b8a7a..4c4e129834 100644 --- a/resources/src/mediawiki.ui/components/anchors.less +++ b/resources/src/mediawiki.ui/components/anchors.less @@ -6,15 +6,14 @@ .mixin-mw-ui-anchor-styles( @mainColor ) { color: @mainColor; - // Hover state &:hover { color: lighten( @mainColor, @colorLightenPercentage ); } - // Focus and active states + &:focus, &:active { color: darken( @mainColor, @colorDarkenPercentage ); - outline: none; // outline fix + outline: 0; } // Quiet mode is gray at first @@ -26,13 +25,13 @@ /* Anchors -The anchor base type can be applied to A elements when a basic context styling needs to be given to a link, without -having to assign it as a button type. mw-ui-anchor only changes the text color, and should not be used in combination -with other base classes, such as mw-ui-button. +The anchor base type can be applied to `a` elements when a basic context styling needs to be given to a link, without +having to assign it as a button type. `.mw-ui-anchor` only changes the text color, and should not be used in combination +with other base classes, such as `.mw-ui-button`. + Markup: Progressive -Constructive Destructive .mw-ui-quiet - Quiet until interaction. @@ -46,13 +45,14 @@ Styleguide 6.2. .mixin-mw-ui-anchor-styles( @colorProgressive ); } - &.mw-ui-constructive { - .mixin-mw-ui-anchor-styles( @colorConstructive ); - } - &.mw-ui-destructive { .mixin-mw-ui-anchor-styles( @colorDestructive ); } + + //`.mw-ui-constructive` is deprecated; consolidated with `progressive`, see T110555 + &.mw-ui-constructive { + .mixin-mw-ui-anchor-styles( @colorConstructive ); + } } /* -- 2.20.1