1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 20:15:26 +02:00

add category to document

This commit is contained in:
Harvey Kandola 2017-09-22 17:23:14 +01:00
parent 508ec00c6a
commit f0582e18f7
19 changed files with 334 additions and 58 deletions

View file

@ -7,3 +7,4 @@
@import "toc.scss";
@import "view.scss";
@import "wysiwyg.scss";
@import "space-category-tag.scss";

View file

@ -1,5 +1,10 @@
.document-attachments {
margin: 0;
margin: 0 0 50px 0;
// @include content-container();
> h2 {
color: $color-gray;
}
> .upload-document-files {
margin: 10px 0 0 0;

View file

@ -0,0 +1,53 @@
.document-space {
display: inline-block;
> .caption {
text-transform: uppercase;
color: $color-gray;
font-weight: bold;
font-size: 1rem;
margin: 0 0 10px 0;
}
}
.document-category {
display: inline-block;
margin: 0 0 0 30px;
> .regular-button {
margin-right: 10px;
}
> .caption {
text-transform: uppercase;
color: $color-gray;
font-weight: bold;
font-size: 1rem;
margin: 0 0 10px 0;
}
}
.document-tags {
margin: 20px 0 0 0;
> .caption {
text-transform: uppercase;
color: $color-gray;
font-weight: bold;
font-size: 1rem;
margin: 0 0 10px 0;
}
> .regular-button {
margin-right: 10px;
&:hover {
visibility: visible;
}
> .material-icons {
visibility: hidden;
}
}
}

View file

@ -1,18 +1,25 @@
.zone-document-content {
> .document-header-zone {
padding: 20px 30px;
border: 1px solid $color-stroke;
@include border-radius(3px);
background-color: $color-off-white;
}
.doc-title {
font-size: 2rem;
margin: 30px 0 10px;
margin: 50px 0 10px;
font-weight: normal;
}
.doc-excerpt {
font-size: 1rem;
color: $color-gray;
margin: 0 0 60px;
margin: 0 0 45px;
}
.edit-document-heading {
margin: 30px 0 0 0;
margin: 50px 0 0 0;
.edit-doc-title {
> input {
@ -32,7 +39,7 @@
}
.document-view {
margin: 0 0 50px 0;
margin: 0 0 0 0;
.is-a-page {
@include content-container();
@ -359,7 +366,3 @@
font-size: 1.5em;
margin-bottom: 20px;
}
.document-tags {
margin-top: 15px;
}