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
2f598e35
Commit
2f598e35
authored
13 years ago
by
Jacob Thornton
Browse files
Options
Download
Email Patches
Plain Diff
when > 0 rather than when not 0
parent
1aeca545
1 merge request
!1952
Tabulation navigation with Typeahead
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/assets/bootstrap.zip
+0
-0
docs/assets/bootstrap.zip
less/mixins.less
+3
-3
less/mixins.less
with
3 additions
and
3 deletions
+3
-3
docs/assets/bootstrap.zip
+
0
-
0
View file @
2f598e35
No preview for this file type
This diff is collapsed.
Click to expand it.
less/mixins.less
+
3
-
3
View file @
2f598e35
...
...
@@ -485,17 +485,17 @@
// Recursive mixins! <3
// Requires not yet released LESS ;)
.spanX (@index) when
not
(@index
=
0) {
.spanX (@index) when (@index
>
0) {
~".span@{index}" { .span(@index); }
#grid .spanX(@index - 1);
}
.spanX (@index, @child) when
not
(@index
=
0) and (@child) {
.spanX (@index, @child) when (@index
>
0) and (@child) {
~"> .span@{index}" { .span(@index); }
#grid .spanX(@index - 1);
}
.spanX (0) {}
.offsetX (@index) when
not
(@index
=
0) {
.offsetX (@index) when (@index
>
0) {
~".offset@{index}" { .offset(@index); }
#grid .offsetX(@index - 1);
}
...
...
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