fix: 💄 style

This commit is contained in:
ThatOneCalculator 2022-08-16 22:47:18 -07:00
parent d35f234fb5
commit fe7a273aee
4 changed files with 16 additions and 11 deletions

View file

@ -21,6 +21,7 @@
## Work in progress
- New note style
- OCR image captioning
- Swipe through timelines on mobile
- Admin custom CSS

View file

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.118.1-calc.6",
"version": "12.118.1-calc.6.1",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -42,6 +42,7 @@ const toggle = () => {
color: var(--cwFg);
background: var(--cwBg);
border-radius: 2px;
transition: background-color 0.25s ease-in-out;
&:hover {
background: var(--cwHoverBg);

View file

@ -298,6 +298,11 @@ function readPromo() {
font-size: 1.05em;
overflow: clip;
contain: content;
transition: background-color 0.25s ease-in-out;
&:hover {
background-color: var(--panelHighlight);
}
//
//
@ -424,11 +429,6 @@ function readPromo() {
display: flex;
padding: 28px 32px 18px;
pointer-events: all;
transition: background-color 0.25s ease-in-out;
&:hover {
background-color: var(--panelHighlight);
}
> .avatar {
flex-shrink: 0;
@ -452,11 +452,14 @@ function readPromo() {
margin: 0;
padding: 0;
overflow-wrap: break-word;
background: var(--X3);
padding: 6px 10px;
width: 90%;
border-radius: 10px;
margin-top: 10px;
> .button {
background: var(--X3);
padding: 6px 10px;
width: 90%;
border-radius: 10px;
margin-top: 10px;
}
> .text {
margin-right: 8px;