// Copyright 2016 Documize Inc. . All rights reserved. // // This software (Documize Community Edition) is licensed under // GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html // // You can operate outside the AGPL restrictions by purchasing // Documize Enterprise Edition and obtaining a commercial license // by contacting . // // https://documize.com a { cursor: pointer; color: $color-link; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; a:focus, a:hover { text-decoration: none; } } a.broken-link { color: map-get($red-shades, 600); text-decoration: line-through; } .no-outline { outline: none !important; border: none !important; box-shadow: none !important; &:active, &:focus { border: none !important; box-shadow: none !important; } } .no-select { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } .cursor-pointer { cursor: pointer; } .cursor-auto { cursor: auto !important; } .no-width { white-space: nowrap; width: 1%; } .absolute-center { margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } .bordered { border: 1px solid map-get($gray-shades, 300); } .hide { display: none; } .display-block { display: block; } .display-inline-block { display: inline-block; } .visible { visibility: visible; } .invisible { visibility: none; } .align-top { vertical-align: top!important; } .align-middle { vertical-align: middle!important; } .text-center { text-align: center; }