Skip to content

Commit a25af69

Browse files
arn-the-long-beardMartinKavik
authored andcommitted
feature(seed_styles): added pseudo class focus-visible
1 parent 3543250 commit a25af69

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

seed_styles/src/style.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,7 @@ pub enum Pseudo {
801801
FirstLine,
802802
FirstOfType,
803803
Focus,
804+
FocusVisible,
804805
FocusWithin,
805806
Hover,
806807
InRange,
@@ -844,6 +845,7 @@ impl Pseudo {
844845
Pseudo::FirstLine => "::first-line".to_string(),
845846
Pseudo::FirstOfType => ":first-of-type".to_string(),
846847
Pseudo::Focus => ":focus".to_string(),
848+
Pseudo::FocusVisible => ":focus-visible".to_string(),
847849
Pseudo::FocusWithin => ":focus-within".to_string(),
848850
Pseudo::Hover => ":hover".to_string(),
849851
Pseudo::InRange => ":in-range".to_string(),

0 commit comments

Comments
 (0)