mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
1c84d2719c
Summary: Ref T8099, Ref T8614. Reasonable attempt at a larger font size PostProcessor, will need additional UI cleanup (places where we fix height) but overall very decent. Test Plan: Use lots of the UI elements with new font sizes. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099, T8614 Differential Revision: https://secure.phabricator.com/D13457
28 lines
447 B
CSS
28 lines
447 B
CSS
/**
|
|
* @provides calendar-icon-css
|
|
*/
|
|
|
|
button.icon-button {
|
|
background: {$lightgreybackground};
|
|
border: 1px solid {$lightblueborder};
|
|
position: relative;
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: 12px;
|
|
margin: 4px;
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.icon-grid {
|
|
text-align: center;
|
|
}
|
|
|
|
.icon-icon + .icon-icon {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
button.icon-button.selected {
|
|
background: {$bluebackground};
|
|
}
|