Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced Button Design for Improved User Experience #891

Closed
wants to merge 3 commits into from
Closed
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
8 changes: 7 additions & 1 deletion apps/landing/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4779,4 +4779,10 @@

::-webkit-scrollbar-thumb:hover {
background: grey;
}
}
/* Landing Page Buttons */
.button:hover{
background-color: grey;
color: white;

}
7 changes: 7 additions & 0 deletions apps/signup/signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ body {
.bg-dark {
background-color: #343a40!important;
}
#signDev{
display: flex;
justify-content: center;
align-items: center;

}

.form-control, .form-control:focus, .input-group-addon {
border-color: #e1e1e1;
border-radius: 0;
Expand Down
4 changes: 2 additions & 2 deletions apps/signup/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ <h2 style="margin-top: -.5em;">User Signup</h2>
</select>

<br> <br>
<div class="form-group">
<button type="submit" id="sub" class="btn btn-primary btn-block btn-lg sub-btn" onclick="addUser()" disabled>
<div class="form-group" id="signDev">
<button type="submit" id="sub" class="btn btn-primary btn-block btn-lg sub-btn" onclick="addUser()" disabled>
Please wait ...
</button>
</div>
Expand Down
4 changes: 2 additions & 2 deletions apps/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ <h1 class="h1">caMicroscope</h1>
</div>

<div class="d-md-inline-flex" style="width:20%;">
<div class="pl-md-2 pt-2">
<div class="pl-md-2 pt-2" style="margin: 3px;">
<button type="button" data-bs-toggle="modal" data-bs-target="#dicom"
class="btn btn2 btn-success float-right w-md-100" style="background-color: cadetblue; padding: 7px;" onclick="setDicomParams();"> <i
class="fas fa-server"></i>
<span class="">DICOM</span> </button>
</div>
<div class="pl-md-2 pt-2">
<div class="pl-md-2 pt-2" style="margin: 3px;">
<button type="button" class="btn btn2 btn-success float-right w-md-100" style="padding: 7px;"
onclick="(()=>{location.reload();return false;})()"> <i class="fas fa-sync-alt"></i>
<span class="reload">Reload</span> </button>
Expand Down