2019-07-05 09:02:24 +00:00
|
|
|
/*
|
|
|
|
* ### Start sticky footer ###
|
|
|
|
* Force the footer to always stay on the bottom of the page regardless of how
|
|
|
|
* little content is on the page.
|
|
|
|
*/
|
2019-07-04 12:59:23 +00:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
2019-07-05 09:02:24 +00:00
|
|
|
/* ### End sticky footer ### */
|
|
|
|
|
2020-02-03 11:58:40 +00:00
|
|
|
/* add custom bold class */
|
|
|
|
.bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2019-09-09 13:02:17 +00:00
|
|
|
/* CSS for clickable th elements in tables. Needed for sortable table data with
|
|
|
|
list js. On click on th header elements will be sorted accordingly. Also a caret
|
|
|
|
indicator will show up how the column is sorted right now.; */
|
|
|
|
.sort {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.sort:after {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
content:"";
|
|
|
|
position: relative;
|
|
|
|
top:-10px;
|
|
|
|
right:-5px;
|
|
|
|
}
|
|
|
|
.sort.asc:after {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-top: 5px solid #000000;
|
|
|
|
content:"";
|
|
|
|
position: relative;
|
|
|
|
top:13px;
|
|
|
|
right:-5px;
|
|
|
|
}
|
|
|
|
.sort.desc:after {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-bottom: 5px solid #000000;
|
|
|
|
content:"";
|
|
|
|
position: relative;
|
|
|
|
top:-10px;
|
|
|
|
right:-5px;
|
|
|
|
}
|
2019-10-24 11:14:15 +00:00
|
|
|
|
|
|
|
/* Sticy side elements */
|
|
|
|
.sticky {
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
top: 80px;
|
|
|
|
padding: 50px;
|
2019-10-30 13:06:23 +00:00
|
|
|
z-index: 999; /* tmp fix */
|
2019-10-24 11:14:15 +00:00
|
|
|
}
|
2020-01-31 12:11:30 +00:00
|
|
|
|
2020-02-05 15:09:59 +00:00
|
|
|
/* class for expert view */
|
|
|
|
.expert-view {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-02-03 11:58:40 +00:00
|
|
|
/* styles for resource lists */
|
2020-01-31 12:11:30 +00:00
|
|
|
.service[data-service]:before {
|
|
|
|
content: "help";
|
|
|
|
}
|
2020-02-20 09:13:35 +00:00
|
|
|
.service[data-service="corpus_analysis"]:before {
|
|
|
|
content: "search";
|
|
|
|
}
|
2020-04-06 08:04:54 +00:00
|
|
|
.service[data-service="file_setup"]:before {
|
2020-01-31 12:11:30 +00:00
|
|
|
content: "burst_mode";
|
|
|
|
}
|
|
|
|
.service[data-service="nlp"]:before {
|
|
|
|
content: "format_textdirection_l_to_r";
|
|
|
|
}
|
|
|
|
.service[data-service="ocr"]:before {
|
|
|
|
content: "find_in_page";
|
|
|
|
}
|
|
|
|
.status[data-status]:before {
|
|
|
|
content: attr(data-status);
|
|
|
|
}
|
|
|
|
.status[data-status] {
|
|
|
|
background-color: #f44336 !important; /* ~materialize "red" */
|
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="unprepared"] {
|
|
|
|
background-color: #9e9e9e !important; /* ~materialize grey */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="submitted"] {
|
|
|
|
background-color: #9e9e9e !important; /* ~materialize grey */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="queued"] {
|
|
|
|
background-color: #2196f3 !important; /* ~materialize blue */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="running"] {
|
|
|
|
background-color: #ffc107 !important; /* ~materialize amber */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="complete"] {
|
2020-01-31 12:11:30 +00:00
|
|
|
background-color: #4caf50 !important; /* ~materialize green */
|
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="prepared"] {
|
|
|
|
background-color: #4caf50 !important; /* ~materialize green */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
|
|
|
.status[data-status="start analysis"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #2196f3 !important; /* ~materialize blue */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2020-02-14 14:23:02 +00:00
|
|
|
.status[data-status="analysing"] {
|
|
|
|
background-color: #4caf50 !important; /* ~materialize green */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
|
|
|
.status[data-status="stop analysis"] {
|
|
|
|
background-color: #ff5722 !important; /* ~materialize deep-orange */
|
|
|
|
}
|