-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added descriptions to all default theme styles (#949)
* A bunch of theme descriptions * The rest of the descriptions
- Loading branch information
Showing
36 changed files
with
321 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/* The root class of the accordion pane */ | ||
.root { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,64 @@ | ||
/* The root class for the card */ | ||
.root { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
/* Contains the Card's actions */ | ||
.actions { | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
/* May be added to action buttons supplied by the actionsRenderer */ | ||
.actionButtons { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
/* May be added to action icons supplied by the actionsRenderer */ | ||
.actionIcons { | ||
display: flex; | ||
align-items: center; | ||
flex-grow: 1; | ||
} | ||
|
||
/* May be added to an action to indiciate the desired CTA */ | ||
.primaryAction { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
overflow: hidden; | ||
} | ||
|
||
/* May contain media content */ | ||
.media { | ||
} | ||
|
||
/* May be added to media content */ | ||
.mediaContent { | ||
} | ||
|
||
/* May be added to square media */ | ||
.mediaSquare::before { | ||
margin-top: 100%; | ||
} | ||
|
||
/* May be added to 16:9 media */ | ||
.media16by9::before { | ||
margin-top: 56.25%; | ||
} | ||
|
||
/* May wrap media content */ | ||
.media::before { | ||
display: block; | ||
content: ''; | ||
} | ||
|
||
/* May indicate primary actions */ | ||
.primary { | ||
} | ||
|
||
/* May indicate secondary actions */ | ||
.secondary { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
/* The root class for the checkbox group */ | ||
.root { | ||
} | ||
|
||
/* Added to the legend of the CheckboxGroup */ | ||
.legend { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
/* The root class for a Chip */ | ||
.root { | ||
} | ||
|
||
/* Contains the rendered icon */ | ||
.iconWrapper { | ||
} | ||
|
||
/* Contains the label */ | ||
.label { | ||
} | ||
|
||
/* Contains the close icon */ | ||
.closeIconWrapper { | ||
cursor: pointer; | ||
} | ||
|
||
/* Added to clickable Chips */ | ||
.clickable { | ||
cursor: pointer; | ||
} | ||
|
||
/* Added to disabled Chips */ | ||
.disabled { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.