2013-04-18 11:34:02 -07:00
|
|
|
/**
|
|
|
|
* @provides phui-box-css
|
|
|
|
*/
|
|
|
|
|
2013-08-26 11:53:11 -07:00
|
|
|
.phui-box-border {
|
2013-09-02 08:10:47 -07:00
|
|
|
border: 1px solid {$lightblueborder};
|
2013-08-26 11:53:11 -07:00
|
|
|
background-color: #fff;
|
2015-05-07 14:11:44 -07:00
|
|
|
border-radius: 3px;
|
2013-08-26 11:53:11 -07:00
|
|
|
}
|
2014-04-18 06:44:45 -07:00
|
|
|
|
|
|
|
.phui-box.focus {
|
|
|
|
box-shadow: 0 0 5px 5px rgba(255, 255, 0, 0.90);
|
|
|
|
}
|
2016-01-20 12:18:01 -08:00
|
|
|
|
|
|
|
.phui-box-grey {
|
2016-02-13 11:55:14 -08:00
|
|
|
background-color: #F7F7F9;
|
2016-01-20 12:18:01 -08:00
|
|
|
border-radius: 3px;
|
2016-02-26 14:34:51 -08:00
|
|
|
border-color: rgba({$alphagrey},.2);
|
2016-01-20 12:18:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box-blue {
|
|
|
|
background-color: {$bluebackground};
|
|
|
|
border-radius: 3px;
|
2016-02-13 11:55:14 -08:00
|
|
|
border-color: {$thinblueborder};
|
2016-01-23 16:02:29 -08:00
|
|
|
}
|
|
|
|
|
2016-12-14 11:35:51 -08:00
|
|
|
.phui-box-blue .phui-oi,
|
|
|
|
.phui-box-grey .phui-oi {
|
2016-01-23 16:02:29 -08:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2016-12-14 11:35:51 -08:00
|
|
|
.phui-box-blue .phui-oi-link,
|
|
|
|
.phui-box-grey .phui-oi-link {
|
2016-01-23 16:02:29 -08:00
|
|
|
color: {$darkbluetext};
|
|
|
|
}
|
|
|
|
|
2016-12-14 11:35:51 -08:00
|
|
|
.phui-box-blue .phui-oi-list-view,
|
|
|
|
.phui-box-grey .phui-oi-list-view {
|
2016-02-13 11:55:14 -08:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box-blue .phui-header-shell {
|
|
|
|
border-color: {$thinblueborder};
|
|
|
|
}
|
|
|
|
|
2016-01-23 16:02:29 -08:00
|
|
|
.phui-box-grey .phui-header-shell {
|
2016-02-14 21:29:56 -08:00
|
|
|
border-color: rgba({$alphagrey},.1);
|
2016-01-23 16:02:29 -08:00
|
|
|
}
|
|
|
|
|
2016-01-24 17:04:55 -08:00
|
|
|
.phui-object-box.phui-box-blue div.phui-info-severity-nodata,
|
|
|
|
.phui-object-box.phui-box-grey div.phui-info-severity-nodata {
|
2016-01-23 16:02:29 -08:00
|
|
|
background: transparent;
|
2016-02-13 11:55:14 -08:00
|
|
|
padding: 20px 4px 24px;
|
2016-01-23 16:02:29 -08:00
|
|
|
text-align: center;
|
2016-01-24 17:04:55 -08:00
|
|
|
border: none;
|
|
|
|
color: {$greytext};
|
2016-01-20 12:18:01 -08:00
|
|
|
}
|
2016-02-26 14:34:51 -08:00
|
|
|
|
|
|
|
|
|
|
|
/* Property Boxes */
|
|
|
|
|
|
|
|
.phui-box.phui-box-blue-property {
|
|
|
|
border-radius: 3px;
|
|
|
|
border-color: {$lightblueborder};
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2016-03-02 20:32:07 -08:00
|
|
|
.phui-box.phui-box-blue-property .phui-header-header .phui-header-icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
2016-03-02 08:45:53 -08:00
|
|
|
.phui-box.phui-box-blue-property .phui-header-action-link {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-02-26 14:34:51 -08:00
|
|
|
.device .phui-box.phui-box-blue-property {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box.phui-object-box.phui-box-blue-property .phui-header-shell {
|
|
|
|
background-color: #eff3fc;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
padding: 6px 16px;
|
|
|
|
}
|
|
|
|
|
2016-04-09 10:07:02 -07:00
|
|
|
body.device .phui-box.phui-box-blue-property .phui-header-shell,
|
|
|
|
body.device .phui-box-blue-property.phui-object-box.phui-object-box-collapsed
|
2016-03-17 12:01:22 -07:00
|
|
|
.phui-header-shell {
|
|
|
|
padding: 6px 12px;
|
2016-04-09 10:07:02 -07:00
|
|
|
margin-top: 0;
|
2016-02-26 14:34:51 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box.phui-box-blue-property .phui-header-header {
|
2016-04-06 23:08:20 +00:00
|
|
|
font-size: {$biggerfontsize};
|
2016-02-26 14:34:51 -08:00
|
|
|
color: {$bluetext};
|
|
|
|
}
|
2016-03-14 18:47:56 -07:00
|
|
|
|
2016-12-14 11:35:51 -08:00
|
|
|
.phui-box-blue-property .phui-oi-list-view {
|
2016-03-14 18:47:56 -07:00
|
|
|
padding: 2px 8px;
|
|
|
|
}
|
2016-03-17 12:01:22 -07:00
|
|
|
|
|
|
|
body .phui-box-blue-property.phui-object-box.phui-object-box-collapsed {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .phui-box-blue-property .phui-header-shell + .phui-object-box {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box-blue-property .phui-header-shell + .phui-object-box
|
|
|
|
.phui-header-shell {
|
|
|
|
background: #fff;
|
|
|
|
}
|