-
Notifications
You must be signed in to change notification settings - Fork 45
bwst Theme: Optimierung readme.md und theme #10012
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,9 +11,7 @@ | |
| border-radius: 50%; | ||
| display: inline-block; | ||
| box-sizing: border-box; | ||
| width: to-rem(96); | ||
| height: to-rem(96); | ||
| border-width: 10px; | ||
| border-width: 6px; | ||
| animation-duration: 1.5s; | ||
| animation-name: rotation; | ||
|
Comment on lines
+14
to
16
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Durch das Entfernen von content: '';
width: to-rem(96);
height: to-rem(96);
border-width: 6px; |
||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,10 +8,12 @@ | |||||
| font-style: normal; | ||||||
|
|
||||||
| &:focus { | ||||||
| // Outline für Fokus wurde entfernt, ein focus-visible ist aber trotzdem für Tastatursteuerung berücksichtigt | ||||||
| outline: none; | ||||||
|
|
||||||
| .#{$block-classname}__text { | ||||||
| outline: var(--border-width) solid; | ||||||
| outline-offset: to-rem(0.05); | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Der Wert
Suggested change
|
||||||
| border-radius: var(--border-radius); | ||||||
| position: relative; // make sure focus outline is visible and not covered by adjacent element | ||||||
| } | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Der Wert
rgba(8, 35, 48, 0.24)ist hartkodiert. Gemäß derDESIGN_TOKENS.md(Zeile 265) sollte dieser Wert als zentrales Design-Token (z. B.--shadow-color) inglobal.scssdefiniert werden, um Konsistenz und Wartbarkeit zu gewährleisten. Dies betrifft alle Stellen in diesem Pull Request, an denen dieser Farbwert angepasst wurde.