eq2emu.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /* Custom Elements */
  2. .console {
  3. padding:5px;
  4. border-radius:3px;
  5. display:block;
  6. width:100%;
  7. min-height:300px;
  8. background-color:rgba(0,0,0,0.75);
  9. color:#FFF;
  10. }
  11. .hidden { display:none; }
  12. /* Inline Vertical Middle Alignment */
  13. .vm {
  14. display:inline-block;
  15. }
  16. .m,.vm {
  17. vertical-align:middle;
  18. }
  19. /* Font Weight Bold */
  20. .strong, .bold {
  21. font-weight:bold;
  22. }
  23. /* Icon Picker Elements */
  24. .ico-picker-list {
  25. }
  26. .ico-picker-cat-ctn {
  27. background-color:rgba(0,0,0,0.25);
  28. -webkit-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  29. -moz-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  30. box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  31. }
  32. .ico-picker-cat {
  33. background-color:rgba(0,0,0,0.25);
  34. -webkit-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  35. -moz-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  36. box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  37. display:block;
  38. max-height:400px;
  39. min-height:400px;
  40. overflow-y:scroll;
  41. overflow-x:hidden;
  42. }
  43. .ico-picker-i {
  44. transition: all ease 500ms;
  45. display:inline-block;
  46. max-width:48px;
  47. max-height:48px;
  48. min-width:42px;
  49. min-height:42px;
  50. padding:2px;
  51. border-radius:5px;
  52. margin:2px;
  53. border:1px solid #CCC;
  54. line-height:42px;
  55. vertical-align:top;
  56. text-align:center;
  57. }
  58. .ico-picker-i:hover {
  59. transition:all ease 600ms;
  60. cursor:pointer;
  61. background-color:rgba(255,0,0,0.15);
  62. }
  63. .ico-picker-loader {
  64. display:inline-block;
  65. font-size:42px;
  66. line-height:42px;
  67. text-align:center;
  68. width:42px;
  69. height:42px;
  70. min-width:42px;
  71. min-height:42px;
  72. max-width:42px;
  73. max-height:42px;
  74. overflow:hidden;
  75. }
  76. .ico-picker-pagination {
  77. display:block;
  78. width:100%;
  79. text-align:center;
  80. padding-top:5px;
  81. padding-bottom:5px;
  82. }
  83. .ico-picker-ellipsis {
  84. padding-left:3px;
  85. padding-right:3px;
  86. text-align:center;
  87. color:rgba(0,0,0,0.15);
  88. }
  89. /* Item Editor Header Title Bar (Current Item) */
  90. #item-editor-header-label {
  91. margin-left:10px;
  92. }
  93. /* Edit Item View Icon */
  94. .edit-item-ico {
  95. text-align:center;
  96. display:inline-block;
  97. max-width:42px;
  98. max-height:42px;
  99. min-width:42px;
  100. min-height:42px;
  101. }
  102. /* Quick Search Item Icon */
  103. .quick-search-item-ico {
  104. display:inline-block;
  105. max-width:42px;
  106. max-height:42px;
  107. width:100%;
  108. height:auto;
  109. min-width:32px;
  110. min-height:32px;
  111. }
  112. /* Quick Search Item Row */
  113. .quick-item-search-row {
  114. transition: all ease 500ms;
  115. padding-top:3px;
  116. padding-bottom:3px;
  117. background-color:rgb(212, 196, 237, 0.01);
  118. border-radius:10px;
  119. }
  120. .quick-item-search-row:hover {
  121. transition: all ease 750ms;
  122. cursor:pointer;
  123. background-color:rgba(212, 196, 237, .99)
  124. }
  125. /* Quick Item Search List Container */
  126. #quick-item-list {
  127. padding-top:4px;
  128. }
  129. /* Theme Adjustments */
  130. .subheader {
  131. margin-bottom:10px!important;
  132. }
  133. .fast-spin {
  134. -webkit-animation: fa-spin 800ms infinite linear!important;
  135. animation: fa-spin 800ms infinite linear!important;
  136. }
  137. .inline { display:inline-block!important; vertical-align:middle!important; }
  138. .info-card {
  139. height:11.50rem!important;
  140. }
  141. .va {
  142. vertical-align:middle!important;
  143. }
  144. .n-b-t {
  145. border-top:none!important;
  146. }
  147. .n-b-l {
  148. border-left:none!important;
  149. }
  150. .n-b-r {
  151. border-right:none!important;
  152. }
  153. .n-b-b {
  154. border-bottom:none!important;
  155. }
  156. .n-b-lr {
  157. border-left:none!important;
  158. border-right:none!important;
  159. }
  160. .n-b-tb {
  161. border-top:none!important;
  162. border-bottom:none!important;
  163. }
  164. .n-p-t {
  165. padding-top:0px!important;
  166. }
  167. .n-p-l {
  168. padding-left:0px!important;
  169. }
  170. .n-p-r {
  171. padding-right:0px!important;
  172. }
  173. .n-p-b {
  174. padding-bottom:0px!important;
  175. }
  176. .n-p-lr {
  177. padding-left:0px!important;
  178. padding-right:0px!important;
  179. }
  180. .n-p-tb {
  181. padding-top:0px!important;
  182. padding-bottom:0px!important;
  183. }
  184. .n-m-t {
  185. margin-top:0px!important;
  186. }
  187. .n-m-l {
  188. margin-left:0px!important;
  189. }
  190. .n-m-r {
  191. margin-right:0px!important;
  192. }
  193. .n-m-b {
  194. margin-bottom:0px!important;
  195. }
  196. .n-m-lr {
  197. margin-left:0px!important;
  198. margin-right:0px!important;
  199. }
  200. .n-m-tb {
  201. margin-top:0px!important;
  202. margin-bottom:0px!important;
  203. }