Skip to content

Commit bb51346

Browse files
authored
Merge pull request #939 from bryk/fix-ie-layout
Fix IE layout issues
2 parents e0149dd + 0d11c5c commit bb51346

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/app/frontend/common/components/actionbar/actionbar.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
<md-toolbar class="kd-toolbar kd-actionbar">
1818
<div class="md-toolbar-tools" layout="row">
19-
<kd-breadcrumbs class="kd-actionbar-breadcrumbs" limit="2" flex></kd-breadcrumbs>
20-
<span flex></span>
19+
<kd-breadcrumbs class="kd-actionbar-breadcrumbs" limit="2" flex="auto"></kd-breadcrumbs>
20+
<span flex="auto"></span>
2121
<ng-transclude ui-view="actionbar"></ng-transclude>
2222
</div>
2323
</md-toolbar>

src/app/frontend/common/components/infocard/infocardsection.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
<div layout="column" class="kd-info-card-section-container">
1818
<div class="kd-info-card-section-name">{{$ctrl.name}}</div>
19-
<div flex ng-transclude="entry"></div>
19+
<div flex="auto" ng-transclude="entry"></div>
2020
</div>

src/app/frontend/common/components/resourcecard/resourcecardlistfooter.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
<div ng-class="{'kd-resource-card-list-footer': $ctrl.shouldShowFooter()}" layout="row">
1818
<span ng-transclude="content" flex="nogrow"></span>
19-
<span ng-transclude="pagination" flex layout="row" class="kd-list-pagination-slot"></span>
19+
<span ng-transclude="pagination" flex="auto" layout="row" class="kd-list-pagination-slot"></span>
2020
</div>

src/app/frontend/common/components/resourcecard/resourcecardlistpagination.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
-->
1616

17-
<div ng-if="$ctrl.shouldShowPagination()" flex layout="row" class="kd-list-pagination">
17+
<div ng-if="$ctrl.shouldShowPagination()" flex="auto" layout="row" class="kd-list-pagination">
1818
<div class="kd-rows-selector-label">
1919
{{$ctrl.i18n.MSG_RESOURCE_CARD_LIST_PAGINATION_ROW_SELECTOR_LABEL}}:
2020
</div>

0 commit comments

Comments
 (0)