-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f28b8d
commit 6c1b42e
Showing
6 changed files
with
108 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,8 @@ | |
|
||
# Test | ||
/**/_test | ||
_test.* | ||
_test.* | ||
|
||
# Preview | ||
*.kra | ||
*.*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[preview-light]: https://minidiscordthemes.github.io/Snippets/ClippyStatus/preview-light.avif | ||
[preview-dark]: https://minidiscordthemes.github.io/Snippets/ClippyStatus/preview-dark.avif | ||
|
||
# Clippy Status | ||
![Status: working](https://img.shields.io/badge/status-working-green?style=flat-square) | ||
|
||
Become Clippy with this status style. | ||
|
||
| Light mode | Dark mode | | ||
| --------------------------------------------- | ------------------------------------------- | | ||
| ![Clippy Status in light mode][preview-light] | ![Clippy Status in dark mode][preview-dark] | | ||
|
||
## Usage | ||
### `@import` | ||
```css | ||
@import url("https://minidiscordthemes.github.io/Snippets/ClippyStatus/main.css"); | ||
``` | ||
<!-- ### Replugged automatic theme | ||
[Install now](https://replugged.dev/install?identifier=net.saltssaumure.ClippyStatus) | ||
### Replugged manual theme | ||
[Download now](https://github.com/MiniDiscordThemes/Snippets/releases/latest/download/net.saltssaumure.ClippyStatus.asar) --> | ||
### Vencord online theme | ||
``` | ||
https://minidiscordthemes.github.io/Snippets/ClippyStatus/main.css | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
@font-face { | ||
font-family: w95; | ||
src: url("https://saltssaumure.github.io/w9x-discord-theme/font/w95fa.woff2"); | ||
} | ||
|
||
.userProfileOuter__35e59 { | ||
.statusBubble__1a4c3, | ||
.statusBubbleOuter__7e51b, | ||
.statusBubbleOuter__7e51b::before { | ||
background-color: rgb(255, 255, 204); | ||
} | ||
|
||
.statusBubbleOuter__7e51b { | ||
$radius: 12px; | ||
$borderwidth: 1px; | ||
border-radius: $radius; | ||
border: $borderwidth solid black; | ||
|
||
&::before { | ||
$arrow: "left"; | ||
$size: 6px; | ||
$edge: 10px; | ||
|
||
border: 1px solid black; | ||
border-radius: 0; | ||
inset: unset; | ||
|
||
@if $arrow == "up" or $arrow == "down" { | ||
width: $size; | ||
height: $size * 2; | ||
left: $edge; | ||
|
||
@if $arrow == "up" { | ||
transform: skewY(60deg); | ||
top: -$size; | ||
} | ||
@if $arrow == "down" { | ||
transform: skewY(-60deg); | ||
bottom: -$size; | ||
} | ||
} | ||
|
||
@if $arrow == "left" or $arrow == "right" { | ||
height: $size; | ||
width: $size * 2; | ||
top: $edge; | ||
|
||
@if $arrow == "left" { | ||
transform: skewX(60deg); | ||
left: -$size; | ||
} | ||
@if $arrow == "right" { | ||
transform: skewX(-60deg); | ||
right: -$size; | ||
} | ||
} | ||
} | ||
|
||
@at-root .statusBubble__1a4c3 { | ||
border-radius: $radius - 2 * $borderwidth; | ||
padding: 6px; | ||
@at-root .content_faa8bf { | ||
color: black; | ||
@at-root .statusText__32d26 { | ||
color: inherit; | ||
font-family: "w95", var(--font-primary); | ||
} | ||
} | ||
} | ||
|
||
&::after { | ||
display: none; | ||
} | ||
} | ||
} |