mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7bc008d0e2
Summary: Ref T7936, Skeleton of calendar icon infrastructure Test Plan: Navigate to install/calendar/icon/, observe temporary calendar icons Reviewers: epriestley, #blessed_reviewers, chad Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Maniphest Tasks: T7936 Differential Revision: https://secure.phabricator.com/D12928
28 lines
432 B
CSS
28 lines
432 B
CSS
/**
|
|
* @provides calendar-icon-css
|
|
*/
|
|
|
|
button.icon-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;
|
|
}
|
|
|
|
.icon-grid {
|
|
text-align: center;
|
|
}
|
|
|
|
.icon-icon + .icon-icon {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
button.icon-button.selected {
|
|
background: {$bluebackground};
|
|
}
|