2018-07-17 18:51:56 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
.woocommerce-layout__activity-panel-outbound-link {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
height: 50px;
|
|
|
|
background: $core-grey-light-200;
|
|
|
|
border-bottom: 1px solid $core-grey-light-400;
|
2018-09-11 07:27:13 +00:00
|
|
|
padding: $gap $fallback-gutter;
|
2018-07-17 18:51:56 +00:00
|
|
|
padding: $gap $gutter;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 18px;
|
|
|
|
margin: 0;
|
|
|
|
color: $woocommerce;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
.gridicon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $white;
|
|
|
|
color: $woocommerce;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: $core-grey-light-100;
|
2018-07-25 14:25:08 +00:00
|
|
|
color: $woocommerce-700;
|
2018-07-17 18:51:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
color: $woocommerce;
|
|
|
|
background: $core-grey-light-200;
|
|
|
|
box-shadow: inset 0 0 0 1px $box-shadow-blue, inset 0 0 0 2px #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
.gridicon {
|
|
|
|
display: initial;
|
|
|
|
color: $woocommerce;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
.gridicon {
|
|
|
|
display: initial;
|
2018-07-25 14:25:08 +00:00
|
|
|
color: $woocommerce-700;
|
2018-07-17 18:51:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|