Skip to content

Commit

Permalink
fix btns css (#5491)
Browse files Browse the repository at this point in the history
  • Loading branch information
octavioamu authored and danlipert committed Nov 13, 2019
1 parent 3137d6d commit 38a08e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 23 deletions.
16 changes: 0 additions & 16 deletions app/assets/v2/css/bounty.css
Original file line number Diff line number Diff line change
Expand Up @@ -346,22 +346,6 @@ a.btn {
text-align: center;
}

.started-status-column .button--primary,
#right_actions .button--primary,
#btn-white {
padding: 6px 15px;
box-shadow: none;
font-size: 12px;
}

#right_actions .button--primary {
margin-right: 5px;
position: relative;
top: 1px;
display: inline-block;
margin-bottom: 10px;
}

.sticky {
position: fixed;
top: 0;
Expand Down
15 changes: 8 additions & 7 deletions app/assets/v2/css/forms/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
color: #fff;
cursor: pointer;
font-size: 14px;
padding: 6px 20px;
padding: 5px 20px;
border: 1px solid transparent;
}

.button:hover {
Expand All @@ -24,17 +25,17 @@
}

.button--primary:hover {
background-color: #3f00ff;
background-color: var(--gc-blue-hover);
}

.button--secondary {
color: #3E00FF;
border: 1px solid #3E00FF;
color: var(--gc-blue);
border: 1px solid var(--gc-blue);
}

.button--secondary:hover {
color: #3f00ff;
border-color: #3f00ff;
color: var(--gc-blue-hover);
border-color: var(--gc-blue-hover);
}

.button--primary-o {
Expand Down Expand Up @@ -63,4 +64,4 @@
.button__small {
padding: 5px 10px;
font-size: 12px;
}
}

0 comments on commit 38a08e7

Please sign in to comment.