fix: 💄 style
This commit is contained in:
parent
d35f234fb5
commit
fe7a273aee
@ -21,6 +21,7 @@
|
|||||||
|
|
||||||
## Work in progress
|
## Work in progress
|
||||||
|
|
||||||
|
- New note style
|
||||||
- OCR image captioning
|
- OCR image captioning
|
||||||
- Swipe through timelines on mobile
|
- Swipe through timelines on mobile
|
||||||
- Admin custom CSS
|
- Admin custom CSS
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "12.118.1-calc.6",
|
"version": "12.118.1-calc.6.1",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -42,6 +42,7 @@ const toggle = () => {
|
|||||||
color: var(--cwFg);
|
color: var(--cwFg);
|
||||||
background: var(--cwBg);
|
background: var(--cwBg);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
transition: background-color 0.25s ease-in-out;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: var(--cwHoverBg);
|
background: var(--cwHoverBg);
|
||||||
|
@ -298,6 +298,11 @@ function readPromo() {
|
|||||||
font-size: 1.05em;
|
font-size: 1.05em;
|
||||||
overflow: clip;
|
overflow: clip;
|
||||||
contain: content;
|
contain: content;
|
||||||
|
transition: background-color 0.25s ease-in-out;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--panelHighlight);
|
||||||
|
}
|
||||||
|
|
||||||
// これらの指定はパフォーマンス向上には有効だが、ノートの高さは一定でないため、
|
// これらの指定はパフォーマンス向上には有効だが、ノートの高さは一定でないため、
|
||||||
// 下の方までスクロールすると上のノートの高さがここで決め打ちされたものに変化し、表示しているノートの位置が変わってしまう
|
// 下の方までスクロールすると上のノートの高さがここで決め打ちされたものに変化し、表示しているノートの位置が変わってしまう
|
||||||
@ -424,11 +429,6 @@ function readPromo() {
|
|||||||
display: flex;
|
display: flex;
|
||||||
padding: 28px 32px 18px;
|
padding: 28px 32px 18px;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
transition: background-color 0.25s ease-in-out;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: var(--panelHighlight);
|
|
||||||
}
|
|
||||||
|
|
||||||
> .avatar {
|
> .avatar {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
@ -452,11 +452,14 @@ function readPromo() {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
background: var(--X3);
|
|
||||||
padding: 6px 10px;
|
> .button {
|
||||||
width: 90%;
|
background: var(--X3);
|
||||||
border-radius: 10px;
|
padding: 6px 10px;
|
||||||
margin-top: 10px;
|
width: 90%;
|
||||||
|
border-radius: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
> .text {
|
> .text {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
|
Loading…
Reference in New Issue
Block a user