kopia lustrzana https://github.com/wagtail/wagtail
Add focus-outline mixin to global set
rodzic
2d2953a28a
commit
21b5e3114f
|
@ -2,7 +2,6 @@
|
||||||
@use 'sass:map';
|
@use 'sass:map';
|
||||||
@use 'sass:math';
|
@use 'sass:math';
|
||||||
@use '../tools' as *;
|
@use '../tools' as *;
|
||||||
@use '../../src/components/CommentApp/main.scss' as *;
|
|
||||||
|
|
||||||
.side-panel-open {
|
.side-panel-open {
|
||||||
@apply w-overflow-y-hidden sm:w-overflow-y-auto;
|
@apply w-overflow-y-hidden sm:w-overflow-y-auto;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
@use '../tools' as *;
|
@use '../tools' as *;
|
||||||
@use '../../src/components/CommentApp/main.scss' as *;
|
|
||||||
|
|
||||||
.w-preview {
|
.w-preview {
|
||||||
--w-preview-background-color: var(--w-color-white);
|
--w-preview-background-color: var(--w-color-white);
|
||||||
|
|
|
@ -169,3 +169,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin focus-outline {
|
||||||
|
outline: $focus-outline-width solid theme('colors.focus');
|
||||||
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
@use '../../../scss/settings/variables' as *;
|
@use '../../../scss/settings/variables' as *;
|
||||||
|
@use '../../../scss/tools' as *;
|
||||||
|
|
||||||
$color-comment-separator: theme('colors.border-furniture');
|
$color-comment-separator: theme('colors.border-furniture');
|
||||||
|
|
||||||
|
@ -10,10 +11,6 @@ $color-box-text: theme('colors.text-context');
|
||||||
$box-border-radius: 5px;
|
$box-border-radius: 5px;
|
||||||
$box-padding: 20px;
|
$box-padding: 20px;
|
||||||
|
|
||||||
@mixin focus-outline {
|
|
||||||
outline: theme('colors.focus') solid 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin box {
|
@mixin box {
|
||||||
background-color: $color-box-background;
|
background-color: $color-box-background;
|
||||||
padding: $box-padding;
|
padding: $box-padding;
|
||||||
|
|
Ładowanie…
Reference in New Issue