diff options
| author | Mark Otto <[email protected]> | 2017-06-16 21:28:29 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-06-16 21:28:29 -0700 |
| commit | c5170db84467abf3a901d7e8df21d8e84a987743 (patch) | |
| tree | c3ef43762b43d22ab93eb7be44d2a22192325e69 | |
| parent | 9fe8f94341f44ed9cfa2d9fdf73f442229fe7517 (diff) | |
| parent | 9f0929013e0c4e5c21acbb7a7e8298c345ea4cac (diff) | |
| download | bootstrap-c5170db84467abf3a901d7e8df21d8e84a987743.tar.xz bootstrap-c5170db84467abf3a901d7e8df21d8e84a987743.zip | |
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
| -rw-r--r-- | js/src/dropdown.js | 8 | ||||
| -rw-r--r-- | package.json | 4 | ||||
| -rw-r--r-- | scss/_list-group.scss | 8 | ||||
| -rw-r--r-- | scss/_variables.scss | 8 |
4 files changed, 13 insertions, 15 deletions
diff --git a/js/src/dropdown.js b/js/src/dropdown.js index acc3ed453..4ed0210a5 100644 --- a/js/src/dropdown.js +++ b/js/src/dropdown.js @@ -250,12 +250,10 @@ const Dropdown = (($) => { if ($(this._menu).hasClass(ClassName.MENURIGHT)) { placement = AttachmentMap.TOPEND } + } else if ($(this._menu).hasClass(ClassName.MENURIGHT)) { + placement = AttachmentMap.BOTTOMEND } - else { - if ($(this._menu).hasClass(ClassName.MENURIGHT)) { - placement = AttachmentMap.BOTTOMEND - } - } + return placement } diff --git a/package.json b/package.json index bedd027e1..b29d1067b 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "css-prefix-docs": "postcss --config build/ --no-map --replace assets/css/docs.min.css", "css-minify": "cleancss --level 1 --source-map --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --source-map --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --source-map --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css", "css-minify-docs": "cleancss --level 1 --source-map --output assets/css/docs.min.css assets/css/docs.min.css", - "js": "npm-run-all js-compile js-minify", + "js": "npm-run-all js-lint js-compile js-minify", "js-docs": "npm-run-all js-lint-docs js-minify-docs", "js-lint": "eslint js/ && eslint --config js/tests/.eslintrc.json --env node build/ Gruntfile.js", "js-lint-docs": "eslint --config js/tests/.eslintrc.json assets/js/", @@ -54,7 +54,7 @@ "dist": "npm-run-all --parallel css js", "test": "npm-run-all dist js-test docs", "watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css && npm run css-docs\"", - "watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile\"", + "watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile-plugins\"", "watch": "npm-run-all --parallel watch-css watch-js" }, "style": "dist/css/bootstrap.css", diff --git a/scss/_list-group.scss b/scss/_list-group.scss index fef2c1532..96fd6f019 100644 --- a/scss/_list-group.scss +++ b/scss/_list-group.scss @@ -19,19 +19,19 @@ .list-group-item-action { width: 100%; // For `<button>`s (anchors become 100% by default though) - color: $list-group-link-color; + color: $list-group-action-color; text-align: inherit; // For `<button>`s (anchors inherit) // Hover state @include hover-focus { - color: $list-group-link-hover-color; + color: $list-group-action-hover-color; text-decoration: none; background-color: $list-group-hover-bg; } &:active { - color: $list-group-link-active-color; - background-color: $list-group-link-active-bg; + color: $list-group-action-active-color; + background-color: $list-group-action-active-bg; } } diff --git a/scss/_variables.scss b/scss/_variables.scss index e106282ed..1a781cd64 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -802,11 +802,11 @@ $list-group-active-border-color: $list-group-active-bg !default; $list-group-disabled-color: $gray-light !default; $list-group-disabled-bg: $list-group-bg !default; -$list-group-link-color: $gray !default; -$list-group-link-hover-color: $list-group-link-color !default; +$list-group-action-color: $gray !default; +$list-group-action-hover-color: $list-group-action-color !default; -$list-group-link-active-color: $list-group-color !default; -$list-group-link-active-bg: $gray-lighter !default; +$list-group-action-active-color: $list-group-color !default; +$list-group-action-active-bg: $gray-lighter !default; // Image thumbnails |
