Correct renaming of functions

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-04-24 17:48:36 +04:00
parent 54518efc2a
commit 131e332a03
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
6 changed files with 9 additions and 9 deletions

View File

@ -21,7 +21,7 @@ input[type='submit'] {
text-transform: uppercase; text-transform: uppercase;
white-space: nowrap; white-space: nowrap;
@include borderradius(.4rem); @include border-radius(.4rem);
&:focus, &:focus,
&:hover { &:hover {

View File

@ -7,7 +7,7 @@ code {
padding: .2rem .5rem; padding: .2rem .5rem;
white-space: nowrap; white-space: nowrap;
@include borderradius(.4rem); @include border-radius(.4rem);
} }
pre { pre {
@ -20,6 +20,6 @@ pre {
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
white-space: pre; white-space: pre;
@include borderradius(0); @include border-radius(0);
} }
} }

View File

@ -26,9 +26,9 @@ textarea {
width: 100%; width: 100%;
@include appearance(none); @include appearance(none);
@include borderradius(.4rem); @include border-radius(.4rem);
@include boxshadow(none); @include box-shadow(none);
@include boxsizing(inherit); @include box-sizing(inherit);
&:focus { &:focus {
border-color: $color-primary; border-color: $color-primary;

View File

@ -6,7 +6,7 @@
// Default: 0 // Default: 0
// //
// https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius // https://www.w3.org/TR/css-backgrounds-3/#propdef-border-radius
@mixin borderradius($value: 0) { @mixin border-radius($value: 0) {
-webkit-border-radius: $value; -webkit-border-radius: $value;
-moz-border-radius: $value; -moz-border-radius: $value;
border-radius: $value; border-radius: $value;

View File

@ -6,7 +6,7 @@
// Default: none // Default: none
// //
// https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow // https://www.w3.org/TR/css-backgrounds-3/#propdef-box-shadow
@mixin boxshadow($value: none) { @mixin box-shadow($value: none) {
-webkit-box-shadow: $value; -webkit-box-shadow: $value;
-moz-box-shadow: $value; -moz-box-shadow: $value;
box-shadow: $value; box-shadow: $value;

View File

@ -7,7 +7,7 @@
// Default: content-box // Default: content-box
// //
// https://www.w3.org/TR/css-ui-3/#box-sizing // https://www.w3.org/TR/css-ui-3/#box-sizing
@mixin boxsizing($value: content-box) { @mixin box-sizing($value: content-box) {
-webkit-box-sizing: $value; -webkit-box-sizing: $value;
-moz-box-sizing: $value; -moz-box-sizing: $value;
-ms-box-sizing: $value; -ms-box-sizing: $value;