x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<style>
/* hide export for now */ 

li.export-btn, .single-export-btn {
    display: none !important;
}

 #application-search-outer-container {
    padding-top: 2px !important;
}
#dropdown-filters-outer-container {
	grid-template-columns: repeat( auto-fit, minmax(70px, 180px) ) !important;
	justify-content: flex-start !important;
}

/* hide analytics links for now */
a.application-mixpanel-link.external-link {
    display: none;
}
</style>


HTML

<style>

#dropdown-filters-outer-container {
  grid-column: 2/-1;
  display: grid;
  grid-gap: 20px;
  justify-content: space-between;
  width: calc(100% - 200px);
  max-width: calc(100% - 200px);
  grid-template-columns: repeat( auto-fit, minmax(70px, 1fr) );
}
#application-search-outer-container .application-search-left {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#application-search-outer-container .application-searchbar-container {
  max-width: 250px;
  width: unset;
  flex-grow: 1;
  min-width: 180px;
}

</style>