x
x
x
x
Only portrait mode is currently supported - please rotate your device.
...
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;
}
#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;
}
.application-header-project-info {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
/* TEMPORARY HIDE EXPORT */
#results-count-container button {
display: none;
}
#error-reload-outer-container {
position: fixed;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
z-index: 5;
background: #11505857;
backdrop-filter: blur(3px);
top: 0;
left: 0;
}
.error-reload-inner {
padding: 50px 40px;
margin: 20px;
background: var(--main-background);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.error-reload-inner h2 {
color: white;
margin-bottom: 30px;
}
.error-reload-inner button {
background: black;
color: white;
border: 1px solid var(--primary-color);
outline: none;
padding: 5px 10px;
font-weight: bold;
font-size: 15px;
cursor: pointer;
}
</style> |
OneValley