mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
9b66f00484
Summary: Ref T4843. - The token award buttons are just icons. - The tokens themselves are just icons. - Also spread the tokens out a tiny bit, they feel a little tight to me right now. Test Plan: Used VoiceOver to read out tokens and token actions. Looked at an object with several token awards. Reviewers: chad, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4843 Differential Revision: https://secure.phabricator.com/D8982
24 lines
363 B
CSS
24 lines
363 B
CSS
/**
|
|
* @provides tokens-css
|
|
*/
|
|
|
|
button.token-button {
|
|
background: #f7f7f7;
|
|
border: 1px solid {$lightblueborder};
|
|
position: relative;
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: 12px;
|
|
margin: 4px;
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.token-grid {
|
|
text-align: center;
|
|
}
|
|
|
|
.token-icon + .token-icon {
|
|
margin-left: 4px;
|
|
}
|