2015-02-02 05:14:56 +01:00
|
|
|
/**
|
2015-03-01 23:45:56 +01:00
|
|
|
* @provides phui-info-view-css
|
2015-02-02 05:14:56 +01:00
|
|
|
*/
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view {
|
2015-02-02 05:14:56 +01:00
|
|
|
border-style: solid;
|
2015-05-08 06:18:57 +02:00
|
|
|
border-width: 1px;
|
2015-02-02 05:14:56 +01:00
|
|
|
margin: 16px;
|
|
|
|
padding: 12px;
|
2015-05-08 06:18:57 +02:00
|
|
|
border-radius: 3px;
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-05-23 20:01:29 +02:00
|
|
|
.device .phui-info-view {
|
2015-02-02 05:14:56 +01:00
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view .phui-form-view {
|
2015-02-02 05:14:56 +01:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view-body {
|
2015-05-08 06:18:57 +02:00
|
|
|
line-height: 1.6em;
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
[Redesign] Swap Slabo for Roboto Slab
Summary: Ref T8099, Moving to Roboto Slab for Document Headers. It's a little less serif-y and fits well with Lato. Also took a pass at cleaning up edge cases in Documents, Diviner, Phriction, Legalpad, and Welcome Screen.
Test Plan: Test Phriction, Diviner, Legalpad, Welcome Screen
Reviewers: btrahan, epriestley
Reviewed By: epriestley
Subscribers: epriestley, Korvin
Maniphest Tasks: T8099
Differential Revision: https://secure.phabricator.com/D13439
2015-06-25 18:20:51 +02:00
|
|
|
.phui-info-view-body tt {
|
|
|
|
padding: 0 2px;
|
|
|
|
background-color: rgba(55,55,55,.1);
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view-actions {
|
2015-02-23 20:03:09 +01:00
|
|
|
margin-top: -3px;
|
|
|
|
margin-bottom: -4px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2015-03-02 01:07:04 +01:00
|
|
|
.phui-info-view-actions .button {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view-head + .phui-info-view-body {
|
2015-02-02 05:14:56 +01:00
|
|
|
padding-top: 4px;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
h1.phui-info-view-head {
|
2015-02-02 05:14:56 +01:00
|
|
|
font-weight: bold;
|
2015-06-26 18:33:03 +02:00
|
|
|
font-size: {$biggerfontsize};
|
2015-05-08 06:18:57 +02:00
|
|
|
line-height: 1.2em;
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view-list {
|
2015-02-02 05:14:56 +01:00
|
|
|
margin: 0 0 0 16px;
|
|
|
|
list-style: disc;
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-view .phui-info-view-actions .button:hover {
|
2015-02-23 20:03:09 +01:00
|
|
|
background: #fff;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-severity-error,
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-error a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
border-color: {$sh-redborder};
|
|
|
|
background: {$sh-redbackground};
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-error a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
color: {$sh-redtext};
|
2015-02-23 20:03:09 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-severity-warning,
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-warning a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
border-color: {$sh-yellowborder};
|
|
|
|
background: {$sh-yellowbackground};
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-warning a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
color: {$sh-yellowtext};
|
2015-02-23 20:03:09 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-severity-notice,
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-notice a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
border-color: {$sh-blueborder};
|
|
|
|
background: {$sh-bluebackground};
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-notice a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
color: {$sh-bluetext};
|
2015-02-23 20:03:09 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-severity-nodata,
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-nodata a.button {
|
2015-02-02 05:14:56 +01:00
|
|
|
border-color: {$lightgreyborder};
|
2015-02-23 20:03:09 +01:00
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-nodata a.button {
|
2015-02-23 20:03:09 +01:00
|
|
|
color: {$greytext};
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-info-severity-success,
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-success a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
border-color: {$sh-greenborder};
|
|
|
|
background: {$sh-greenbackground};
|
2015-02-23 20:03:09 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-success a.button {
|
2015-05-08 18:38:46 +02:00
|
|
|
color: {$sh-greentext};
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.aphront-dialog-body .phui-info-view {
|
2015-05-08 06:18:57 +02:00
|
|
|
margin: 0 0 8px 0;
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-crumbs-view + .phui-info-view {
|
2015-02-02 05:14:56 +01:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-crumbs-view.phui-crumbs-border + .phui-info-view {
|
2015-02-02 05:14:56 +01:00
|
|
|
margin-top: 16px;
|
|
|
|
}
|