-
Notifications
You must be signed in to change notification settings - Fork 83
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
Add token for audio dump #166
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
{ | ||
"popover": { | ||
"comment": "Applied to popovers", | ||
"figma": "https://www.figma.com/file/NaNrfXjygZtRgMfHAFHjsp/Components---Windows%2BWeb?node-id=5282%3A497", | ||
"primary": { | ||
"#normal": { | ||
"background": "@theme-background-solid-primary-normal" | ||
} | ||
"popover": { | ||
"comment": "Applied to popovers", | ||
"figma": "https://www.figma.com/file/NaNrfXjygZtRgMfHAFHjsp/Components---Windows%2BWeb?node-id=5282%3A497", | ||
"primary": { | ||
"#normal": { | ||
"background": "@theme-background-solid-primary-normal" | ||
} | ||
}, | ||
"audio-dump": { | ||
"#normal": { | ||
"background": "@theme-overlay-audiodump-primary-normal" | ||
} | ||
}, | ||
"audio-dump-file-record": { | ||
"#normal": { | ||
"background": "@theme-overlay-audiodump-secondary-normal" | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,6 +203,14 @@ | |
"overlay": { | ||
"meetings": { | ||
"normal": "@color-black-alpha-70" | ||
}, | ||
"audiodump": { | ||
"primary": { | ||
"normal": "@color-white-alpha-11" | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. most of the things needed by audiodump are already defined and i don't think needs to be added. Components should be general things that are used to build a feature. |
||
"secondary": { | ||
"normal": "@color-white-alpha-11" | ||
} | ||
} | ||
}, | ||
"indicator": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,6 +203,14 @@ | |
"overlay": { | ||
"meetings": { | ||
"normal": "@color-white-alpha-70" | ||
}, | ||
"audiodump": { | ||
"primary": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the theme-data colours should only be ones defined by ux. these have already been defined for example color-gray-10 is defined as "@theme-background-solid-secondary-normal" we should be using existing colours to build components from. We should not be adding to this file |
||
"normal": "@color-gray-10" | ||
}, | ||
"secondary": { | ||
"normal": "@color-black-alpha-11" | ||
} | ||
} | ||
}, | ||
"indicator": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
audio dump is too specific in the popover component this should be added as secondary. Also this is already defined within modal which you could use