-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make feedback widget more prominent (#2682)
- Loading branch information
1 parent
b558951
commit 24c600c
Showing
3 changed files
with
38 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* form itself */ | ||
.md-feedback { | ||
background-color: var(--color-primary-tint-1); | ||
padding: 10px; | ||
} | ||
|
||
.md-feedback fieldset { | ||
} | ||
|
||
/* form title */ | ||
.md-feedback__title { | ||
color: var(--color-primary); | ||
font-size: 1.3rem; | ||
} | ||
|
||
/* container for vote buttons and note */ | ||
.md-feedback__inner { | ||
} | ||
|
||
/* list of rating buttons */ | ||
.md-feedback__list { | ||
} | ||
|
||
/* rating button icons */ | ||
.md-feedback__icon { | ||
} | ||
|
||
.md-feedback__icon svg { | ||
width: 1.5rem; | ||
height: 1.5rem; | ||
} | ||
|
||
/* post-submission note */ | ||
.md-feedback__note { | ||
} |
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