123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /** EXPORT **/
- .table-exportmodels .exportmodel-public {
- color: #1e998d;
- }
- .table-exportmodels .exportmodel-public:before {
- font-family: 'Font Awesome 5 Free';
- font-weight: 900;
- content: '\f06e';
- margin-right: 5px;
- }
- .table-exportmodels .exportmodel-private {
- color: #ca023e;
- }
- .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-container > div.row > div {
- padding: 15px;
- }
- .dataset-showcase > ul {
- list-style: none;
- padding-left: 0;
- }
- .exportmodel-form .badge {
- display: inline-block;
- width: 45px;
- margin-right: 5px;
- }
- .exportmodel-form .badge.macro-list {
- color: #212529;
- background-color: #ffc107;
- }
- .exportmodel-form .badge.macro-value {
- color: #ffffff;
- background-color: #007bff;
- }
- .exportmodel-form .badge.macro-photo {
- color: #ffffff;
- background-color: #dc3545;
- }
- .dataset-showcase ul li {
- cursor: pointer;
- padding: 0 5px;
- padding-bottom: 3px;
- }
- .dataset-showcase ul li:not(.li-list):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-doc .doc-picture {
- width: 100px;
- height: 100px;
- }
- .export-doc > div {
- margin-bottom: 25px;
- }
- .export-doc 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;
- }
- }
|