webpack/containers/Application/overrides.scss in katello-4.2.2 vs webpack/containers/Application/overrides.scss in katello-4.3.0.rc1
- old
+ new
@@ -12,13 +12,16 @@
// 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;
+// don't use this class if you need a dropdown menu to extend outside the table cell
+.neat-table-cells {
+ 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 {
@@ -60,6 +63,34 @@
outline: none;
}
.tab-body-with-spacing {
margin: 24px 0px;
+}
+
+.pf-l-bullseye .pf-c-modal-box {
+ margin-top: 76px;
+ max-height: calc(100vh - 76px);
+ @media (min-width: 768px) {
+ max-width: calc(100vw - 240px);
+ margin-left: 200px;
+ }
+}
+
+@keyframes hideme {
+ 0%, 70% {
+ opacity: 1;
+ }
+
+ 100% {
+ opacity: 0;
+ }
+}
+
+.tooltip {
+ margin:auto;
+ animation-direction: normal;
+ animation-name: hideme;
+ animation-duration: 2s;
+ animation-iteration-count: 1;
+ animation-fill-mode: forwards;
}