mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
2c691ef009
Summary: Fixes T12205. These got over-ridden at a global scale (correctly) and need to adjust local scopes better. Also make it more bluer. Test Plan: Go to Edit Dashboard, and pick a new icon for a Dashboard. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12205 Differential Revision: https://secure.phabricator.com/D17312
42 lines
742 B
CSS
42 lines
742 B
CSS
/**
|
|
* @provides phui-icon-set-selector-css
|
|
*/
|
|
|
|
button.icon-button {
|
|
background-color: #F7F7F9;
|
|
background-image: linear-gradient(to bottom, #ffffff, #f1f0f1);
|
|
border: 1px solid rgba({$alphablue},.2);
|
|
color: {$darkgreytext};
|
|
position: relative;
|
|
width: 16px;
|
|
height: 16px;
|
|
padding: 12px;
|
|
margin: 4px;
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
button.icon-button:hover {
|
|
border: 1px solid rgba({$alphablue},.5);
|
|
}
|
|
|
|
button.icon-button .phui-icon-view {
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.icon-grid {
|
|
text-align: center;
|
|
}
|
|
|
|
.icon-icon + .icon-icon {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
button.icon-button.selected {
|
|
border: 1px solid {$sky};
|
|
}
|
|
|
|
button.icon-button.selected .phui-icon-view {
|
|
color: {$sky};
|
|
}
|