aboutsummaryrefslogtreecommitdiff
path: root/src/components/PluginSettings/styles.css
diff options
context:
space:
mode:
authorSwishilicous <paige.git@gmail.com>2023-01-13 17:25:24 -0600
committerGitHub <noreply@github.com>2023-01-14 00:25:24 +0100
commit0e5b8b07c99f3ab54c576a58ac3f59721d4f9904 (patch)
tree360f1a12a116f899c55cf4338f301e28353794a9 /src/components/PluginSettings/styles.css
parent7582feb60352f19b7f8f6750c5be624bbf6baafa (diff)
downloadVencord-0e5b8b07c99f3ab54c576a58ac3f59721d4f9904.tar.gz
Vencord-0e5b8b07c99f3ab54c576a58ac3f59721d4f9904.tar.bz2
Vencord-0e5b8b07c99f3ab54c576a58ac3f59721d4f9904.zip
make plugin cards prettier (#389)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/components/PluginSettings/styles.css')
-rw-r--r--src/components/PluginSettings/styles.css19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/components/PluginSettings/styles.css b/src/components/PluginSettings/styles.css
index c48ce0c..fe8dc94 100644
--- a/src/components/PluginSettings/styles.css
+++ b/src/components/PluginSettings/styles.css
@@ -24,13 +24,21 @@
}
.vc-plugins-card {
- background-color: var(--background-modifier-selected);
+ background-color: var(--background-secondary-alt);
color: var(--interactive-active);
- border-radius: 3px;
+ border-radius: 8px;
display: block;
height: 100%;
padding: 10px;
width: 100%;
+ transition: 0.1s ease-out;
+ transition-property: box-shadow, transform, background, opacity;
+}
+
+.vc-plugins-card:hover {
+ background-color: var(--background-tertiary);
+ transform: translateY(-1px);
+ box-shadow: var(--elevation-high);
}
.vc-plugins-info-button {
@@ -41,6 +49,10 @@
margin-right: 8px;
}
+.vc-plugins-settings-button:hover {
+ color: var(--interactive-hover);
+}
+
.vc-plugins-filter-controls {
display: grid;
height: 40px;
@@ -61,7 +73,7 @@
}
.vc-plugins-note {
- height: 40px;
+ height: 36px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
@@ -77,6 +89,7 @@
align-items: center;
flex-grow: 1;
gap: 8px;
+ cursor: "default";
}
.vc-plugins-flex {