main.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /** EXPORT **/
  2. .table-exportmodels .exportmodel-public {
  3. color: #1e998d;
  4. }
  5. .table-exportmodels .exportmodel-public:before {
  6. font-family: 'Font Awesome 5 Free';
  7. font-weight: 900;
  8. content: '\f06e';
  9. margin-right: 5px;
  10. }
  11. .table-exportmodels .exportmodel-private {
  12. color: #ca023e;
  13. }
  14. .table-exportmodels .exportmodel-private:before {
  15. font-family: 'Font Awesome 5 Free';
  16. font-weight: 900;
  17. content: '\f070';
  18. margin-right: 5px;
  19. }
  20. /* Conteneur principal du plugin export */
  21. .export {
  22. }
  23. #exports {
  24. }
  25. /* formulaire d'édition de exportmodel */
  26. #exportmodel-form {
  27. max-width: 1200px;
  28. margin: auto;
  29. }
  30. .exportmodel-form .options-box {
  31. margin-top: 15px;
  32. user-select: none;
  33. }
  34. .exportmodel-form .options-box > div {
  35. }
  36. .exportmodel-form .options-box label:not(.check-component) {
  37. width: 55%;
  38. }
  39. .exportmodel-form .options-box input {
  40. }
  41. .export-privacy-button {
  42. right: 0;
  43. bottom: 0;
  44. left: 0;
  45. z-index: 1030;
  46. position: absolute;
  47. }
  48. .dataset-container > div.row > div {
  49. padding: 15px;
  50. }
  51. .dataset-showcase > ul {
  52. list-style: none;
  53. padding-left: 0;
  54. }
  55. .exportmodel-form .badge {
  56. display: inline-block;
  57. width: 45px;
  58. margin-right: 5px;
  59. }
  60. .exportmodel-form .badge.macro-list {
  61. color: #212529;
  62. background-color: #ffc107;
  63. }
  64. .exportmodel-form .badge.macro-value {
  65. color: #ffffff;
  66. background-color: #007bff;
  67. }
  68. .exportmodel-form .badge.macro-photo {
  69. color: #ffffff;
  70. background-color: #dc3545;
  71. }
  72. .dataset-showcase ul li {
  73. cursor: pointer;
  74. padding: 0 5px;
  75. padding-bottom: 3px;
  76. }
  77. .dataset-showcase ul li:not(.li-list):hover {
  78. background: #e9e9e99c;
  79. border-radius: 1rem;
  80. }
  81. .dataset-showcase code {
  82. margin: 0 5px;
  83. }
  84. .dataset-example-files ul {
  85. background: #e9e9e9;
  86. border: 1px dashed #ced4da;
  87. border-radius: .25rem;
  88. padding: 10px;
  89. list-style: none;
  90. }
  91. .dataset-example-files ul > li {
  92. margin: 5px 0;
  93. }
  94. .dataset-example-files li i {
  95. margin: 0 5px;
  96. }
  97. .export-doc .doc-picture {
  98. width: 100px;
  99. height: 100px;
  100. }
  101. .export-doc > div {
  102. margin-bottom: 25px;
  103. }
  104. .export-doc li {
  105. margin-bottom: 5px;
  106. }
  107. /* MEDIA QUERIES */
  108. @media (max-width: 797px) {
  109. .export-privacy-button {
  110. font-size: 0.8em;
  111. }
  112. }
  113. @media (max-width: 767px) {
  114. .export-privacy-button {
  115. font-size: 1em;
  116. position: relative;
  117. margin-top: 20px;
  118. }
  119. }