silverstripe-dms/scss/_mixins.scss
Robbie Averill 9b42effeb5 FIX Refactor SCSS, convert to more BEM-like names, add admin icon
* 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
2017-05-22 15:20:16 +12:00

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};
}