Skip to content

Commit 30a5503

Browse files
authored
Improve overview page button state styles (#180)
1 parent 1c49830 commit 30a5503

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

src/views/webview-app/components/connect-helper/connect-helper.less

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,32 @@
3030
height: 32px;
3131
border-radius: 3px;
3232
color: #ffffff;
33+
transition: 250ms all;
3334

3435
&:hover {
3536
cursor: pointer;
3637
}
3738
}
3839

3940
.connect-helper-connection-string-button {
40-
background-color: rgb(41, 41, 41);
41+
background-color: #292929;
4142
border-color: transparent;
43+
44+
&:hover {
45+
background-color: #393939;
46+
}
4247
}
4348

4449
.connect-helper-connection-form-button {
4550
background: none;
4651
color: var(--vscode-editor-foreground);
4752
border-color: var(--vscode-editor-foreground);
53+
transition: 250ms all;
54+
55+
&:hover {
56+
background-color: #FFFFFF;
57+
color: #292929;
58+
}
4859
}
4960

5061
.connect-connection-string-area {

src/views/webview-app/components/connection-status/connection-status.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
width: 161px;
2727
color: white;
2828
background-color: #13AA52;
29+
transition: 250ms all;
2930

3031
&:hover {
3132
cursor: pointer;
33+
background-color: #3F864B;
3234
}
3335
}

src/views/webview-app/components/info-sprinkle/info-sprinkle.less

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@
44
text-rendering: auto;
55
margin: 0;
66
margin-top: 3px;
7-
vertical-align: middle;
87
}
98

109
.info-sprinkle {
1110
cursor: pointer;
12-
color: rgba(170, 170, 170, 0.7);
11+
color: var(--vscode-editor-foreground);
1312
padding: 0px 5px;
13+
vertical-align: top;
14+
transition: 250ms all;
1415

1516
&:hover {
16-
color: #fbb129;
17+
color: #C3E7CA;
1718
}
1819
}

0 commit comments

Comments
 (0)