2015-02-08 02:06:28 +01:00
|
|
|
/**
|
|
|
|
* @provides phui-action-panel-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-action-panel {
|
|
|
|
position: relative;
|
2015-09-16 18:22:31 +02:00
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid {$lightblueborder};
|
2015-09-16 03:32:01 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
margin: 0 8px;
|
|
|
|
min-height: 108px;
|
2015-09-16 18:22:31 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device .phui-action-panel {
|
|
|
|
margin: 0;
|
2015-02-19 00:43:09 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 03:32:01 +02:00
|
|
|
.phui-action-panel-hitarea {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-09-17 17:22:23 +02:00
|
|
|
.device-desktop .phui-action-panel-hitarea:hover {
|
|
|
|
text-decoration: none;
|
2016-02-15 06:29:56 +01:00
|
|
|
background-color: rgba({$alphawhite},.25);
|
2015-09-17 17:22:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-action-panel-hitarea:hover .phui-icon-view {
|
|
|
|
margin-top: -4px;
|
|
|
|
transition-duration: .2s;
|
|
|
|
}
|
|
|
|
|
2015-09-16 03:32:01 +02:00
|
|
|
.phui-action-panel-table {
|
|
|
|
display: table;
|
|
|
|
height: 80px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-row {
|
|
|
|
display: table-row;
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-icon {
|
2015-09-16 03:32:01 +02:00
|
|
|
width: 64px;
|
2015-02-08 02:06:28 +01:00
|
|
|
text-align: center;
|
2015-09-16 03:32:01 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
display: table-cell;
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-02-09 16:27:54 +01:00
|
|
|
.phui-action-panel-icon a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-icon a:hover .phui-icon-view,
|
|
|
|
.phui-action-panel-icon a:hover .phui-action-panel-bigtext {
|
2015-02-08 02:06:28 +01:00
|
|
|
color: {$blue};
|
|
|
|
}
|
|
|
|
|
2015-02-09 16:27:54 +01:00
|
|
|
.phui-action-panel-icon a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2015-02-08 02:06:28 +01:00
|
|
|
.phui-action-panel-icon .phui-icon-view {
|
2015-09-16 03:32:01 +02:00
|
|
|
font-size: 36px;
|
|
|
|
color: {$lightbluetext};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-header {
|
2015-09-16 03:32:01 +02:00
|
|
|
padding: 8px;
|
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2015-09-16 18:22:31 +02:00
|
|
|
font-weight: bold;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2015-09-17 17:22:23 +02:00
|
|
|
color: {$darkbluetext};
|
|
|
|
display: block;
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-17 17:22:23 +02:00
|
|
|
.phui-action-panel-bigtext .phui-action-panel-subheader {
|
|
|
|
font-size: 28px;
|
2015-09-16 03:32:01 +02:00
|
|
|
color: {$darkbluetext};
|
2015-09-17 17:22:23 +02:00
|
|
|
text-align: center;
|
|
|
|
padding: 0 8px;
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-subheader {
|
2015-09-16 03:32:01 +02:00
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
color: {$darkbluetext};
|
2015-09-16 18:22:31 +02:00
|
|
|
padding: 8px 8px 8px 0;
|
2015-09-16 03:32:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-subheader a {
|
|
|
|
text-decoraction: none;
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-status {
|
|
|
|
padding: 8px 12px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2015-02-21 15:38:27 +01:00
|
|
|
.phui-action-panel-status:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
/* - Red -------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-red {
|
|
|
|
background-color: {$sh-redbackground};
|
|
|
|
border-color: {$sh-redborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-red .phui-action-panel-icon .phui-icon-view {
|
|
|
|
color: {$sh-redicon};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-red .phui-action-panel-header {
|
|
|
|
border-color: {$sh-lightredborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
/* - Orange ----------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-orange {
|
|
|
|
background-color: {$sh-orangebackground};
|
|
|
|
border-color: {$sh-orangeborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-orange .phui-action-panel-icon .phui-icon-view {
|
|
|
|
color: {$sh-orangeicon};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-orange .phui-action-panel-header {
|
|
|
|
border-color: {$sh-lightorangeborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
/* - Yellow ----------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-yellow {
|
2015-09-16 03:32:01 +02:00
|
|
|
background-color: {$sh-yellowbackground};
|
|
|
|
border-color: {$sh-yellowborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-yellow .phui-action-panel-icon .phui-icon-view {
|
2015-09-16 03:32:01 +02:00
|
|
|
color: {$sh-yellowicon};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-yellow .phui-action-panel-header {
|
2015-09-16 03:32:01 +02:00
|
|
|
border-color: {$sh-lightyellowborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
/* - Green ------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
.phui-action-panel-green {
|
|
|
|
background-color: {$sh-greenbackground};
|
|
|
|
border-color: {$sh-greenborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-green .phui-action-panel-icon .phui-icon-view {
|
|
|
|
color: {$sh-greenicon};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-green .phui-action-panel-header {
|
|
|
|
border-color: {$sh-lightgreenborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
/* - Blue ------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-blue {
|
2015-09-16 03:32:01 +02:00
|
|
|
background-color: {$sh-bluebackground};
|
|
|
|
border-color: {$sh-blueborder};
|
2015-02-09 16:27:54 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-blue .phui-action-panel-icon .phui-icon-view {
|
2015-09-16 03:32:01 +02:00
|
|
|
color: {$sh-blueicon};
|
2015-02-09 16:27:54 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-blue .phui-action-panel-header {
|
2015-09-16 03:32:01 +02:00
|
|
|
border-color: {$sh-lightblueborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
/* - Indigo ----------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-indigo {
|
|
|
|
background-color: {$sh-indigobackground};
|
|
|
|
border-color: {$sh-indigoborder};
|
2015-09-16 03:32:01 +02:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-indigo .phui-action-panel-icon .phui-icon-view {
|
|
|
|
color: {$sh-indigoicon};
|
2015-09-16 03:32:01 +02:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-indigo .phui-action-panel-header {
|
|
|
|
border-color: {$sh-lightindigoborder};
|
2015-09-16 03:32:01 +02:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
/* - Violet ----------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-violet {
|
2015-09-16 03:32:01 +02:00
|
|
|
background-color: {$sh-violetbackground};
|
|
|
|
border-color: {$sh-violetborder};
|
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-violet .phui-action-panel-icon .phui-icon-view {
|
2015-09-16 03:32:01 +02:00
|
|
|
color: {$sh-violeticon};
|
|
|
|
}
|
|
|
|
|
2015-09-16 18:22:31 +02:00
|
|
|
.phui-action-panel-violet .phui-action-panel-header {
|
2015-09-16 03:32:01 +02:00
|
|
|
border-color: {$sh-lightvioletborder};
|
2015-02-08 02:06:28 +01:00
|
|
|
}
|
2015-09-16 18:22:31 +02:00
|
|
|
|
|
|
|
/* - Pink ------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
.phui-action-panel-pink {
|
|
|
|
background-color: {$sh-pinkbackground};
|
|
|
|
border-color: {$sh-violetborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-pink .phui-action-panel-icon .phui-icon-view {
|
|
|
|
color: {$sh-pinkicon};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-action-panel-pink .phui-action-panel-header {
|
|
|
|
border-color: {$sh-lightpinkborder};
|
|
|
|
}
|