Commit 66bb0b4f authored by Mark Otto's avatar Mark Otto

Merge branch 'master' into need-to-activate-animated-progressbar

parents 05c785bf 554568a1
...@@ -3,6 +3,11 @@ ...@@ -3,6 +3,11 @@
description: Bootstrap 中文文档 description: Bootstrap 中文文档
url: http://v3.bootcss.com/ url: http://v3.bootcss.com/
- name: Danish
code: da
description: Bootstrap på Dansk
url: http://getbootstrap.dk/
- name: French - name: French
code: fr code: fr
description: Bootstrap en Français description: Bootstrap en Français
......
docs/apple-touch-icon.png

6.17 KB | W: | H:

docs/apple-touch-icon.png

6 KB | W: | H:

docs/apple-touch-icon.png
docs/apple-touch-icon.png
docs/apple-touch-icon.png
docs/apple-touch-icon.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed.
...@@ -882,7 +882,8 @@ h1[id] { ...@@ -882,7 +882,8 @@ h1[id] {
} }
/* Tweak display of the code snippets when following an example */ /* 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; margin: -15px -15px 15px;
border-width: 0 0 1px; border-width: 0 0 1px;
border-radius: 0; border-radius: 0;
...@@ -900,7 +901,8 @@ h1[id] { ...@@ -900,7 +901,8 @@ h1[id] {
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
} }
.bs-example + .highlight { .bs-example + .highlight,
.bs-example + .zero-clipboard + .highlight {
margin-top: -16px; margin-top: -16px;
margin-right: 0; margin-right: 0;
margin-left: 0; margin-left: 0;
...@@ -1521,6 +1523,10 @@ h1[id] { ...@@ -1521,6 +1523,10 @@ h1[id] {
.zero-clipboard { .zero-clipboard {
display: block; display: block;
} }
.bs-example + .zero-clipboard .btn-clipboard {
top: -16px;
border-top-right-radius: 0;
}
} }
......
...@@ -8,7 +8,7 @@ module.exports = function generateCommonJSModule(grunt, srcFiles, destFilepath) ...@@ -8,7 +8,7 @@ module.exports = function generateCommonJSModule(grunt, srcFiles, destFilepath)
var destDir = path.dirname(destFilepath); var destDir = path.dirname(destFilepath);
function srcPathToDestRequire(srcFilepath) { function srcPathToDestRequire(srcFilepath) {
var requirePath = path.relative(destDir, srcFilepath); var requirePath = path.relative(destDir, srcFilepath).replace(/\\/g, '/');
return 'require(\'' + requirePath + '\')'; return 'require(\'' + requirePath + '\')';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment