Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/server/database/test_data/page_html_dummy.sql
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ INSERT INTO page_html (name, html) VALUES
How will my organization benefit from sponsoring a Senior Project?
</div>
<div class="content">
<p class="transition hidden"><ul>
<p class="transition invisible"><ul>
<li>Help educate the next generation of software engineers who you might want as employees</li>
<li>
Get the benefits of any work the team does in clarifying your problem, designing a solution,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function UniqueProjectPage({ projectData }) {
</div>
)
}
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui relaxed centered grid">
{project?.poster_thumb && (
<img
Expand Down Expand Up @@ -184,7 +184,7 @@ function UniqueProjectPage({ projectData }) {
</Modal.Actions>
</Modal>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui attached stackable padded grid">
<div className="two column row">
<div className="column">
Expand All @@ -211,7 +211,7 @@ function UniqueProjectPage({ projectData }) {
</div>
</div>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui attached stackable padded grid">
<div className="column">
<div className="ui small header">Synopsis</div>
Expand Down
6 changes: 3 additions & 3 deletions ui/src/components/Tabs/ProjectsTab/WebsiteViewerModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export default function WebsiteViewerModal(props) {
</div>
)
}
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui relaxed centered grid">
{archive?.poster_thumb && (
<img
Expand Down Expand Up @@ -269,7 +269,7 @@ export default function WebsiteViewerModal(props) {
</Modal.Actions>
</Modal>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui attached stackable padded grid">
<div className="two column row">
<div className="column">
Expand All @@ -296,7 +296,7 @@ export default function WebsiteViewerModal(props) {
</div>
</div>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui attached stackable padded grid">
<div className="column">
<div className="ui small header">Synopsis</div>
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/pages/HomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ function HomePage() {
/>
)}
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui divider"></div>

<div className="row">
<h2>Exemplary Projects</h2>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div id="exemplaryProjectsDiv" style={{ marginBottom: "75px" }}>
{/* <!-- Attach exemplary project elements here --> */}
{projects.map((project, idx) => {
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/pages/ProjectsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function ProjectsPage() {
<h2>Projects</h2>
</div>

<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<Input
icon="search"
iconPosition="left"
Expand All @@ -88,7 +88,7 @@ function ProjectsPage() {
})}
/>

<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>

<div id="exemplaryProjectsDiv">
{/* <!-- Attach exemplary project elements here --> */}
Expand Down
4 changes: 2 additions & 2 deletions ui/src/components/pages/ProposalPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ function ProposalPage() {
standard Faculty Course Project Non-Disclosure Agreement which
describes the same process for revealing proprietary information.
</p>
<Divider hidden />
<Divider invisible />
<br />
<Radio
label="Assignment of Limited Use Rights"
Expand Down Expand Up @@ -821,7 +821,7 @@ function ProposalPage() {
Non-Disclosure Agreement which describes the same process for
revealing proprietary information.
</p>
<Divider hidden />
<Divider invisible />
<br />
<Radio
label="Open Source Project"
Expand Down
6 changes: 3 additions & 3 deletions ui/src/components/pages/UniqueProjectPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function UniqueProjectPage({ projectData }) {
</div>
)
}
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui relaxed centered grid">
{project?.poster_thumb && (
<img
Expand Down Expand Up @@ -199,7 +199,7 @@ function UniqueProjectPage({ projectData }) {
</Modal.Actions>
</Modal>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui attached stackable padded grid">
<div className="two column row">
<div className="column">
Expand All @@ -226,7 +226,7 @@ function UniqueProjectPage({ projectData }) {
</div>
</div>
</div>
<div className="ui hidden divider"></div>
<div className="ui invisible divider"></div>
<div className="ui attached stackable padded grid">
<div className="column">
<div className="ui small header">Synopsis</div>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/css/utils/helpers.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
width: 100%;
}

.hidden {
.invisible {
visibility: collapse;
}

Expand Down