Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
43e1678b
Commit
43e1678b
authored
Aug 14, 2015
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update utils, use important
parent
6a75d07e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
123 additions
and
105 deletions
+123
-105
docs/components/utilities.md
docs/components/utilities.md
+63
-54
scss/_utilities-spacing.scss
scss/_utilities-spacing.scss
+60
-51
No files found.
docs/components/utilities.md
View file @
43e1678b
...
...
@@ -18,65 +18,74 @@ Assign `margin` or `padding` to an element or a subset of it's sides with shorth
### Margin
{% highlight scss %}
.m-a-0 { margin: 0; }
.m-t-0 { margin-top: 0; }
.m-r-0 { margin-right: 0; }
.m-b-0 { margin-bottom: 0; }
.m-l-0 { margin-left: 0; }
.m-a { margin: $spacer; }
.m-t { margin-top: $spacer-y; }
.m-r { margin-right: $spacer-x; }
.m-b { margin-bottom: $spacer-y; }
.m-l { margin-left: $spacer-x; }
.m-x { margin-right: $spacer-x; margin-left: $spacer-x; }
.m-y { margin-top: $spacer-y; margin-bottom: $spacer-y; }
.m-t-md { margin-top: ($spacer-y
*
1.5); }
.m-r-md { margin-right: ($spacer-y
*
1.5); }
.m-b-md { margin-bottom: ($spacer-y
*
1.5); }
.m-l-md { margin-left: ($spacer-y
*
1.5); }
.m-x-md { margin-right: ($spacer-x
* 1.5); margin-left: ($spacer-x *
1.5); }
.m-y-md { margin-top: ($spacer-y
* 1.5); margin-bottom: ($spacer-y *
1.5); }
.m-t-lg { margin-top: ($spacer-y
*
3); }
.m-r-lg { margin-right: ($spacer-y
*
3); }
.m-b-lg { margin-bottom: ($spacer-y
*
3); }
.m-l-lg { margin-left: ($spacer-y
*
3); }
.m-x-lg { margin-right: ($spacer-x
* 3); margin-left: ($spacer-x *
3); }
.m-y-lg { margin-top: ($spacer-y
* 3); margin-bottom: ($spacer-y *
3); }
.m-a-0 { margin: 0 !important; }
.m-t-0 { margin-top: 0 !important; }
.m-r-0 { margin-right: 0 !important; }
.m-b-0 { margin-bottom: 0 !important; }
.m-l-0 { margin-left: 0 !important; }
.m-x-0 { margin-right: 0 !important; margin-left: 0 !important; }
.m-y-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.m-a { margin: $spacer !important; }
.m-t { margin-top: $spacer-y !important; }
.m-r { margin-right: $spacer-x !important; }
.m-b { margin-bottom: $spacer-y !important; }
.m-l { margin-left: $spacer-x !important; }
.m-x { margin-right: $spacer-x !important; margin-left: $spacer-x !important; }
.m-y { margin-top: $spacer-y !important; margin-bottom: $spacer-y !important; }
.m-x-auto { margin-right: auto !important; margin-left: auto !important; }
.m-a-md { margin: ($spacer
*
1.5) !important; }
.m-t-md { margin-top: ($spacer-y
*
1.5) !important; }
.m-r-md { margin-right: ($spacer-y
*
1.5) !important; }
.m-b-md { margin-bottom: ($spacer-y
*
1.5) !important; }
.m-l-md { margin-left: ($spacer-y
*
1.5) !important; }
.m-x-md { margin-right: ($spacer-x
* 1.5) !important; margin-left: ($spacer-x *
1.5) !important; }
.m-y-md { margin-top: ($spacer-y
* 1.5) !important; margin-bottom: ($spacer-y *
1.5) !important; }
.m-a-lg { margin: ($spacer
*
3) !important; }
.m-t-lg { margin-top: ($spacer-y
*
3) !important; }
.m-r-lg { margin-right: ($spacer-y
*
3) !important; }
.m-b-lg { margin-bottom: ($spacer-y
*
3) !important; }
.m-l-lg { margin-left: ($spacer-y
*
3) !important; }
.m-x-lg { margin-right: ($spacer-x
* 3) !important; margin-left: ($spacer-x *
3) !important; }
.m-y-lg { margin-top: ($spacer-y
* 3) !important; margin-bottom: ($spacer-y *
3) !important; }
{% endhighlight %}
### Padding
{% highlight scss %}
.p-a-0 { padding: 0; }
.p-t-0 { padding-top: 0; }
.p-r-0 { padding-right: 0; }
.p-b-0 { padding-bottom: 0; }
.p-l-0 { padding-left: 0; }
.p-a { padding: $spacer; }
.p-t { padding-top: $spacer-y; }
.p-r { padding-right: $spacer-x; }
.p-b { padding-bottom: $spacer-y; }
.p-l { padding-left: $spacer-x; }
.p-x { padding-right: $spacer-x; padding-left: $spacer-x; }
.p-y { padding-top: $spacer-y; padding-bottom: $spacer-y; }
.p-t-md { padding-top: ($spacer-y
*
1.5); }
.p-r-md { padding-right: ($spacer-y
*
1.5); }
.p-b-md { padding-bottom: ($spacer-y
*
1.5); }
.p-l-md { padding-left: ($spacer-y
*
1.5); }
.p-x-md { padding-right: ($spacer-x
* 1.5); padding-left: ($spacer-x *
1.5); }
.p-y-md { padding-top: ($spacer-y
* 1.5); padding-bottom: ($spacer-y *
1.5); }
.p-t-lg { padding-top: ($spacer-y
*
3); }
.p-r-lg { padding-right: ($spacer-y
*
3); }
.p-b-lg { padding-bottom: ($spacer-y
*
3); }
.p-l-lg { padding-left: ($spacer-y
*
3); }
.p-x-lg { padding-right: ($spacer-x
* 3); padding-left: ($spacer-x *
3); }
.p-y-lg { padding-top: ($spacer-y
* 3); padding-bottom: ($spacer-y *
3); }
.p-a-0 { padding: 0 !important; }
.p-t-0 { padding-top: 0 !important; }
.p-r-0 { padding-right: 0 !important; }
.p-b-0 { padding-bottom: 0 !important; }
.p-l-0 { padding-left: 0 !important; }
.p-x-0 { padding-left: 0 !important; padding-right: 0 !important; }
.p-y-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.p-a { padding: $spacer !important; }
.p-t { padding-top: $spacer-y !important; }
.p-r { padding-right: $spacer-x !important; }
.p-b { padding-bottom: $spacer-y !important; }
.p-l { padding-left: $spacer-x !important; }
.p-x { padding-right: $spacer-x !important; padding-left: $spacer-x !important; }
.p-y { padding-top: $spacer-y !important; padding-bottom: $spacer-y !important; }
.p-a-md { padding: ($spacer
*
1.5) !important; }
.p-t-md { padding-top: ($spacer-y
*
1.5) !important; }
.p-r-md { padding-right: ($spacer-y
*
1.5) !important; }
.p-b-md { padding-bottom: ($spacer-y
*
1.5) !important; }
.p-l-md { padding-left: ($spacer-y
*
1.5) !important; }
.p-x-md { padding-right: ($spacer-x
* 1.5) !important; padding-left: ($spacer-x *
1.5) !important; }
.p-y-md { padding-top: ($spacer-y
* 1.5) !important; padding-bottom: ($spacer-y *
1.5) !important; }
.p-a-lg { padding: ($spacer
*
3) !important; }
.p-t-lg { padding-top: ($spacer-y
*
3) !important; }
.p-r-lg { padding-right: ($spacer-y
*
3) !important; }
.p-b-lg { padding-bottom: ($spacer-y
*
3) !important; }
.p-l-lg { padding-left: ($spacer-y
*
3) !important; }
.p-x-lg { padding-right: ($spacer-x
* 3) !important; padding-left: ($spacer-x *
3) !important; }
.p-y-lg { padding-top: ($spacer-y
* 3) !important; padding-bottom: ($spacer-y *
3) !important; }
{% endhighlight %}
...
...
scss/_utilities-spacing.scss
View file @
43e1678b
//
// Spacing
//
// Margin
.m-a-0
{
margin
:
0
;
}
.m-t-0
{
margin-top
:
0
;
}
.m-r-0
{
margin-right
:
0
;
}
.m-b-0
{
margin-bottom
:
0
;
}
.m-l-0
{
margin-left
:
0
;
}
.m-a-0
{
margin
:
0
!
important
;
}
.m-t-0
{
margin-top
:
0
!
important
;
}
.m-r-0
{
margin-right
:
0
!
important
;
}
.m-b-0
{
margin-bottom
:
0
!
important
;
}
.m-l-0
{
margin-left
:
0
!
important
;
}
.m-x-0
{
margin-right
:
0
!
important
;
margin-left
:
0
!
important
;
}
.m-y-0
{
margin-top
:
0
!
important
;
margin-bottom
:
0
!
important
;
}
.m-a
{
margin
:
$spacer
;
}
.m-t
{
margin-top
:
$spacer-y
;
}
.m-r
{
margin-right
:
$spacer-x
;
}
.m-b
{
margin-bottom
:
$spacer-y
;
}
.m-l
{
margin-left
:
$spacer-x
;
}
.m-x
{
margin-right
:
$spacer-x
;
margin-left
:
$spacer-x
;
}
.m-y
{
margin-top
:
$spacer-y
;
margin-bottom
:
$spacer-y
;
}
.m-a
{
margin
:
$spacer
!
important
;
}
.m-t
{
margin-top
:
$spacer-y
!
important
;
}
.m-r
{
margin-right
:
$spacer-x
!
important
;
}
.m-b
{
margin-bottom
:
$spacer-y
!
important
;
}
.m-l
{
margin-left
:
$spacer-x
!
important
;
}
.m-x
{
margin-right
:
$spacer-x
!
important
;
margin-left
:
$spacer-x
!
important
;
}
.m-y
{
margin-top
:
$spacer-y
!
important
;
margin-bottom
:
$spacer-y
!
important
;
}
.m-x-auto
{
margin-right
:
auto
!
important
;
margin-left
:
auto
!
important
;
}
.m-t-md
{
margin-top
:
(
$spacer-y
*
1
.5
);
}
.m-r-md
{
margin-right
:
(
$spacer-y
*
1
.5
);
}
.m-b-md
{
margin-bottom
:
(
$spacer-y
*
1
.5
);
}
.m-l-md
{
margin-left
:
(
$spacer-y
*
1
.5
);
}
.m-x-md
{
margin-right
:
(
$spacer-x
*
1
.5
);
margin-left
:
(
$spacer-x
*
1
.5
);
}
.m-y-md
{
margin-top
:
(
$spacer-y
*
1
.5
);
margin-bottom
:
(
$spacer-y
*
1
.5
);
}
.m-a-md
{
margin
:
(
$spacer
*
1
.5
)
!
important
;
}
.m-t-md
{
margin-top
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.m-r-md
{
margin-right
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.m-b-md
{
margin-bottom
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.m-l-md
{
margin-left
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.m-x-md
{
margin-right
:
(
$spacer-x
*
1
.5
)
!
important
;
margin-left
:
(
$spacer-x
*
1
.5
)
!
important
;
}
.m-y-md
{
margin-top
:
(
$spacer-y
*
1
.5
)
!
important
;
margin-bottom
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.m-t-lg
{
margin-top
:
(
$spacer-y
*
3
);
}
.m-r-lg
{
margin-right
:
(
$spacer-y
*
3
);
}
.m-b-lg
{
margin-bottom
:
(
$spacer-y
*
3
);
}
.m-l-lg
{
margin-left
:
(
$spacer-y
*
3
);
}
.m-x-lg
{
margin-right
:
(
$spacer-x
*
3
);
margin-left
:
(
$spacer-x
*
3
);
}
.m-y-lg
{
margin-top
:
(
$spacer-y
*
3
);
margin-bottom
:
(
$spacer-y
*
3
);
}
.m-a-lg
{
margin
:
(
$spacer
*
3
)
!
important
;
}
.m-t-lg
{
margin-top
:
(
$spacer-y
*
3
)
!
important
;
}
.m-r-lg
{
margin-right
:
(
$spacer-y
*
3
)
!
important
;
}
.m-b-lg
{
margin-bottom
:
(
$spacer-y
*
3
)
!
important
;
}
.m-l-lg
{
margin-left
:
(
$spacer-y
*
3
)
!
important
;
}
.m-x-lg
{
margin-right
:
(
$spacer-x
*
3
)
!
important
;
margin-left
:
(
$spacer-x
*
3
)
!
important
;
}
.m-y-lg
{
margin-top
:
(
$spacer-y
*
3
)
!
important
;
margin-bottom
:
(
$spacer-y
*
3
)
!
important
;
}
.p-a-0
{
padding
:
0
;
}
.p-t-0
{
padding-top
:
0
;
}
.p-r-0
{
padding-right
:
0
;
}
.p-b-0
{
padding-bottom
:
0
;
}
.p-l-0
{
padding-left
:
0
;
}
// Padding
.p-a
{
padding
:
$spacer
;
}
.p-t
{
padding-top
:
$spacer-y
;
}
.p-r
{
padding-right
:
$spacer-x
;
}
.p-b
{
padding-bottom
:
$spacer-y
;
}
.p-l
{
padding-left
:
$spacer-x
;
}
.p-x
{
padding-right
:
$spacer-x
;
padding-left
:
$spacer-x
;
}
.p-y
{
padding-top
:
$spacer-y
;
padding-bottom
:
$spacer-y
;
}
.p-a
-0
{
padding
:
0
!
important
;
}
.p-t
-0
{
padding-top
:
0
!
important
;
}
.p-r
-0
{
padding-right
:
0
!
important
;
}
.p-b
-0
{
padding-bottom
:
0
!
important
;
}
.p-l
-0
{
padding-left
:
0
!
important
;
}
.p-x
-0
{
padding-left
:
0
!
important
;
padding-right
:
0
!
important
;
}
.p-y
-0
{
padding-top
:
0
!
important
;
padding-bottom
:
0
!
important
;
}
.p-t-md
{
padding-top
:
(
$spacer-y
*
1
.5
);
}
.p-r-md
{
padding-right
:
(
$spacer-y
*
1
.5
);
}
.p-b-md
{
padding-bottom
:
(
$spacer-y
*
1
.5
);
}
.p-l-md
{
padding-left
:
(
$spacer-y
*
1
.5
);
}
.p-x-md
{
padding-right
:
(
$spacer-x
*
1
.5
);
padding-left
:
(
$spacer-x
*
1
.5
);
}
.p-y-md
{
padding-top
:
(
$spacer-y
*
1
.5
);
padding-bottom
:
(
$spacer-y
*
1
.5
);
}
.p-a
{
padding
:
$spacer
!
important
;
}
.p-t
{
padding-top
:
$spacer-y
!
important
;
}
.p-r
{
padding-right
:
$spacer-x
!
important
;
}
.p-b
{
padding-bottom
:
$spacer-y
!
important
;
}
.p-l
{
padding-left
:
$spacer-x
!
important
;
}
.p-x
{
padding-right
:
$spacer-x
!
important
;
padding-left
:
$spacer-x
!
important
;
}
.p-y
{
padding-top
:
$spacer-y
!
important
;
padding-bottom
:
$spacer-y
!
important
;
}
.p-t-lg
{
padding-top
:
(
$spacer-y
*
3
);
}
.p-r-lg
{
padding-right
:
(
$spacer-y
*
3
);
}
.p-b-lg
{
padding-bottom
:
(
$spacer-y
*
3
);
}
.p-l-lg
{
padding-left
:
(
$spacer-y
*
3
);
}
.p-x-lg
{
padding-right
:
(
$spacer-x
*
3
);
padding-left
:
(
$spacer-x
*
3
);
}
.p-y-lg
{
padding-top
:
(
$spacer-y
*
3
);
padding-bottom
:
(
$spacer-y
*
3
);
}
.p-a-md
{
padding
:
(
$spacer
*
1
.5
)
!
important
;
}
.p-t-md
{
padding-top
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.p-r-md
{
padding-right
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.p-b-md
{
padding-bottom
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.p-l-md
{
padding-left
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.p-x-md
{
padding-right
:
(
$spacer-x
*
1
.5
)
!
important
;
padding-left
:
(
$spacer-x
*
1
.5
)
!
important
;
}
.p-y-md
{
padding-top
:
(
$spacer-y
*
1
.5
)
!
important
;
padding-bottom
:
(
$spacer-y
*
1
.5
)
!
important
;
}
.p-a-lg
{
padding
:
(
$spacer
*
3
)
!
important
;
}
.p-t-lg
{
padding-top
:
(
$spacer-y
*
3
)
!
important
;
}
.p-r-lg
{
padding-right
:
(
$spacer-y
*
3
)
!
important
;
}
.p-b-lg
{
padding-bottom
:
(
$spacer-y
*
3
)
!
important
;
}
.p-l-lg
{
padding-left
:
(
$spacer-y
*
3
)
!
important
;
}
.p-x-lg
{
padding-right
:
(
$spacer-x
*
3
)
!
important
;
padding-left
:
(
$spacer-x
*
3
)
!
important
;
}
.p-y-lg
{
padding-top
:
(
$spacer-y
*
3
)
!
important
;
padding-bottom
:
(
$spacer-y
*
3
)
!
important
;
}
// Positioning
.pos-f-t
{
position
:
fixed
;
top
:
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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