Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
d26b7c7a
Commit
d26b7c7a
authored
9 years ago
by
Chris Rebert
Browse files
Options
Download
Email Patches
Plain Diff
Rename local vars per new naming convention: $padding-{vertical=>y} $padding-{horizontal=>x}
[skip sauce] [skip validator]
parent
fa696d04
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scss/mixins/_forms.scss
+2
-2
scss/mixins/_forms.scss
scss/mixins/_pagination.scss
+2
-2
scss/mixins/_pagination.scss
with
4 additions
and
4 deletions
+4
-4
scss/mixins/_forms.scss
+
2
-
2
View file @
d26b7c7a
...
@@ -68,10 +68,10 @@
...
@@ -68,10 +68,10 @@
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
// element gets special love because it's special, and that's a fact!
// element gets special love because it's special, and that's a fact!
@mixin
input-size
(
$parent
,
$input-height
,
$padding-
vertical
,
$padding-
horizontal
,
$font-size
,
$line-height
,
$border-radius
)
{
@mixin
input-size
(
$parent
,
$input-height
,
$padding-
y
,
$padding-
x
,
$font-size
,
$line-height
,
$border-radius
)
{
#{
$parent
}
{
#{
$parent
}
{
height
:
$input-height
;
height
:
$input-height
;
padding
:
$padding-
vertical
$padding-
horizontal
;
padding
:
$padding-
y
$padding-
x
;
font-size
:
$font-size
;
font-size
:
$font-size
;
line-height
:
$line-height
;
line-height
:
$line-height
;
@include
border-radius
(
$border-radius
);
@include
border-radius
(
$border-radius
);
...
...
This diff is collapsed.
Click to expand it.
scss/mixins/_pagination.scss
+
2
-
2
View file @
d26b7c7a
// Pagination
// Pagination
@mixin
pagination-size
(
$padding-
vertical
,
$padding-
horizontal
,
$font-size
,
$line-height
,
$border-radius
)
{
@mixin
pagination-size
(
$padding-
y
,
$padding-
x
,
$font-size
,
$line-height
,
$border-radius
)
{
.page-link
{
.page-link
{
padding
:
$padding-
vertical
$padding-
horizontal
;
padding
:
$padding-
y
$padding-
x
;
font-size
:
$font-size
;
font-size
:
$font-size
;
line-height
:
$line-height
;
line-height
:
$line-height
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment