mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
9b42effeb5
* Remove "small" class from inline edit form for documents * Swap relationeditor GridFieldConfig for record editor to ensure that document sets can be deleted from a page context rather than unlinked (natively) * Fix to ensure that related documents can be autocompleted via partial matching on filename * Add 2 space indentation rule to editorconfig for .js and .scss files
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};
|
|
}
|