mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
dd995984eb
Summary: This adds standard 'blues' and start integration of standard colors for text, backgrounds, and borders. Test Plan: sb Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6857
30 lines
543 B
CSS
30 lines
543 B
CSS
/**
|
|
* @provides phui-box-css
|
|
*/
|
|
|
|
.phui-box-shadow {
|
|
border-left: 1px solid #e7e7e7;
|
|
border-right: 1px solid #e7e7e7;
|
|
border-bottom: 1px solid #c0c5d1;
|
|
}
|
|
|
|
.phui-box-shadow .phui-box-inner {
|
|
background-color: #fff;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.phui-box-border {
|
|
border: 1px solid {$lightblueborder};
|
|
border-bottom: 1px solid {$blueborder};
|
|
}
|
|
|
|
.phui-box-border .phui-box-inner {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.device-phone .phui-box {
|
|
border-left: none;
|
|
border-right: none;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|