diff --git a/gemeinsamforschen/src/main/webapp/assets/css/unstructured-annotation.css b/gemeinsamforschen/src/main/webapp/assets/css/unstructured-annotation.css index f509ddcffc0c828ebcbb8f7fb218bec6c7affb33..33154df4201136853d2290ba8bf62413681df9c3 100644 --- a/gemeinsamforschen/src/main/webapp/assets/css/unstructured-annotation.css +++ b/gemeinsamforschen/src/main/webapp/assets/css/unstructured-annotation.css @@ -6,6 +6,11 @@ ol { padding: 0px; margin: 0px; list-style-type: none; + height: 100%; +} +li { + height: calc((100% - 70px) / 8); + min-height: 40px; } .content-mainpage { display: flex; @@ -17,9 +22,10 @@ ol { .rightcolumn { float: right; width: 25%; + height: 100%; + padding: 10px; display: inline-block; overflow: scroll; - /* background-color: blue; */ } .leftcolumn { padding: 10px; @@ -29,7 +35,7 @@ ol { /* background-color: yellow; */ } .rightcontent { - margin: 10px; + height: 100%; } .leftcontent { max-height: 100%; @@ -38,7 +44,7 @@ ol { /* background-color: white; */ } .spacing { - height: 10px; + margin-bottom: 10px; /* background-color: orange; */ } .container-fluid-content { @@ -63,4 +69,31 @@ ol { overflow: scroll; white-space: pre-line; } +.category-card { + min-height: 30px; + height: 100%; + width: 100%; + border-radius: 5px; + font-weight: bold; + font-size: large; + overflow: hidden; +} +.category-card p { + position: relative; + float: left; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + max-width: 100%; +} +.not-added{ + border-style: dashed; + border-color: lightgray; + color: lightgray; +} +.added { + border-style: solid; + border-color: lightgreen; + color: lightgreen; +} diff --git a/gemeinsamforschen/src/main/webapp/pages/unstructured-annotation.jsp b/gemeinsamforschen/src/main/webapp/pages/unstructured-annotation.jsp index 6b6e4a5b4dbedf9608ff2988633bc6ad72d24bd6..60ee15cfb29e136bc1381661565df8c1ac7b02f2 100644 --- a/gemeinsamforschen/src/main/webapp/pages/unstructured-annotation.jsp +++ b/gemeinsamforschen/src/main/webapp/pages/unstructured-annotation.jsp @@ -49,6 +49,46 @@ <div class="rightcolumn"> <div class="rightcontent"> <ol id="annotations"> + <li class="spacing"> + <div id="titel" class="category-card not-added"> + <p>Titel</p> + </div> + </li> + <li class="spacing"> + <div id="recherche" class="category-card not-added"> + <p>Recherche</p> + </div> + </li> + <li class="spacing"> + <div id="literaturverzeichnis" class="category-card not-added"> + <p>Literaturverzeichnis</p> + </div> + </li> + <li class="spacing"> + <div id="forschungsfrage" class="category-card not-added"> + <p>Forschungsfrage</p> + </div> + </li> + <li class="spacing"> + <div id="untersuchungskonzept" class="category-card not-added"> + <p>Untersuchungskonzept</p> + </div> + </li> + <li class="spacing"> + <div id="methodik" class="category-card not-added"> + <p>Methodik</p> + </div> + </li> + <li class="spacing"> + <div id="durchfuehrung" class="category-card not-added"> + <p>Durchführung</p> + </div> + </li> + <li> + <div id="auswertung" class="category-card not-added"> + <p>Auswertung</p> + </div> + </li> </ol> </div> </div>