diff --git a/CALCKEY.md b/CALCKEY.md index 400cafd3c..21d835f79 100644 --- a/CALCKEY.md +++ b/CALCKEY.md @@ -25,6 +25,7 @@ - Make your password hasn't been pwned - Admin custom CSS - Add back time machine (jump to date) +- Link hover effect - Improve accesibility score
Current Misskey score is 57/100 @@ -81,7 +82,6 @@ - Allow admins to set logo URL via admin settings - Allow importing follows from Pixelfed - Phosphor icons instead of FontAwesome -- Cool link hover effect - Obliteration of Ai-chan - [Make showing ads optional](https://github.com/misskey-dev/misskey/pull/8996) - [Tapping avatar in mobile opens account modal](https://github.com/misskey-dev/misskey/pull/9056) diff --git a/package.json b/package.json index 778d16605..848f9272d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "12.119.0-calc.8-b.5", + "version": "12.119.0-calc.8-b.6", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/components/MkNotification.vue b/packages/client/src/components/MkNotification.vue index cfc438350..3d2310ae2 100644 --- a/packages/client/src/components/MkNotification.vue +++ b/packages/client/src/components/MkNotification.vue @@ -5,16 +5,16 @@
- - - - - - - - - - + + + + + + + + + + { margin-right: 8px; width: 16px; text-align: center; + transform: translate(0em); } > .title { diff --git a/packages/client/src/style.scss b/packages/client/src/style.scss index 03e1d15ec..f306eb221 100644 --- a/packages/client/src/style.scss +++ b/packages/client/src/style.scss @@ -483,23 +483,23 @@ hr { ._link { color: var(--link); - &::after { - content: ''; - position: absolute; - width: 100%; - transform: scaleX(0); - height: 2px; - bottom: 0; - left: 0; - background-color: var(--link); - transform-origin: bottom right; - transition: transform 0.25s ease-out; -} + // &::after { + // content: ''; + // position: absolute; + // width: 100%; + // transform: scaleX(0); + // height: 2px; + // bottom: 0; + // left: 0; + // background-color: var(--link); + // transform-origin: bottom right; + // transition: transform 0.25s ease-out; + // } -&:hover::after { - transform: scaleX(1); - transform-origin: bottom left; -} + // &:hover::after { + // transform: scaleX(1); + // transform-origin: bottom left; + // } } ._caption {