Skip to content

Commit

Permalink
Improve overview page button state styles (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anemy authored Oct 9, 2020
1 parent 1c49830 commit 30a5503
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,32 @@
height: 32px;
border-radius: 3px;
color: #ffffff;
transition: 250ms all;

&:hover {
cursor: pointer;
}
}

.connect-helper-connection-string-button {
background-color: rgb(41, 41, 41);
background-color: #292929;
border-color: transparent;

&:hover {
background-color: #393939;
}
}

.connect-helper-connection-form-button {
background: none;
color: var(--vscode-editor-foreground);
border-color: var(--vscode-editor-foreground);
transition: 250ms all;

&:hover {
background-color: #FFFFFF;
color: #292929;
}
}

.connect-connection-string-area {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@
width: 161px;
color: white;
background-color: #13AA52;
transition: 250ms all;

&:hover {
cursor: pointer;
background-color: #3F864B;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
text-rendering: auto;
margin: 0;
margin-top: 3px;
vertical-align: middle;
}

.info-sprinkle {
cursor: pointer;
color: rgba(170, 170, 170, 0.7);
color: var(--vscode-editor-foreground);
padding: 0px 5px;
vertical-align: top;
transition: 250ms all;

&:hover {
color: #fbb129;
color: #C3E7CA;
}
}

0 comments on commit 30a5503

Please sign in to comment.