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
66bb0b4f
Commit
66bb0b4f
authored
Oct 26, 2014
by
Mark Otto
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into need-to-activate-animated-progressbar
parents
05c785bf
554568a1
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
4 deletions
+15
-4
docs/_data/translations.yml
docs/_data/translations.yml
+5
-0
docs/apple-touch-icon.png
docs/apple-touch-icon.png
+0
-0
docs/assets/css/docs.min.css
docs/assets/css/docs.min.css
+1
-1
docs/assets/css/src/docs.css
docs/assets/css/src/docs.css
+8
-2
grunt/bs-commonjs-generator.js
grunt/bs-commonjs-generator.js
+1
-1
No files found.
docs/_data/translations.yml
View file @
66bb0b4f
...
...
@@ -3,6 +3,11 @@
description
:
Bootstrap 中文文档
url
:
http://v3.bootcss.com/
-
name
:
Danish
code
:
da
description
:
Bootstrap på Dansk
url
:
http://getbootstrap.dk/
-
name
:
French
code
:
fr
description
:
Bootstrap en Français
...
...
docs/apple-touch-icon.png
View replaced file @
05c785bf
View file @
66bb0b4f
6.17 KB
|
W:
|
H:
6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
docs/assets/css/docs.min.css
View file @
66bb0b4f
This diff is collapsed.
Click to expand it.
docs/assets/css/src/docs.css
View file @
66bb0b4f
...
...
@@ -882,7 +882,8 @@ h1[id] {
}
/* Tweak display of the code snippets when following an example */
.bs-example
+
.highlight
{
.bs-example
+
.highlight
,
.bs-example
+
.zero-clipboard
+
.highlight
{
margin
:
-15px
-15px
15px
;
border-width
:
0
0
1px
;
border-radius
:
0
;
...
...
@@ -900,7 +901,8 @@ h1[id] {
-webkit-box-shadow
:
none
;
box-shadow
:
none
;
}
.bs-example
+
.highlight
{
.bs-example
+
.highlight
,
.bs-example
+
.zero-clipboard
+
.highlight
{
margin-top
:
-16px
;
margin-right
:
0
;
margin-left
:
0
;
...
...
@@ -1521,6 +1523,10 @@ h1[id] {
.zero-clipboard
{
display
:
block
;
}
.bs-example
+
.zero-clipboard
.btn-clipboard
{
top
:
-16px
;
border-top-right-radius
:
0
;
}
}
...
...
grunt/bs-commonjs-generator.js
View file @
66bb0b4f
...
...
@@ -8,7 +8,7 @@ module.exports = function generateCommonJSModule(grunt, srcFiles, destFilepath)
var
destDir
=
path
.
dirname
(
destFilepath
);
function
srcPathToDestRequire
(
srcFilepath
)
{
var
requirePath
=
path
.
relative
(
destDir
,
srcFilepath
);
var
requirePath
=
path
.
relative
(
destDir
,
srcFilepath
)
.
replace
(
/
\\
/g
,
'
/
'
)
;
return
'
require(
\'
'
+
requirePath
+
'
\'
)
'
;
}
...
...
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