mirror of
https://github.com/documize/community.git
synced 2025-07-22 14:49:42 +02:00
1. Sidebar contains ToC & attachments. 2. Document meta moved up before content (to frame context). 3. Per section toolbar re-designed. Co-Authored-By: Harvey Kandola <harvey@documize.com>
53 lines
1.1 KiB
SCSS
53 lines
1.1 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
|
|
|
|
.text-truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.text-upper {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.text-case-normal {
|
|
text-transform: none !important;
|
|
}
|
|
|
|
.bold-100 { font-weight: 100; }
|
|
.bold-200 { font-weight: 200; }
|
|
.bold-300 { font-weight: 300; }
|
|
.bold-400 { font-weight: 400; }
|
|
.bold-500 { font-weight: 500; }
|
|
.bold-600 { font-weight: 600; }
|
|
.bold-700 { font-weight: 700; }
|
|
.bold-800 { font-weight: 800; }
|
|
.bold-900 { font-weight: 900; }
|
|
|
|
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
|
|
body {
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
}
|