2020-11-02 14:41:58 +00:00
|
|
|
/* Fix material icon vertical alignment when nested in various elements */
|
|
|
|
h1 .material-icons, h2 .material-icons, h3 .material-icons, h4 .material-icons,
|
2020-10-29 13:45:55 +00:00
|
|
|
.tab .material-icons {
|
|
|
|
line-height: inherit;
|
2019-07-04 12:59:23 +00:00
|
|
|
}
|
|
|
|
|
2020-10-30 10:00:56 +00:00
|
|
|
main {
|
|
|
|
margin-top: 48px;
|
|
|
|
}
|
|
|
|
|
2020-12-15 13:38:52 +00:00
|
|
|
table.ressource-list tr {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-11-02 08:31:24 +00:00
|
|
|
.parallax-container .parallax {
|
|
|
|
z-index: auto;
|
|
|
|
}
|
|
|
|
|
2020-02-03 11:58:40 +00:00
|
|
|
/* add custom bold class */
|
|
|
|
.bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-10-23 14:11:08 +00:00
|
|
|
/* Change placholdertext color of file uplaod fields */
|
|
|
|
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
|
|
color: #9e9e9e;
|
|
|
|
opacity: 1; /* Firefox */
|
|
|
|
}
|
|
|
|
|
2020-06-25 08:51:51 +00:00
|
|
|
/* preloader circle in the size of a button icon */
|
|
|
|
.button-icon-spinner {
|
2020-07-16 12:00:52 +00:00
|
|
|
bottom: -5px !important;
|
2020-07-22 11:15:55 +00:00
|
|
|
right: 55px !important;
|
2020-06-25 08:51:51 +00:00
|
|
|
margin-right: 12px !important;
|
|
|
|
width: 19.5px !important;
|
|
|
|
height: 19.5px !important;
|
|
|
|
}
|
|
|
|
|
2020-10-29 14:20:30 +00:00
|
|
|
/*
|
|
|
|
* changes preoloader size etc. to fit visually better with the chip status
|
|
|
|
* indicator of jobs
|
|
|
|
*/
|
|
|
|
.status-spinner {
|
|
|
|
margin-bottom: -10px;
|
|
|
|
width: 30px !important;
|
|
|
|
height: 30px !important;
|
|
|
|
}
|
|
|
|
|
2020-07-21 13:30:56 +00:00
|
|
|
/* flat-interaction addition to show background color */
|
|
|
|
|
|
|
|
.flat-interaction {
|
2020-07-22 11:15:55 +00:00
|
|
|
background-color: #DCDCDC;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
text-transform: capitalize;
|
2020-07-21 13:30:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flat-interaction:hover {
|
2020-07-22 11:15:55 +00:00
|
|
|
background-color: #E6E6FA !important;
|
2020-07-21 13:30:56 +00:00
|
|
|
}
|
|
|
|
|
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-04-15 10:49:26 +00:00
|
|
|
.show-if-only-child:not(:only-child) {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
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-04-15 08:32:21 +00:00
|
|
|
.analyse-link[href=""] {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
|
|
|
|
.btn-scale-x2 {
|
|
|
|
transform: scale(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-scale-x2 .service-icon {
|
|
|
|
font-size: 2.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.service-icon[data-service]:before {
|
2020-01-31 12:11:30 +00:00
|
|
|
content: "help";
|
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.service-icon[data-service="corpus-analysis"]:before {
|
2021-03-26 10:35:43 +00:00
|
|
|
content: "H";
|
2020-02-20 09:13:35 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.service-icon[data-service="file-setup"]:before {
|
2021-03-26 10:35:43 +00:00
|
|
|
content: "E";
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.service-icon[data-service="nlp"]:before {
|
2021-03-26 10:35:43 +00:00
|
|
|
content: "G";
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.service-icon[data-service="ocr"]:before {
|
2021-03-26 10:35:43 +00:00
|
|
|
content: "F";
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
|
|
|
|
.status-text[data-status]:before {
|
2020-01-31 12:11:30 +00:00
|
|
|
content: attr(data-status);
|
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
|
|
|
|
.status-color[data-status] {
|
2020-01-31 12:11:30 +00:00
|
|
|
background-color: #f44336 !important; /* ~materialize "red" */
|
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="unprepared"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #9e9e9e !important; /* ~materialize grey */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="submitted"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #9e9e9e !important; /* ~materialize grey */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="queued"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #2196f3 !important; /* ~materialize blue */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="running"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #ffc107 !important; /* ~materialize amber */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="complete"] {
|
2020-01-31 12:11:30 +00:00
|
|
|
background-color: #4caf50 !important; /* ~materialize green */
|
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="prepared"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #4caf50 !important; /* ~materialize green */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[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
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="analysing"] {
|
2020-02-14 14:23:02 +00:00
|
|
|
background-color: #4caf50 !important; /* ~materialize green */
|
2020-01-31 12:11:30 +00:00
|
|
|
}
|
2021-05-05 08:05:12 +00:00
|
|
|
.status-color[data-status="stop analysis"] {
|
2020-01-31 12:11:30 +00:00
|
|
|
background-color: #ff5722 !important; /* ~materialize deep-orange */
|
|
|
|
}
|