/** * IBM Confidential * OCO Source Materials * IBM Business Platform: Dashboard * (C) Copyright IBM Corp. 2018, 2020 * The source code for this program is not published or otherwise divested of its trade secrets, * irrespective of what has been deposited with the U.S. Copyright Office **/ @import "../lib/@ba-ui-toolkit/essentials/_essentials.scss"; @mixin user-select($value) { -webkit-touch-callout: $value; -moz-user-select: $value; -khtml-user-select: $value; -webkit-user-select: $value; -ms-user-select: $value; user-select: $value; } @mixin absolute-position($t, $r, $b, $l) { position: absolute; top: $t; right: $r; bottom: $b; left: $l; } @mixin resizePointColors() { @include theming(background-color, ui-01); border: 1px solid; @include theming(border-color, interactive-01); }