8000 Add custom icon for resizing by ernstmul · Pull Request #338 · appwrite/pink · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add custom icon for resizing #338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll 8000 occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions v2/pink-sb/src/lib/input/Textarea.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,23 @@
outline-offset: calc(var(--border-width-s) * -1);
resize: vertical;
overflow: scroll;
position: relative;

&::-webkit-resizer {
display: none;
}

&::after {
content: '';
position: absolute;
right: 0;
bottom: 0;
width: 16px;
height: 16px;

background: url("data:image/svg+xml,%3Csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M13.7246%205.58224C13.9187%205.45407%2014.1826%205.47583%2014.3535%205.64669C14.5243%205.81756%2014.5461%206.08152%2014.4179%206.2756L14.3535%206.35372L6.35348%2014.3537C6.15822%2014.549%205.84171%2014.549%205.64645%2014.3537C5.45118%2014.1585%205.45118%2013.842%205.64645%2013.6467L13.6464%205.64669L13.7246%205.58224ZM13.7246%209.58224C13.9187%209.45407%2014.1826%209.47583%2014.3535%209.64669C14.5243%209.81756%2014.5461%2010.0815%2014.4179%2010.2756L14.3535%2010.3537L10.3535%2014.3537C10.1582%2014.549%209.84171%2014.549%209.64645%2014.3537C9.45118%2014.1585%209.45118%2013.842%209.64645%2013.6467L13.6464%209.64669L13.7246%209.58224Z'%20fill='%2356565C'/%3E%3C/svg%3E")
no-repeat center/contain;
}

.limits {
color: var(--fgcolor-neutral-tertiary);
Expand Down
0