Replace deprecated `@colorFieldBorder` variable and use others

Replacing deprecated `@colorFieldBorder` with WikimediaUI Base equivalent
`@border-base` shorthand.
Also replace `@borderRadius` with new base and static `background-color`
values.

Depends-On: I2e2277957b79b81909b80a6c0b7b2220be6ba903
Change-Id: I90bb0eb0c2206483f71f0553dfb590d9df2c5781
This commit is contained in:
Volker E 2020-04-23 14:41:05 -07:00 committed by Jdlrobson
parent c745dc19f9
commit f5d55bcf54
2 changed files with 4 additions and 4 deletions

View File

@ -41,8 +41,8 @@
color: @color-base--emphasized;
width: 100%;
.box-sizing( border-box );
border: @border-width-base @border-style-base @colorGray10;
border-radius: @borderRadius;
border: @border-base;
border-radius: @border-radius-base;
// `padding-right` equals to `#searchbutton` width below.
padding: 0.4em @width-search-button 0.4em 0.4em;
.box-shadow( @boxShadowWidget );

View File

@ -12,7 +12,7 @@
}
.mw-notification {
border: 1px solid @colorFieldBorder;
border-radius: @borderRadius;
border: @border-base;
border-radius: @border-radius-base;
box-shadow: 0 2px 2px 0 rgba( 0, 0, 0, 0.25 );
}