Skip to content
GitLab
Explore
Projects
Groups
Snippets
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
3137eec3
Commit
3137eec3
authored
9 years ago
by
Chris Rebert
Browse files
Options
Download
Email Patches
Plain Diff
Move border-radius mixin from scss/_mixins.scss to scss/mixins/_border-radius.scss
Reunites the family. Closes #17791
parent
781916ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scss/_mixins.scss
+0
-6
scss/_mixins.scss
scss/mixins/_border-radius.scss
+6
-0
scss/mixins/_border-radius.scss
with
6 additions
and
6 deletions
+6
-6
scss/_mixins.scss
+
0
-
6
View file @
3137eec3
...
...
@@ -2,12 +2,6 @@
//
// Used in conjunction with global variables to enable certain theme features.
@mixin
border-radius
(
$radius
:
$border-radius
)
{
@if
$enable-rounded
{
border-radius
:
$radius
;
}
}
@mixin
box-shadow
(
$shadow
...
)
{
@if
$enable-shadows
{
box-shadow
:
$shadow
;
...
...
This diff is collapsed.
Click to expand it.
scss/mixins/_border-radius.scss
+
6
-
0
View file @
3137eec3
// Single side border-radius
@mixin
border-radius
(
$radius
:
$border-radius
)
{
@if
$enable-rounded
{
border-radius
:
$radius
;
}
}
@mixin
border-top-radius
(
$radius
)
{
@if
$enable-rounded
{
border-top-right-radius
:
$radius
;
...
...
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
Menu
Explore
Projects
Groups
Snippets