mg_styles.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. .mg-datapicker {
  2. padding: 6px 12px 6px 12px !important;
  3. display: flex !important;
  4. position: relative !important;
  5. margin: 0 !important;
  6. }
  7. .mg-datapicker:after {
  8. background-color: #fff !important;
  9. }
  10. .md-input-action {
  11. top: 6px !important;
  12. }
  13. .mg-copy-component-field {
  14. position: absolute;
  15. top: -9999px;
  16. left: -9999px;
  17. opacity: 0;
  18. }
  19. .mg-copy-component-span:hover {
  20. cursor: pointer;
  21. }
  22. #contentarea > div > h1 {
  23. display: none!important;
  24. }
  25. #layers .lu-app .lu-btn--default,
  26. #layers .lu-app .lu-btn--danger {
  27. color: #737880;
  28. }
  29. #layers .lu-app .vue-app-main-modal-container .lu-btn--danger:not(.lu-btn--outline) {
  30. color: #fff;
  31. }
  32. #layers .lu-app .lu-btn--default:hover {
  33. color: #505459;
  34. }
  35. #layers .vueDatatableTable .mgTableActions label {
  36. display: block;
  37. margin-bottom: auto;
  38. margin-top: auto;
  39. }
  40. /*FIX PRELOADER IN SUBMIT BUTTON*/
  41. #layers .lu-btn.mg-submit-form .lu-btn__icon.lu-preloader {
  42. margin: 0 0 0 0;
  43. }
  44. /*fix to long modal*/
  45. #layers .lu-app .lu-modal {
  46. display: grid!important;
  47. }
  48. /*fix mobile menu */
  49. #layers .lu-off-canvas-responsive--right:not(.is-open) {
  50. margin-right: -5000px;
  51. }
  52. /*FIX AA TOP MENU*/
  53. #layers .lu-preloader-container--full-screen {
  54. z-index: 9999;
  55. }
  56. #layers .lu-navbar__nav > .lu-nav > .lu-nav__item:not(.has-dropdown) > .lu-nav__link > .drop-arrow {
  57. height: 32px;
  58. width: 32px;
  59. bottom: -18px;
  60. right: 50%;
  61. margin-right: -24px;
  62. }
  63. #layers .lu-navbar__nav > .lu-nav > .lu-nav__item:not(.has-dropdown) > .lu-nav__link > .drop-arrow:after {
  64. left: 8px;
  65. width: 16px;
  66. height: 16px;
  67. top: 8px;
  68. background: #e9ebf0;
  69. box-shadow: 3px 3px 3px -1px rgba(0, 0, 0, 0.05) inset;
  70. border-radius: 3px;
  71. }
  72. #layers .lu-navbar__nav > .lu-nav > .lu-nav__item:not(.has-dropdown).is-active .drop-arrow {
  73. display: block;
  74. z-index: 99;
  75. }
  76. #layers .lu-navbar__nav > .lu-nav > .lu-nav__item.has-dropdown > .lu-nav__link > .drop-arrow {
  77. height: 32px;
  78. width: 32px;
  79. bottom: -18px;
  80. right: 50%;
  81. margin-right: -24px;
  82. z-index: 99;
  83. display: none;
  84. }
  85. #layers .lu-navbar__nav > .lu-nav > .lu-nav__item.has-dropdown > .lu-nav__link > .drop-arrow:after {
  86. left: 8px;
  87. width: 16px;
  88. height: 16px;
  89. top: 8px;
  90. background: #e9ebf0;
  91. box-shadow: 3px 3px 3px -1px rgba(0, 0, 0, 0.05) inset;
  92. border-radius: 3px;
  93. }
  94. #layers .lu-navbar__nav > .lu-nav > .lu-nav__item.has-dropdown.is-active .drop-arrow {
  95. display: block;
  96. z-index: 99;
  97. animation: none;
  98. }
  99. /*FIX AA TOP MENU END*/
  100. /* RED loader for delete buttons */
  101. #layers .lu-btn--danger .lu-preloader:before {
  102. border-top-color: rgb(244, 62, 62);
  103. }
  104. /* GREEN loader for submit buttons */
  105. #layers .lu-btn--success .lu-preloader:before {
  106. border-top-color: rgb(98, 202, 95);
  107. }
  108. /* selectize css fixes */
  109. #layers .selectize-control.multi .item {
  110. padding: 0 8px;
  111. margin: 0 4px 4px 0;
  112. background: #e9ebf0;
  113. line-height: 24px;
  114. }
  115. #layers .selectize-control.multi .item a {
  116. padding-top: 0px;
  117. color: #2368AD;
  118. transition: color 0.3s;
  119. }
  120. #layers .selectize-control.multi.plugin-remove_button .item > a:hover {
  121. background: rgba(0, 0, 0, 0.05);
  122. }
  123. #layers .selectize-control.multi .item.active {
  124. color: #333;
  125. }
  126. #layers .selectize-control.multi .selectize-input {
  127. padding-bottom: 0px;
  128. padding-left: 4px;
  129. display: block;
  130. }
  131. #layers .selectize-input.lu-form-control.lu-tagger {
  132. padding-left: 15px;
  133. }
  134. #layers .selectize-input.lu-form-control.lu-tagger input {
  135. height: 26px;
  136. }
  137. /* end of selectize css fixes */
  138. /* Breadcumbrs styles */
  139. #layers .lu-breadcrumb__item:before {
  140. padding: 0 2px 0 8px;
  141. }
  142. /* End of breadcumbrs styles */
  143. /* Form in tab styles */
  144. #layers .mg-form-in-tab .ui-form-submit {
  145. padding-bottom: 20px;
  146. }
  147. #layers .mg-form-in-tab .mg-tab-form-wrapper {
  148. padding-left: 8px;
  149. margin-right: 8px;
  150. }
  151. /* End of Form in tab styles */
  152. /* Modal Background */
  153. #layers .lu-modal.show {
  154. background-color: rgba(80, 84, 89, 0.5);
  155. }
  156. /* End of Modal Background */
  157. /* Show Allerts on top of new modal background */
  158. #layers-body #toast-container,
  159. #layers #toast-container {
  160. z-index: 1102;
  161. }
  162. /* End of Show Allerts on top of new modal background */
  163. /* force break lines on lu-list--info */
  164. #layers .lu-list--info .lu-list__value {
  165. word-break: break-all;
  166. }
  167. /* end of force break lines */
  168. /* Fixes for Category menu AA */
  169. #layers .lu-app .lu-block__sidebar .lu-widget__header .menu-search-wrapper.is-shown {
  170. position: absolute;
  171. left: 0;
  172. right: 16px;
  173. top: 0;
  174. bottom: 0;
  175. height: auto;
  176. min-width: auto;
  177. border: none;
  178. }
  179. #layers .lu-app .lu-block__sidebar .lu-widget__header .menu-search-wrapper:not(.is-shown) {
  180. margin-left: 0px;
  181. }
  182. #layers .lu-app .lu-block__sidebar .lu-widget__header .menu-search-wrapper.is-shown input {
  183. padding-left: 0px;
  184. }
  185. #layers .lu-app .lu-block__sidebar .lu-widget__body .no-groups-found {
  186. text-align: center;
  187. padding-bottom: 10px;
  188. }
  189. /* End of Fixes for Category menu AA */
  190. /* Category Menu Dynamic Content - content */
  191. #layers #itemContentContainer
  192. {
  193. overflow: unset;
  194. overflow-y: visible;
  195. }
  196. /* End of Category Menu Dynamic Content - content */
  197. /* Fixes for Tabs widget Form */
  198. #layers .lu-app .lu-widget__body .mg-tabs-form-wrapper {
  199. padding: 16px;
  200. }
  201. /* End of Fixes for Tabs widget Form */
  202. /* FormTabsWidget */
  203. #layers .mg-form-tabs-widget .ui-form-submit {
  204. margin-bottom: 16px;
  205. padding-left: 16px;
  206. }
  207. /* END of FormTabsWidget */
  208. /* Datatable Filters */
  209. #layers .vueDatatableTable .mg-dt-filters-container .mg-filters-wrapper {
  210. padding-top: 10px;
  211. padding-right: 8px;
  212. padding-left: 8px;
  213. }
  214. #layers .vueDatatableTable .mg-dt-filters-container .mg-filter-search-wrapper a {
  215. float: right;
  216. }
  217. #layers .vueDatatableTable .mg-dt-filters-container .mg-filter-search-wrapper {
  218. min-height: 36px;
  219. }
  220. /* end of Datatable Filters */
  221. /* Loaders for selectize */
  222. #layers .mg-selectize-loader {
  223. position: absolute;
  224. right: 35px;
  225. }
  226. /* End of Loaders for selectize */
  227. /* fix this icon is smaller than others */
  228. .lu-zmdi-assignment-account {
  229. margin-top: 1px;
  230. }
  231. /* end of fix this icon is smaller than others */