Merge branch 'develop' into feat-1714

This commit is contained in:
かっこかり
2024-07-12 16:38:38 +09:00
committed by GitHub
69 changed files with 1096 additions and 461 deletions

View File

@@ -115,6 +115,10 @@ a {
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
&:focus-visible {
outline-offset: 2px;
}
&:hover {
text-decoration: underline;
}
@@ -145,12 +149,21 @@ rt {
white-space: initial;
}
:focus-visible {
outline: var(--focus) solid 2px;
outline-offset: -2px;
&:hover {
text-decoration: none;
}
}
.ti {
width: 1.28em;
vertical-align: -12%;
line-height: 1em;
&:before {
&::before {
font-size: 128%;
}
}
@@ -232,10 +245,6 @@ rt {
line-height: inherit;
max-width: 100%;
&:focus-visible {
outline: none;
}
&:disabled {
opacity: 0.5;
cursor: default;
@@ -272,13 +281,17 @@ rt {
._help {
color: var(--accent);
cursor: help
cursor: help;
}
._textButton {
@extend ._button;
color: var(--accent);
&:focus-visible {
outline-offset: 2px;
}
&:not(:disabled):hover {
text-decoration: underline;
}