eq2emu.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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. max-height:400px;
  26. overflow-y:auto;
  27. }
  28. .ico-picker-cat-ctn {
  29. background-color:rgba(0,0,0,0.25);
  30. -webkit-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  31. -moz-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  32. box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  33. }
  34. .ico-picker-cat {
  35. background-color:rgba(0,0,0,0.25);
  36. -webkit-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  37. -moz-box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  38. box-shadow: inset -4px 0px 5px 0px rgba(94,94,94,1);
  39. display:block;
  40. max-height:400px;
  41. min-height:400px;
  42. overflow-y:scroll;
  43. overflow-x:hidden;
  44. }
  45. .item-editor-info {
  46. padding-top:100px;
  47. padding-bottom:100px;
  48. font-size:20pt;
  49. }
  50. .item-editor-info i {
  51. font-size:50pt;
  52. }
  53. .ico-picker-i {
  54. transition: all ease 500ms;
  55. display:inline-block;
  56. max-width:48px;
  57. max-height:48px;
  58. min-width:42px;
  59. min-height:42px;
  60. padding:2px;
  61. border-radius:5px;
  62. margin:2px;
  63. border:1px solid #CCC;
  64. line-height:42px;
  65. vertical-align:top;
  66. text-align:center;
  67. }
  68. .item-edit-changed {
  69. transition:all ease 700ms;
  70. border-color: rgb(96, 153, 81);
  71. }
  72. .item-edit-changed-label {
  73. transition:all ease 700ms;
  74. border-right:6px solid;
  75. border-color: rgb(96, 153, 81);
  76. background-color: rgb(222, 255, 209);
  77. }
  78. .item-edit-changed-label-switch {
  79. transition:all ease 700ms;
  80. font-weight:bold;
  81. color:rgb(96, 153, 81);
  82. }
  83. .ico-picker-i:hover {
  84. transition:all ease 600ms;
  85. cursor:pointer;
  86. background-color:rgba(255,0,0,0.15);
  87. }
  88. .ico-picker-loader {
  89. display:inline-block;
  90. font-size:42px;
  91. line-height:42px;
  92. text-align:center;
  93. width:42px;
  94. height:42px;
  95. min-width:42px;
  96. min-height:42px;
  97. max-width:42px;
  98. max-height:42px;
  99. overflow:hidden;
  100. }
  101. .ico-picker-pagination {
  102. display:block;
  103. width:100%;
  104. text-align:center;
  105. padding-top:5px;
  106. padding-bottom:5px;
  107. }
  108. .ico-picker-ellipsis {
  109. padding-left:3px;
  110. padding-right:3px;
  111. text-align:center;
  112. color:rgba(0,0,0,0.15);
  113. }
  114. /* Item Editor Header Title Bar (Current Item) */
  115. #item-editor-header-label {
  116. margin-left:10px;
  117. }
  118. /* Edit Item View Icon */
  119. .edit-item-ico {
  120. text-align:center;
  121. display:inline-block;
  122. max-width:42px;
  123. max-height:42px;
  124. min-width:42px;
  125. min-height:42px;
  126. }
  127. /* Quick Search Item Icon */
  128. .quick-search-item-ico {
  129. display:inline-block;
  130. max-width:42px;
  131. max-height:42px;
  132. width:100%;
  133. height:auto;
  134. min-width:32px;
  135. min-height:32px;
  136. }
  137. /* Quick Search Item Row */
  138. .quick-item-search-row {
  139. transition: all ease 500ms;
  140. padding-top:3px;
  141. padding-bottom:3px;
  142. background-color:rgb(212, 196, 237, 0.01);
  143. border-radius:10px;
  144. }
  145. .quick-item-search-row:hover {
  146. transition: all ease 750ms;
  147. cursor:pointer;
  148. background-color:rgba(212, 196, 237, .99)
  149. }
  150. /* Quick Item Search List Container */
  151. #quick-item-list {
  152. padding-top:4px;
  153. }
  154. /* Theme Adjustments */
  155. .subheader {
  156. margin-bottom:10px!important;
  157. }
  158. .fast-spin {
  159. -webkit-animation: fa-spin 800ms infinite linear!important;
  160. animation: fa-spin 800ms infinite linear!important;
  161. }
  162. .inline { display:inline-block!important; vertical-align:middle!important; }
  163. .info-card {
  164. height:11.50rem!important;
  165. }
  166. .va {
  167. vertical-align:middle!important;
  168. }
  169. .n-b-t {
  170. border-top:none!important;
  171. }
  172. .n-b-l {
  173. border-left:none!important;
  174. }
  175. .n-b-r {
  176. border-right:none!important;
  177. }
  178. .n-b-b {
  179. border-bottom:none!important;
  180. }
  181. .n-b-lr {
  182. border-left:none!important;
  183. border-right:none!important;
  184. }
  185. .n-b-tb {
  186. border-top:none!important;
  187. border-bottom:none!important;
  188. }
  189. .n-p-t {
  190. padding-top:0px!important;
  191. }
  192. .n-p-l {
  193. padding-left:0px!important;
  194. }
  195. .n-p-r {
  196. padding-right:0px!important;
  197. }
  198. .n-p-b {
  199. padding-bottom:0px!important;
  200. }
  201. .n-p-lr {
  202. padding-left:0px!important;
  203. padding-right:0px!important;
  204. }
  205. .n-p-tb {
  206. padding-top:0px!important;
  207. padding-bottom:0px!important;
  208. }
  209. .n-m-t {
  210. margin-top:0px!important;
  211. }
  212. .n-m-l {
  213. margin-left:0px!important;
  214. }
  215. .n-m-r {
  216. margin-right:0px!important;
  217. }
  218. .n-m-b {
  219. margin-bottom:0px!important;
  220. }
  221. .n-m-lr {
  222. margin-left:0px!important;
  223. margin-right:0px!important;
  224. }
  225. .n-m-tb {
  226. margin-top:0px!important;
  227. margin-bottom:0px!important;
  228. }
  229. /* Text Alignments */
  230. .text-right {
  231. text-align:right;
  232. }
  233. .text-left {
  234. text-align:left;
  235. }
  236. /* Custom Framework Containers */
  237. .flex-box {
  238. display:inline-block;
  239. }