assets/stylesheets/patternfly/_pagination.scss in patternfly-sass-3.17.0 vs assets/stylesheets/patternfly/_pagination.scss in patternfly-sass-3.20.0
- old
+ new
@@ -60,5 +60,55 @@
margin-top: 2px;
}
}
}
}
+
+.content-view-pf-pagination {
+ background-color: $table-bg-accent;
+ border: 1px solid $table-border-color;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ &.table-view-pf-pagination {
+ border-top: none;
+ }
+ .form-group {
+ align-items: baseline;
+ display: flex;
+ flex-grow: 1;
+ float: left; //IE9 fallback
+ @supports (display: flex) {
+ float: none;
+ }
+ margin: 5px;
+ &:last-child {
+ justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right
+ float: right; //IE9 fallback
+ @supports (display: flex) {
+ float: none;
+ }
+ }
+ .pagination-pf-pagesize.bootstrap-select.btn-group {
+ display: flex;
+ margin-right: 5px;
+ width: auto;
+ }
+ }
+ .pagination-pf-page {
+ margin-left: 10px;
+ margin-right: 5px;
+ padding: 0 2px 2px;
+ text-align: right;
+ width: 2.5em;
+ }
+ .pagination {
+ display: flex;
+ margin: 0 0 0 10px;
+ a {
+ float: none;
+ @supports (display: flex) {
+ display: block;
+ }
+ }
+ }
+}