Skip to content
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

Added support for the search style #28

Merged
merged 1 commit into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/Willow-SemanticUI-Tests/SemanticStyleTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ SemanticStyleTest >> testGeneral [
assert: SemanticStyle for action actions active author basic button buttons close compact default
description disabled divided dividing doubling dropdown field fields fitted fluid form header
hidden icon image info item items label labeled longer metadata negative pointing positive
primary relaxed reply selection stackable sub submit text ui asString
primary relaxed reply search selection stackable sub submit text ui asString
equals:
'action actions active author basic button buttons close compact default description disabled divided dividing doubling dropdown field fields fitted fluid form header hidden icon image info item items label labeled longer metadata negative pointing positive primary relaxed reply selection stackable sub submit text ui'
'action actions active author basic button buttons close compact default description disabled divided dividing doubling dropdown field fields fitted fluid form header hidden icon image info item items label labeled longer metadata negative pointing positive primary relaxed reply search selection stackable sub submit text ui'
]

{ #category : #tests }
Expand Down
6 changes: 6 additions & 0 deletions source/Willow-SemanticUI/SemanticStyle.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,12 @@ SemanticStyle >> row [
cssClasses add: 'row'
]

{ #category : #general }
SemanticStyle >> search [

cssClasses add: 'search'
]

{ #category : #menu }
SemanticStyle >> secondary [

Expand Down