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-03-01 23:45:56 +01:00
|
|
|
.device-phone .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
|
|
|
}
|
|
|
|
|
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-05-08 06:18:57 +02:00
|
|
|
font-size: 14px;
|
|
|
|
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-02-02 05:14:56 +01:00
|
|
|
border-color: {$red};
|
|
|
|
background: {$lightred};
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-error a.button {
|
2015-02-23 20:03:09 +01:00
|
|
|
color: {$red};
|
|
|
|
}
|
|
|
|
|
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-02-02 05:14:56 +01:00
|
|
|
border-color: {$yellow};
|
|
|
|
background: {$lightyellow};
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-warning a.button {
|
2015-02-23 20:03:09 +01:00
|
|
|
color: #bc7837;
|
|
|
|
}
|
|
|
|
|
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-02-02 05:14:56 +01:00
|
|
|
border-color: {$blue};
|
|
|
|
background: {$lightblue};
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-notice a.button {
|
2015-02-23 20:03:09 +01:00
|
|
|
color: {$blue};
|
|
|
|
}
|
|
|
|
|
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-02-23 20:03:09 +01:00
|
|
|
border-color: {$green};
|
|
|
|
background: {$lightgreen};
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:01:04 +01:00
|
|
|
.phui-info-severity-success a.button {
|
2015-02-23 20:03:09 +01:00
|
|
|
color: {$green};
|
2015-02-02 05:14:56 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.legalpad .phui-info-view {
|
2015-02-02 05:14:56 +01:00
|
|
|
margin: 0;
|
|
|
|
border-width: 0 0 1px 0;
|
|
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
|
|
}
|
|
|
|
|
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
|
|
|
.aphront-dialog-body .phui-info-view .phui-info-view-list {
|
2015-02-02 05:14:56 +01:00
|
|
|
margin: 0 0 0 16px;
|
|
|
|
list-style: disc;
|
|
|
|
}
|
|
|
|
|
2015-03-01 23:45:56 +01:00
|
|
|
.phui-object-box .phui-info-severity-warning,
|
|
|
|
.aphront-dialog-body .phui-info-severity-warning {
|
2015-02-02 05:14:56 +01:00
|
|
|
color: #bc7837;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|