123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /** EXPORT **/
- .table-exportmodels .exportmodel-public {
- color: #007bff;
- }
- .table-exportmodels .exportmodel-public:before {
- font-family: 'Font Awesome 5 Free';
- font-weight: 900;
- content: '\f06e';
- margin-right: 5px;
- }
- .table-exportmodels .exportmodel-private {
- color: #dc3545;
- }
- .table-exportmodels .exportmodel-private:before {
- font-family: 'Font Awesome 5 Free';
- font-weight: 900;
- content: '\f070';
- margin-right: 5px;
- }
- /* Conteneur principal du plugin export */
- .export {
-
- }
- #exports {
- }
- /* formulaire d'édition de exportmodel */
- #exportmodel-form {
- max-width: 1200px;
- margin: auto;
- }
- .exportmodel-form .options-box {
- margin-top: 15px;
- user-select: none;
- }
- .exportmodel-form .options-box > div {
- }
- .exportmodel-form .options-box label:not(.check-component) {
- width: 55%;
- }
- .exportmodel-form .options-box input {
- }
- .export-privacy-button {
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1030;
- position: absolute;
- }
- .dataset-showcase > ul {
- list-style: none;
- padding-left: 0;
- }
- .exportmodel-form .badge {
- display: inline-block;
- margin-right: 5px;
- }
- .export-model-documentation .badge.macro-list,
- .exportmodel-form .badge.macro-list {
- color: #212529;
- background-color: #ffc107;
- }
- .export-model-documentation .badge.macro-object,
- .exportmodel-form .badge.macro-object {
- color: #ffffff;
- background-color: #28a745;
- }
- .export-model-documentation .badge.macro-value,
- .exportmodel-form .badge.macro-value {
- color: #ffffff;
- background-color: #007bff;
- }
- .export-model-documentation .badge.macro-image,
- .exportmodel-form .badge.macro-image {
- color: #ffffff;
- background-color: #dc3545;
- }
- .dataset-showcase ul li {
- cursor: pointer;
- padding-bottom: 3px;
- transition: all 0.05s ease-in;
- }
- .dataset-showcase ul li:hover {
- background: #e9e9e99c;
- border-radius: 1rem;
- }
- .dataset-showcase code {
- margin: 0 5px;
- }
- .dataset-example-files ul {
- background: #e9e9e9;
- border: 1px dashed #ced4da;
- border-radius: .25rem;
- padding: 10px;
- list-style: none;
- }
- .dataset-example-files ul > li {
- margin: 5px 0;
- }
- .dataset-example-files li i {
- margin: 0 5px;
- }
- .export-model-documentation .doc-picture {
- width: 100px;
- height: 100px;
- }
- .export-model-documentation > div {
- margin-bottom: 25px;
- }
- .export-model-documentation li {
- margin-bottom: 5px;
- }
- /* MEDIA QUERIES */
- @media (max-width: 797px) {
- .export-privacy-button {
- font-size: 0.8em;
- }
- }
- @media (max-width: 767px) {
- .export-privacy-button {
- font-size: 1em;
- position: relative;
- margin-top: 20px;
- }
- }
|