2013-06-05 17:41:43 +02:00
|
|
|
/**
|
|
|
|
* @provides phui-list-view-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-list-item-header,
|
|
|
|
.phui-list-item-header a {
|
2014-05-29 05:56:20 +02:00
|
|
|
color: {$bluetext};
|
2013-06-05 17:41:43 +02:00
|
|
|
font-weight: bold;
|
2014-05-29 05:56:20 +02:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2013-06-05 17:41:43 +02:00
|
|
|
}
|
2013-06-06 00:03:56 +02:00
|
|
|
|
|
|
|
/* - Sidenav and Actions -------------------------------------------------------
|
|
|
|
|
|
|
|
Sidebar and Action Menus
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-list-sidenav {
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-sidenav .phui-list-item-type-label .phui-list-item-name {
|
|
|
|
font-weight: bold;
|
2014-05-29 05:56:20 +02:00
|
|
|
color: {$bluetext};
|
|
|
|
padding: 4px 8px 6px 8px;
|
2013-06-06 00:03:56 +02:00
|
|
|
display: block;
|
2014-05-29 05:56:20 +02:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2013-06-06 00:03:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-sidenav .phui-list-item-type-divider {
|
|
|
|
margin: 8px 8px 12px 8px;
|
|
|
|
border-bottom: 1px solid #e7e7e7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-sidenav .phui-list-item-icon {
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-sidenav .phui-list-item-icon + .phui-list-item-name {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-sidenav .phui-list-item-has-icon {
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2013-06-06 20:59:14 +02:00
|
|
|
.phui-list-sidenav .phui-list-item-view {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2013-06-06 00:03:56 +02:00
|
|
|
.phui-list-sidenav .phui-list-item-href {
|
|
|
|
display: block;
|
2013-07-28 22:07:30 +02:00
|
|
|
padding: 4px 16px;
|
2013-06-06 00:03:56 +02:00
|
|
|
clear: both;
|
2014-05-29 05:56:20 +02:00
|
|
|
color: {$darkgreytext};
|
2013-07-28 22:07:30 +02:00
|
|
|
line-height: 18px;
|
2013-06-06 00:03:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-sidenav .phui-list-item-has-icon .phui-list-item-href {
|
|
|
|
padding: 2px 10px;
|
|
|
|
}
|
|
|
|
|
2013-06-06 20:59:14 +02:00
|
|
|
.device-desktop .phui-list-sidenav .phui-list-item-href:hover {
|
2014-05-29 05:56:20 +02:00
|
|
|
background: {$sky};
|
2013-06-06 00:03:56 +02:00
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2014-05-12 19:08:32 +02:00
|
|
|
.device-desktop .phui-list-sidenav .phui-list-item-href:hover .phui-icon-view {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2013-06-06 00:03:56 +02:00
|
|
|
/* - Top, Full Width Navigations -----------------------------------------------
|
|
|
|
|
|
|
|
Sets a page or box with a top navbar
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-list-view.phui-list-navbar {
|
|
|
|
list-style: none;
|
|
|
|
overflow: hidden;
|
|
|
|
border-bottom: 1px solid #e7e7e7;
|
2013-10-22 17:48:12 +02:00
|
|
|
background: {$lightgreybackground};
|
2013-06-06 00:03:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-view.phui-list-navbar > li {
|
|
|
|
list-style: none;
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
border-right: 1px solid #e7e7e7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-view.phui-list-navbar > li > * {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-navbar .phui-list-item-href {
|
2013-10-22 17:48:12 +02:00
|
|
|
color: {$lightbluetext};
|
2013-06-06 00:03:56 +02:00
|
|
|
padding: 8px 16px;
|
|
|
|
font-size: 12px;
|
2013-10-22 17:48:12 +02:00
|
|
|
letter-spacing: 0.5px;
|
2013-06-06 00:03:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-navbar .phui-list-item-selected .phui-list-item-href {
|
2013-10-22 17:48:12 +02:00
|
|
|
background: {$greybackground};
|
|
|
|
color: {$darkbluetext};
|
2013-06-06 00:03:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-navbar .phui-list-item-href:hover {
|
2013-10-22 17:48:12 +02:00
|
|
|
background: #DEE0E4;
|
|
|
|
color: {$darkgreytext};
|
2013-06-06 00:03:56 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-navbar .phui-list-item-icon {
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
display: block;
|
2014-05-12 19:08:32 +02:00
|
|
|
font-size: 14px;
|
2013-06-06 00:03:56 +02:00
|
|
|
}
|
2013-06-06 20:59:14 +02:00
|
|
|
|
|
|
|
.device-phone .phui-list-view.phui-list-navbar > li {
|
|
|
|
float: none;
|
2013-06-06 21:47:40 +02:00
|
|
|
border: none;
|
2013-06-06 20:59:14 +02:00
|
|
|
}
|
2013-10-08 04:29:05 +02:00
|
|
|
|
|
|
|
/* - Status Colors -------------------------------------------------------------
|
|
|
|
|
|
|
|
Colors for navbars
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-list-item-warn .phui-list-item-href {
|
|
|
|
color: #bc7837;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-item-fail .phui-list-item-href {
|
|
|
|
color: {$red};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-item-warn.phui-list-item-selected .phui-list-item-href,
|
|
|
|
.phui-list-item-warn .phui-list-item-href:hover {
|
|
|
|
background: {$lightyellow};
|
|
|
|
color: #bc7837;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-item-fail.phui-list-item-selected .phui-list-item-href,
|
|
|
|
.phui-list-item-fail .phui-list-item-href:hover {
|
|
|
|
background: {$lightred};
|
|
|
|
color: {$red};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-item-warn.phui-list-item-selected .phui-list-item-href:hover {
|
|
|
|
background: #fcf0bd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-list-item-fail.phui-list-item-selected .phui-list-item-href:hover {
|
|
|
|
background: #f5d3d0;
|
|
|
|
}
|
2014-05-20 19:53:16 +02:00
|
|
|
|
|
|
|
/* - Dashboards ------------------------------------------------------------ */
|
|
|
|
|
|
|
|
.dashboard-panel .phui-list-view.phui-list-navbar {
|
|
|
|
border-left: 1px solid {$lightblueborder};
|
|
|
|
border-right: 1px solid {$lightblueborder};
|
2014-05-24 06:48:15 +02:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2014-05-20 19:53:16 +02:00
|
|
|
}
|