feat: 💄 New note style
This commit is contained in:
parent
4ef944037f
commit
d35f234fb5
3 changed files with 26 additions and 4 deletions
|
@ -23,7 +23,6 @@
|
||||||
|
|
||||||
- OCR image captioning
|
- OCR image captioning
|
||||||
- Swipe through timelines on mobile
|
- Swipe through timelines on mobile
|
||||||
- vue-plyr as video/audio player
|
|
||||||
- Admin custom CSS
|
- Admin custom CSS
|
||||||
- Add back time machine (jump to date)
|
- Add back time machine (jump to date)
|
||||||
- Improve accesibility score
|
- Improve accesibility score
|
||||||
|
@ -47,7 +46,6 @@
|
||||||
- Self hosted, newly designed error images
|
- Self hosted, newly designed error images
|
||||||
- Illustrated by [Henki](https://www.youtube.com/c/Henkiwashere)!
|
- Illustrated by [Henki](https://www.youtube.com/c/Henkiwashere)!
|
||||||
- Licensed under the CC-BY-SA 4.0.
|
- Licensed under the CC-BY-SA 4.0.
|
||||||
- [Profile background as banner](https://codeberg.org/Freeplay/Misskey-Tweaks/src/branch/main/snippets/profile-background.styl)
|
|
||||||
- Better timeline top bar
|
- Better timeline top bar
|
||||||
- Mark as read from notifications widget
|
- Mark as read from notifications widget
|
||||||
- Less cluttered notification summary
|
- Less cluttered notification summary
|
||||||
|
@ -62,6 +60,7 @@
|
||||||
- Reply limit bug fixed
|
- Reply limit bug fixed
|
||||||
- Make showing the update popup optional
|
- Make showing the update popup optional
|
||||||
- Obliteration of Ai-chan
|
- Obliteration of Ai-chan
|
||||||
|
- vue-plyr as video/audio player
|
||||||
- [Make showing ads optional](https://github.com/misskey-dev/misskey/pull/8996)
|
- [Make showing ads optional](https://github.com/misskey-dev/misskey/pull/8996)
|
||||||
- [OAuth bearer token authentication](https://github.com/misskey-dev/misskey/pull/9021)
|
- [OAuth bearer token authentication](https://github.com/misskey-dev/misskey/pull/9021)
|
||||||
- [Styled Repair Tools](https://github.com/misskey-dev/misskey/pull/8956)
|
- [Styled Repair Tools](https://github.com/misskey-dev/misskey/pull/8956)
|
||||||
|
@ -93,3 +92,5 @@
|
||||||
- 30d8bc9259cb6b72ed76d67b21dbb4cdceca8327: refactor: welcome.setup.vue to composition api
|
- 30d8bc9259cb6b72ed76d67b21dbb4cdceca8327: refactor: welcome.setup.vue to composition api
|
||||||
- 751921e24f37ed707fe44a40d88eebb1299efa35: make emoji picker case insensitive
|
- 751921e24f37ed707fe44a40d88eebb1299efa35: make emoji picker case insensitive
|
||||||
- 298febeb9c9501e3e3df16982c08657d1da474e0: enhance: add re-collapsing to quoted notes
|
- 298febeb9c9501e3e3df16982c08657d1da474e0: enhance: add re-collapsing to quoted notes
|
||||||
|
- A few changed from [Misskey-Tweaks](https://codeberg.org/Freeplay/Misskey-Tweaks)
|
||||||
|
- [Profile background as banner](https://codeberg.org/Freeplay/Misskey-Tweaks/src/branch/main/snippets/profile-background.styl)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "12.118.1-calc.5",
|
"version": "12.118.1-calc.6",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -340,7 +340,7 @@ function readPromo() {
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
color: #d28a3f;
|
color: #f6c177;
|
||||||
|
|
||||||
> i {
|
> i {
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
|
@ -401,6 +401,14 @@ function readPromo() {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
z-index: -1;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
> .dropdownIcon {
|
> .dropdownIcon {
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
|
@ -415,6 +423,12 @@ function readPromo() {
|
||||||
> .article {
|
> .article {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 28px 32px 18px;
|
padding: 28px 32px 18px;
|
||||||
|
pointer-events: all;
|
||||||
|
transition: background-color 0.25s ease-in-out;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--panelHighlight);
|
||||||
|
}
|
||||||
|
|
||||||
> .avatar {
|
> .avatar {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
@ -438,6 +452,11 @@ function readPromo() {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
|
background: var(--X3);
|
||||||
|
padding: 6px 10px;
|
||||||
|
width: 90%;
|
||||||
|
border-radius: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
|
|
||||||
> .text {
|
> .text {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
|
@ -445,6 +464,8 @@ function readPromo() {
|
||||||
}
|
}
|
||||||
|
|
||||||
> .content {
|
> .content {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
&.isLong {
|
&.isLong {
|
||||||
> .showLess {
|
> .showLess {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in a new issue