nopaque/app/static/css/nopaque.css

110 lines
2.4 KiB
CSS
Raw Normal View History

2021-07-16 08:51:14 +00:00
/* Change navbar height bacause an extended and fixed navbar is used */
.navbar-fixed {
height: 112px;
2020-11-02 08:31:24 +00:00
}
2020-02-03 11:58:40 +00:00
/* add custom bold class */
2021-07-16 08:51:14 +00:00
.bold {font-weight: bold;}
2020-02-03 11:58:40 +00:00
/* Change placholdertext color of file uplaod fields */
2021-07-16 08:51:14 +00:00
::placeholder {
color: #9e9e9e;
2021-07-16 08:51:14 +00:00
opacity: 1;
}
2020-06-25 08:51:51 +00:00
/* preloader circle in the size of a button icon */
.button-icon-spinner {
bottom: -5px !important;
right: 55px !important;
2020-06-25 08:51:51 +00:00
margin-right: 12px !important;
width: 19.5px !important;
height: 19.5px !important;
}
/*
* 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;
}
/* flat-interaction addition to show background color */
.flat-interaction {
background-color: #DCDCDC;
width: 100%;
margin-bottom: 3px;
text-transform: capitalize;
}
.flat-interaction:hover {
background-color: #E6E6FA !important;
}
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
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;
}
2021-05-05 08:05:12 +00:00
.btn-scale-x2 {
transform: scale(2);
}
.btn-scale-x2 .nopaque-icons.service-icon {
2021-05-05 08:05:12 +00:00
font-size: 2.5rem;
}
.nopaque-icons.service-icon[data-service="corpus-analysis"]:empty:before {content: "H";}
.nopaque-icons.service-icon[data-service="file-setup"]:empty:before {content: "E";}
.nopaque-icons.service-icon[data-service="nlp"]:empty:before {content: "G";}
.nopaque-icons.service-icon[data-service="ocr"]:empty:before {content: "F";}
2021-05-05 08:05:12 +00:00
2021-07-16 08:51:14 +00:00
.status-text[data-status]:empty:before {content: attr(data-status);}