chore: widgets are blocks, not all blocks need to connect to the cms; bye bugs
This commit is contained in:
parent
16eb58fe0f
commit
00fd39db89
35 changed files with 77 additions and 48 deletions
|
@ -138,6 +138,13 @@ a {
|
|||
|
||||
& svg {
|
||||
stroke: var(--accent-color);
|
||||
|
||||
&[data-tablericon-name^="arrow-"]:hover,
|
||||
&[data-tablericon-name^="arrow-"]:active,
|
||||
&[data-tablericon-name^="arrow-"]:focus {
|
||||
transform: rotate(0deg);
|
||||
stroke: var(--accent-color-hover);
|
||||
}
|
||||
}
|
||||
|
||||
&.linked-header {
|
||||
|
@ -161,6 +168,11 @@ a {
|
|||
}
|
||||
}
|
||||
|
||||
:is(a:hover, a:active, a:focus) svg[data-tablericon-name^="arrow-"] {
|
||||
transform: rotate(0deg);
|
||||
stroke: var(--accent-color-hover);
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active,
|
||||
|
|
|
@ -9,22 +9,9 @@
|
|||
|
||||
& a {
|
||||
display: flex;
|
||||
|
||||
& > svg {
|
||||
stroke: var(--accent-color);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
& :is(a:hover, a:active, a:focus) svg,
|
||||
& a svg:hover,
|
||||
& a svg:active,
|
||||
& a svg:focus {
|
||||
transform: rotate(0deg);
|
||||
stroke: var(--accent-color-hover);
|
||||
}
|
||||
|
||||
& span.disabled svg {
|
||||
& span.disabled svg[data-tablericon-name^="arrow-"] {
|
||||
cursor: not-allowed;
|
||||
stroke: color-mix(in srgb, var(--text-color), transparent 50%);
|
||||
stroke-width: var(--stroke-width-default);
|
||||
|
|
|
@ -1,7 +1,15 @@
|
|||
.webring-wrapper {
|
||||
margin: var(--sizing-base) 0;
|
||||
|
||||
h3 {
|
||||
& h3 {
|
||||
margin: var(--sizing-2xl) 0 var(--sizing-lg);
|
||||
}
|
||||
|
||||
& .webring-navigation {
|
||||
gap: var(--sizing-sm);
|
||||
|
||||
& a {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue