common.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. 
  2. /***
  3. UI Loading
  4. ***/
  5. .loading-message {
  6. display: inline-block;
  7. min-width: 125px;
  8. margin-left: -60px;
  9. padding: 10px;
  10. margin: 0 auto;
  11. color: #000 !important;
  12. font-size: 13px;
  13. font-weight: 400;
  14. text-align: center;
  15. vertical-align: middle; }
  16. .loading-message.loading-message-boxed {
  17. border: 1px solid #ddd;
  18. background-color: #eee;
  19. -webkit-border-radius: 4px;
  20. -moz-border-radius: 4px;
  21. -ms-border-radius: 4px;
  22. -o-border-radius: 4px;
  23. border-radius: 4px;
  24. -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  25. -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  26. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); }
  27. .loading-message > span {
  28. line-height: 20px;
  29. vertical-align: middle; }
  30. .page-loading {
  31. -webkit-border-radius: 4px;
  32. -moz-border-radius: 4px;
  33. -ms-border-radius: 4px;
  34. -o-border-radius: 4px;
  35. border-radius: 4px;
  36. position: fixed;
  37. top: 50%;
  38. left: 50%;
  39. min-width: 125px;
  40. margin-left: -60px;
  41. margin-top: -30px;
  42. padding: 7px;
  43. text-align: center;
  44. color: #333;
  45. font-size: 13px;
  46. border: 1px solid #ddd;
  47. background-color: #eee;
  48. vertical-align: middle;
  49. -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  50. -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  51. box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1); }
  52. .page-loading > span {
  53. line-height: 20px;
  54. vertical-align: middle; }
  55. .page-spinner-bar {
  56. position: fixed;
  57. z-index: 10051;
  58. width: 100px;
  59. top: 40%;
  60. left: 50%;
  61. margin-left: -55px;
  62. text-align: center; }
  63. .page-spinner-bar > div {
  64. margin: 0 5px;
  65. width: 18px;
  66. height: 18px;
  67. background: #eee;
  68. border-radius: 100% !important;
  69. display: inline-block;
  70. -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
  71. animation: bounceDelay 1.4s infinite ease-in-out;
  72. /* Prevent first frame from flickering when animation starts */
  73. -webkit-animation-fill-mode: both;
  74. animation-fill-mode: both; }
  75. .page-spinner-bar .bounce1 {
  76. -webkit-animation-delay: -0.32s;
  77. animation-delay: -0.32s; }
  78. .page-spinner-bar .bounce2 {
  79. -webkit-animation-delay: -0.16s;
  80. animation-delay: -0.16s; }
  81. .block-spinner-bar {
  82. display: inline-block;
  83. width: 80px;
  84. text-align: center; }
  85. .block-spinner-bar > div {
  86. margin: 0 2px;
  87. width: 15px;
  88. height: 15px;
  89. background: #eee;
  90. border-radius: 100% !important;
  91. display: inline-block;
  92. -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
  93. animation: bounceDelay 1.4s infinite ease-in-out;
  94. /* Prevent first frame from flickering when animation starts */
  95. -webkit-animation-fill-mode: both;
  96. animation-fill-mode: both; }
  97. .block-spinner-bar .bounce1 {
  98. -webkit-animation-delay: -0.32s;
  99. animation-delay: -0.32s; }
  100. .block-spinner-bar .bounce2 {
  101. -webkit-animation-delay: -0.16s;
  102. animation-delay: -0.16s; }
  103. /****
  104. CSS3 Spinner Bar
  105. ****/
  106. .page-spinner-bar > div,
  107. .block-spinner-bar > div {
  108. background: #4bccd8; }
  109. /***
  110. Bootstrap Select
  111. ***/
  112. .bootstrap-select .btn {
  113. border-color: #c2cad8; }
  114. .has-error .bootstrap-select .btn {
  115. border-color: #fbe1e3; }
  116. .has-success .bootstrap-select .btn {
  117. border-color: #abe7ed; }
  118. .has-warning .bootstrap-select .btn {
  119. border-color: #f9e491; }
  120. .bootstrap-select.open .btn {
  121. border-color: #93a1bb; }
  122. .bootstrap-select.open.dropup .btn {
  123. border-color: #93a1bb; }
  124. .bootstrap-select .btn:focus {
  125. outline: none !important;
  126. outline-offset: 0; }
  127. .bootstrap-select.btn-group .dropdown-menu {
  128. margin-top: 1px; }
  129. .bootstrap-select.btn-group .dropdown-menu > li > dt > .text {
  130. font-weight: 600;
  131. font-family: 'Open Sans';
  132. font-size: 14px; }
  133. .bootstrap-select.btn-group .dropdown-menu .text-muted {
  134. color: #999 !important; }
  135. .bootstrap-select .caret {
  136. border: 0;
  137. width: auto;
  138. height: auto;
  139. margin-top: -10px !important; }
  140. .bootstrap-select .caret:before {
  141. content: "\f107";
  142. display: inline-block;
  143. border: 0;
  144. font-family: FontAwesome;
  145. font-style: normal;
  146. font-weight: normal; }
  147. .bootstrap-select .selected i {
  148. color: #aaa; }
  149. .bootstrap-select .dropdown-menu {
  150. z-index: 9999 !important; }