mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
4143ecf015
Summary: Ref T4830. - If the application policy is public, allow logged-out users to browse examples. - Use standard elements instead of custom ones. Test Plan: Browsed UIExamples. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T4830 Differential Revision: https://secure.phabricator.com/D8825
51 lines
808 B
CSS
51 lines
808 B
CSS
/**
|
|
* @provides phabricator-ui-example-css
|
|
*/
|
|
|
|
.phabricator-ui-example-note {
|
|
padding: .5em;
|
|
margin: 2em 1em 0.5em;
|
|
background: #ffffdd;
|
|
border: 1px solid #f5e178;
|
|
}
|
|
|
|
.phabricator-ui-example-note tt {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.jxui-example-container {
|
|
padding: 2em;
|
|
margin: 4em auto;
|
|
border: 4px solid black;
|
|
background: #dfdfdf;
|
|
text-align: center;
|
|
width: 50%;
|
|
}
|
|
|
|
.jxui-example-container a {
|
|
margin: 1em;
|
|
}
|
|
|
|
.jxui-example-container a.jxui-active {
|
|
box-shadow: 0 0 30px #ffff00;
|
|
}
|
|
|
|
.jxui-blue-background {
|
|
background: {$blue};
|
|
}
|
|
|
|
.jxui-red-border {
|
|
border-color: {$red};
|
|
}
|
|
|
|
.phui-example-icon-name {
|
|
display: inline-block;
|
|
width: 160px;
|
|
padding-bottom: 8px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.phui-icon-view.phui-example-icon-transform {
|
|
display: block;
|
|
padding-bottom: 8px;
|
|
}
|