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-14 21:29:56 -08:00
|
|
|
border-color: rgba({$alphagrey},.1);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box-blue .phui-object-item,
|
|
|
|
.phui-box-grey .phui-object-item {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-box-blue .phui-object-item-link,
|
|
|
|
.phui-box-grey .phui-object-item-link {
|
|
|
|
color: {$darkbluetext};
|
|
|
|
}
|
|
|
|
|
2016-02-13 11:55:14 -08:00
|
|
|
.phui-box-blue .phui-object-item-list-view,
|
|
|
|
.phui-box-grey .phui-object-item-list-view {
|
|
|
|
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
|
|
|
}
|