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

upgraded Ember and Bootstrap, merged changes

This commit is contained in:
sauls8t 2018-01-22 10:31:03 +00:00
parent b4fd42da38
commit 5dd7d9c181
114 changed files with 9814 additions and 1361 deletions

View file

@ -0,0 +1,55 @@
.document-copy-move {
> .documents-list {
margin: 0;
padding: 0;
width: 100%;
> .document {
@include ease-in();
margin: 0 0 5px 0;
padding: 10px 15px;
color: $color-gray;
background-color: $color-off-white;
cursor: pointer;
position: relative;
list-style-type: none;
&:hover {
color: $color-black;
}
> .title {
color : $color-off-black;
font-size: 1rem;
}
> .space {
color : $color-gray;
font-size: 0.8rem;
font-style: italic;
font-weight: bold;
margin-bottom: 10px;
}
> .snippet {
color : $color-gray;
font-size: 0.9rem;
}
> .material-icons {
position: absolute;
top: 10px;
right: 10px;
color: $color-white;
}
}
> .selected {
background-color: $color-link !important;
> .title, .space, .snippet {
color: $color-white !important;
}
}
}
}

View file

@ -1,3 +1,7 @@
.document-tabnav {
margin: 50px 0 100px 0;
}
.document-structure {
margin: 0 0 0 0;
@ -15,6 +19,14 @@
display: inline-block;
}
> .page-state-pending {
color: $color-red;
}
> .page-state-review {
color: $color-green;
}
> .page-title {
display: inline-block;
font-size: 1.8rem;

View file

@ -1,4 +1,5 @@
@import "add-section.scss";
@import "copy-move.scss";
@import "doc-meta.scss";
@import "doc-structure.scss";
@import "doc-toc.scss";
@ -6,5 +7,4 @@
@import "view-attachment.scss";
@import "view-activity.scss";
@import "view-revision.scss";
@import "wysiwyg.scss";
@import "wysiwyg.scss";

View file

@ -1,66 +1,64 @@
.view-activity {
> .items {
list-style-type: none;
margin: 0;
margin: 50px;
.title {
font-size: 1.8rem;
font-weight: bold;
margin: 0 0 30px 0;
color: $color-gray;
}
> .list {
margin: 0 0 50px 0;
padding: 0;
white-space: nowrap;
width: 100%;
> .item {
margin: 0;
padding: 15px 0;
width: 100%;
@include ease-in();
list-style: none;
padding: 10px 0;
margin: 5px 0;
white-space: nowrap;
position: relative;
> .avatar-box {
display: inline-block;
cursor: default;
position: relative;
overflow: hidden;
width: 35px;
height: 35px;
line-height: 34px;
padding: 0;
border-radius: 50%;
text-align: center;
font-weight: bold;
background-color: $color-gray;
color: $color-white;
vertical-align: middle;
margin: 0 20px 0 0;
> .dash {
position: absolute;
top: 19px;
left: -20px;
background-color: $color-border;
height: 3px;
width: 10px;
}
> .activity {
> .spacer {
display: inline-block;
padding-left: 10px;
}
> .details {
@include ease-in();
vertical-align: top;
display: inline-block;
> .name {
display: inline-block;
> .doc {
font-size: 1.2rem;
font-weight: normal;
color: $color-off-black;
font-weight: bold;
letter-spacing: 0.5px;
}
> .detail {
display: inline-block;
font-size: 1rem;
> .note {
color: $color-gray;
.viewed {
color: $color-goldy;
}
.added {
color: $color-green;
}
.changed {
color: $color-blue;
}
.deleted {
color: $color-red;
}
font-size: 1rem;
margin-top: 2px;
}
}
}
}
> .list-timeline {
border-left: 5px solid $color-border;
padding-left: 20px;
margin-left: 30px;
}
}