Sha256: f407de7c3f2d979481917910784a8409167b9d9d5da22184fc20022a4490e4d0

Contents?: true

Size: 1.3 KB

Versions: 11

Compression:

Stored size: 1.3 KB

Contents

//TODO: for some reason these are missing in our patternfly version
html .pagination-pf-pagesize.btn-group {
  display: flex;
  float: none;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 5px;
  width: auto;
}

// necessary because of !important table margin css from foreman
// https://github.com/theforeman/foreman/blob/develop/app/assets/stylesheets/base.scss#L242
.table + .table-view-pf-pagination {
  margin-top: -6px !important;
}

td, th {
  overflow: auto;
  word-wrap: break-word;
}

// needed because we have overflow set to auto for all td's and it affected the pf4 table
.katello-pf4-table {
  td {
    max-width: 200px;
    overflow: unset;
    word-wrap: break-word;
  }
}
// override foreman's .editable styles, that are conflicting with the patternfly ones
.pf-table-inline-edit {
  .editable {
    background: none;
  }
}

// Patternfly 4's Grid doesn't add margin at the top and bottom
.grid-with-margin {
  margin: 20px 4px;
}

// needed to ensure correct spacing between buttons and the button
// container
.toolbar-pf .form-group {
  .btn,
  .btn-group,
  .btn-container,
  .tooltip-button-helper {
    + .btn,
    + .btn-group,
    + .btn-container,
    + .tooltip-button-helper {
      margin-left: 5px;
    }
  }
}

// Override browser default outline ring on focus
*:focus {
  outline: none;
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
katello-4.0.3 webpack/containers/Application/overrides.scss
katello-4.0.2.1 webpack/containers/Application/overrides.scss
katello-4.0.2 webpack/containers/Application/overrides.scss
katello-4.0.1.2 webpack/containers/Application/overrides.scss
katello-4.0.1.1 webpack/containers/Application/overrides.scss
katello-4.0.1 webpack/containers/Application/overrides.scss
katello-4.0.0 webpack/containers/Application/overrides.scss
katello-4.0.0.rc3.1 webpack/containers/Application/overrides.scss
katello-4.0.0.rc3 webpack/containers/Application/overrides.scss
katello-4.0.0.rc2 webpack/containers/Application/overrides.scss
katello-4.0.0.rc1 webpack/containers/Application/overrides.scss