mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 18:09:39 +02:00
125 lines
1.9 KiB
CSS
125 lines
1.9 KiB
CSS
|
|
/*!
|
|
* Copyright (c) 2025 FreesearchR
|
|
*
|
|
* FreesearchR, CSS styles
|
|
* https://github.com/agdamsbo/FreesearchR
|
|
*
|
|
* @version 0.0.1
|
|
*/
|
|
|
|
.container-fluid > .nav > li >
|
|
a[data-value='FreesearchR'] {font-size: 28px}
|
|
|
|
|
|
/* from datamods */
|
|
.show-block {
|
|
display: block !important;
|
|
}
|
|
.show-inline {
|
|
display: inline !important;
|
|
}
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.container-rule {
|
|
position: relative;
|
|
text-align: center;
|
|
height: 25px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.horizontal-rule {
|
|
position: absolute;
|
|
top: 11px;
|
|
right: 0;
|
|
left: 0;
|
|
background-color: #d0cfcf;
|
|
height: 1px;
|
|
z-index: 100;
|
|
margin: 0;
|
|
border: none;
|
|
}
|
|
|
|
.label-rule {
|
|
background: #FFF;
|
|
opacity: 1;
|
|
z-index: 101;
|
|
background-color: #FFF;
|
|
position: relative;
|
|
padding: 0 10px 0 10px;
|
|
}
|
|
|
|
.datamods-table-container {
|
|
overflow: auto;
|
|
word-break: keep-all;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.datamods-table-container > .table {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.datamods-file-import {
|
|
display: grid;
|
|
grid-template-columns: auto 50px;
|
|
grid-column-gap: 10px;
|
|
}
|
|
|
|
.datamods-dt-nowrap {
|
|
word-break: keep-all;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
|
|
|
|
/* validation */
|
|
.datamods-validation-results {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-template-rows: 1fr;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
font-size: large;
|
|
}
|
|
|
|
.datamods-validation-summary {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.datamods-validation-item {
|
|
font-size: larger;
|
|
}
|
|
|
|
|
|
|
|
/* modified from esquisse for data types */
|
|
.btn-column-categorical {
|
|
background-color: #00C896;
|
|
color: #FFFFFF;
|
|
}
|
|
.btn-column-continuous {
|
|
background-color: #FFB100;
|
|
color: #FFFFFF;
|
|
}
|
|
.btn-column-dichotomous {
|
|
background-color: #8A4FFF;
|
|
color: #FFFFFF;
|
|
}
|
|
.btn-column-datetime {
|
|
background-color: #11A0EC;
|
|
color: #FFFFFF;
|
|
}
|
|
.btn-column-id {
|
|
background-color: #848484;
|
|
color: #FFFFFF;
|
|
}
|
|
.btn-column-text {
|
|
background-color: #2E2E2E;
|
|
color: #FFFFFF;
|
|
}
|