Skip to content
Snippets Groups Projects
Commit 155ce981 authored by Sven Kästle's avatar Sven Kästle
Browse files

feat: New style for unstructured upload page

parent 7c70402d
No related branches found
No related tags found
No related merge requests found
ol { body, html {
padding: 0px; height: 100vh;
margin: 0px; width: 100vw;
list-style-type: none;
} }
.mainpage { .content-mainpage {
display: flex; display: flex;
box-sizing: border-box; box-sizing: border-box;
font-family: Arial; font-family: Arial;
height: 100%; height: 100%;
overflow-y: scroll;
flex-flow: column nowrap;
} }
.rightcolumn { .container-fluid-content {
float: right;
width: 25%;
display: inline-block;
/* background-color: blue; */
}
.leftcolumn {
float: left;
width: 75%;
display: inline-block;
/* background-color: yellow; */
}
.rightcontent {
margin: 10px;
}
.leftcontent {
margin: 10px;
/* background-color: white; */
}
.spacing {
height: 10px;
/* background-color: orange; */
}
.annotation-card {
width: 100%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px;
display: inline-block;
background-color: white;
}
.annotation-card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.annotation-header {
padding: 5px;
display: flex;
flex-wrap: wrap;
align-items: center;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
color: white; }
.annotation-header i {
font-size: 11px;
}
.annotation-header span {
font-size: 11px;
margin-left: 5px;
margin-right: 5px;
}
.annotation-header a:link {
color: white;
text-decoration: none;
}
.annotation-header a:visited {
color: white;
text-decoration: none;
}
.annotation-header a:active {
color: white;
text-decoration: none;
}
.annotation-header a:hover {
color: #e6e6e6;
text-decoration: none;
}
.annotation-header-title {
display: flex; display: flex;
flex-flow: column; flex-flow: column;
width: calc(100% - 40px); height: 100%;
}
.annotation-header-toggle {
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.annotation-body {
padding: 8px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.annotation-body p {
margin: 0px;
font-size: 13px;
} }
.overflow-hidden { .full-height {
overflow: hidden; height: 100%;
white-space: nowrap;
text-overflow: ellipsis;
} }
.annotation-footer { .flex {
padding: 5px;
padding-top: 0px;
text-align: right;
font-size: 9px;
color: lightgrey;
display: flex; display: flex;
} }
.annotation-footer span {
margin-left: 5px;
}
.annotation-footer-delete {
margin-right: 5px;
cursor: pointer;
}
.annotation-footer-date {
flex: 1
}
.unstructured-textarea {
resize: none;
}
.document-text-buttons { .document-text-buttons {
margin-top: 10px; margin-bottom: 15px;
margin-top: 15px;
display: inline; display: inline;
} }
.document-text-buttons-lock {
float: left;
}
.document-text-buttons-back { .document-text-buttons-back {
float: left; float: left;
} }
.document-text-buttons-save { .document-text-buttons-next {
float: right; float: right;
} }
.file-upload-area {
background-color: blue;
height: 20%;
}
.upload-text {
display: flex;
flex-flow: column;
height: 100%;
}
.upload-text-textarea {
resize: none;
flex: 1;
}
.flex .container-fluid{
flex: 1;
}
...@@ -11,21 +11,7 @@ ...@@ -11,21 +11,7 @@
<!-- css - upload-unstructured --> <!-- css - upload-unstructured -->
<link rel="stylesheet" type="text/css" href="../assets/css/upload-unstructured.css"> <link rel="stylesheet" type="text/css" href="../assets/css/upload-unstructured.css">
<!-- css - contextMenu -->
<link href="https://swisnl.github.io/jQuery-contextMenu/dist/jquery.contextMenu.css" rel="stylesheet" type="text/css" />
<!-- js - jQuery validation plugin -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.14.0/jquery.validate.min.js"></script>
<!-- js - jQuery ui position -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" type="text/javascript"></script>
<!-- js - contextMenu script -->
<script src="https://swisnl.github.io/jQuery-contextMenu/dist/jquery.contextMenu.js" type="text/javascript"></script>
<!-- js - annotation websocket script -->
<script src="../assets/js/annotationWebsocket.js"></script>
<!-- js - annotation REST script -->
<script src="../assets/js/annotationRest.js"></script>
<!-- js - annotationScript -->
<script src="../assets/js/annotationScript.js"></script>
</head> </head>
<body> <body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment