mirror of
https://github.com/documize/community.git
synced 2025-07-21 06:09:42 +02:00
89 lines
1.5 KiB
SCSS
89 lines
1.5 KiB
SCSS
|
// Copyright 2016 Documize Inc. <legal@documize.com>. 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 <sales@documize.com>.
|
||
|
//
|
||
|
// https://documize.com
|
||
|
|
||
|
a {
|
||
|
// @include ease-in();
|
||
|
color: $color-link;
|
||
|
text-decoration: none;
|
||
|
cursor: pointer;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
||
|
a:focus,
|
||
|
a:hover {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a.admin-link {
|
||
|
text-decoration: none;
|
||
|
font-weight: bold;
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
|