57 lines
911 B
SCSS
57 lines
911 B
SCSS
#course {
|
|
#docs {
|
|
#upload_file {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
#doc_list_box {
|
|
height: calc(100% - 54px);
|
|
|
|
#doc_list {
|
|
max-width: 100%;
|
|
|
|
.doc-item {
|
|
&:not(:last-child) {
|
|
margin-bottom: 1em;
|
|
}
|
|
.link {
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#notes_box {
|
|
#notes {
|
|
height: calc(100% - 27.35px);
|
|
border: 2px solid $gray-400;
|
|
border-radius: 0 0 5px 5px;
|
|
padding: 1em 0.5em 1em 0;
|
|
background: $gray-200;
|
|
}
|
|
|
|
#notes_feedback {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
height: 27.35px;
|
|
width: 50%;
|
|
text-align: right;
|
|
|
|
.alert {
|
|
font-size: 0.8em;
|
|
margin: 0;
|
|
padding: 0 0.5em;
|
|
line-height: 27.35px;
|
|
|
|
&.note-error {
|
|
color: $col_main_2;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |