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
<script>
const IS_CONFLUENCE_ADMIN = false;
</script>


HTML
<!-- [[ CONFIG SCRIPT]] FILES --> 
<script type="text/javascript" src="https://gsvlabs-confluence-files.s3.us-west-2.amazonaws.com/js/MS+SBA/Judging/AppViewer+V2/Admin/config/judgeAssignmentConfig.js"> </script>
<script type="text/javascript" src="https://gsvlabs-confluence-files.s3.us-west-2.amazonaws.com/js/MS+SBA/Judging/AppViewer+V2/Admin/config/filtersConfig.js"> </script>



HTML
<!-- [[ UTIL SCRIPT]] FILES -->
<script type="text/javascript" src="https://gsvlabs-confluence-files.s3.us-west-2.amazonaws.com/js/MS+SBA/Judging/AppViewer+V2/Admin/util/filtersUtil.js"> </script>


HTML
<!-- [[ STYLESHEETS ]] -->
<link rel="stylesheet" href="https://gsvlabs-confluence-files.s3.us-west-2.amazonaws.com/stylesheets/MS+SBA/applicationJudgingStyles.css"> </link>
<link rel="stylesheet" href="https://gsvlabs-confluence-files.s3.us-west-2.amazonaws.com/stylesheets/MS+Sustainability/judgingViewerMobile.css"> </link>
<link rel="stylesheet" href="https://gsvlabs-confluence-files.s3.us-west-2.amazonaws.com/stylesheets/MS+Sustainability/editApplicationJudgingViewer.css"> </link>

...

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>

...