mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
8 lines
288 B
SCSS
8 lines
288 B
SCSS
|
//** Generate a state for an active list item link
|
||
|
//
|
||
|
// @param {string} $color - the colour to use for the border
|
||
|
// @param {string} $size - the size the border should be, e.g. "8px"
|
||
|
@mixin dmsdocument-actions-active($color, $size: "4px") {
|
||
|
border-bottom: #{$size} solid #{$color};
|
||
|
}
|