mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
1ac28a7127
Summary: Removes setShadow, uses setBorder instead Test Plan: Tested multicolumn, feed, search box, many other areas. Things look less 3d. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8192
19 lines
311 B
CSS
19 lines
311 B
CSS
/**
|
|
* @provides phui-box-css
|
|
*/
|
|
|
|
.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;
|
|
}
|