-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Bootstrap 4.x.x
- Loading branch information
Showing
46 changed files
with
930 additions
and
1,240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/env', | ||
{ | ||
loose: true, | ||
modules: false, | ||
exclude: [ | ||
'transform-typeof-symbol' | ||
] | ||
} | ||
] | ||
], | ||
plugins: [ | ||
'@babel/proposal-object-rest-spread' | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Export-ignore files (GitHub download link, composer [--prefer-dist]) | ||
# Dont add bower.json, otherwise it is not loaded in the Bower package | ||
docs export-ignore | ||
.* export-ignore | ||
Gruntfile.js export-ignore | ||
README.md export-ignore | ||
package.json export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
*-dist.zip | ||
|
||
# Folders to ignore | ||
_gh_pages | ||
docs/_site | ||
node_modules |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.dropdown-submenu.dropright .dropdown-menu { | ||
margin-left: 1px; | ||
} | ||
|
||
.dropdown-submenu.dropleft .dropdown-menu { | ||
margin-right: 1px; | ||
} | ||
|
||
[x-placement^="bottom-"] .dropdown-submenu .dropdown-menu, | ||
.navbar .dropdown-submenu .dropdown-menu { | ||
bottom: auto; | ||
margin-top: calc(-0.5rem - 1px); | ||
} | ||
|
||
[x-placement^="top-"] .dropdown-submenu .dropdown-menu { | ||
top: auto; | ||
bottom: 0; | ||
margin-bottom: calc(-0.5rem - 1px); | ||
} | ||
|
||
.dropdown-submenu.dropright > .dropdown-toggle { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.dropdown-submenu.dropright > .dropdown-toggle::after { | ||
margin-right: -12px; | ||
} |
Oops, something went wrong.