diff options
| author | Mark Otto <[email protected]> | 2016-10-30 15:21:53 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-10-30 15:21:53 -0700 |
| commit | d1171ac44ad05a1b7244900b690840093d3e5573 (patch) | |
| tree | bbd5167a8ad1039bd376616438342e3d9e729f9e /docs/dist/css/bootstrap-flex.css | |
| parent | b718b716270243f66e04fe87616aa688cb3ebb10 (diff) | |
| download | bootstrap-d1171ac44ad05a1b7244900b690840093d3e5573.tar.xz bootstrap-d1171ac44ad05a1b7244900b690840093d3e5573.zip | |
grunt
Diffstat (limited to 'docs/dist/css/bootstrap-flex.css')
| -rw-r--r-- | docs/dist/css/bootstrap-flex.css | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/docs/dist/css/bootstrap-flex.css b/docs/dist/css/bootstrap-flex.css index 33801067a..0c73e1be5 100644 --- a/docs/dist/css/bootstrap-flex.css +++ b/docs/dist/css/bootstrap-flex.css @@ -3600,9 +3600,10 @@ tbody.collapse.active { position: relative; z-index: 2; -webkit-box-flex: 1; - -webkit-flex: 1 1 0%; - -ms-flex: 1 1 0%; - flex: 1 1 0%; + -webkit-flex: 1 1 auto; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; margin-bottom: 0; } @@ -5372,13 +5373,32 @@ base::-moz-progress-bar, } .list-group { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -webkit-flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; padding-left: 0; margin-bottom: 0; } .list-group-item { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; position: relative; - display: block; padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #fff; |
