Нет описания

customize.css 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. .analyst-action-opt {
  2. cursor: pointer;
  3. }
  4. .analyst-modal {
  5. color: #000000;
  6. display: none;
  7. position: fixed;
  8. z-index: 1000;
  9. padding-top: 100px;
  10. left: 0;
  11. top: 0;
  12. width: 100%;
  13. height: 100%;
  14. overflow: auto;
  15. background-color: rgb(0,0,0);
  16. background-color: rgba(0,0,0,0.4);
  17. }
  18. .analyst-modal-content {
  19. font-family: Helvetica, serif;
  20. position: relative;
  21. background-color: #fefefe;
  22. margin: auto;
  23. padding: 35px 35px 20px;
  24. border: 1px solid #F2F2F2;
  25. width: 40%;
  26. box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  27. -webkit-animation-name: analyst-animatetop;
  28. -webkit-animation-duration: 0.4s;
  29. animation-name: analyst-animatetop;
  30. animation-duration: 0.4s
  31. }
  32. .analyst-btn-success {
  33. cursor: pointer;
  34. color: #ffffff;
  35. background-color: #00AF5E;
  36. border: none;
  37. width: 100%;
  38. font-size: 18px;
  39. padding: 8px;
  40. font-weight: bold;
  41. }
  42. .analyst-btn-grey {
  43. cursor: pointer;
  44. color: #2D2D2D;
  45. background-color: #D8D8D8;
  46. border: none;
  47. width: 100%;
  48. font-size: 18px;
  49. padding: 8px;
  50. font-weight: bold;
  51. }
  52. .analyst-btn-secondary-ghost {
  53. cursor: pointer;
  54. background: transparent;
  55. border: none;
  56. color: #898686;
  57. font-size: 18px;
  58. }
  59. .analyst-modal-def-top-padding {
  60. padding-top: 20px;
  61. }
  62. .analyst-modal-header {
  63. font-size: 20px;
  64. font-weight: bold;
  65. }
  66. /*INSTALL STYLES*/
  67. .analyst-install-footer {
  68. padding-top: 10px;
  69. text-align: center;
  70. }
  71. .analyst-install-image-block {
  72. width: 140px;
  73. }
  74. .analyst-install-image-block img {
  75. width: inherit;
  76. }
  77. .analyst-install-description-block {
  78. padding-left: 40px;
  79. padding-top: 5px
  80. }
  81. .analyst-install-description-text {
  82. font-size: 16px;
  83. color: #000000;
  84. }
  85. .analyst-install-permissions-list {
  86. list-style: disc inside;
  87. }
  88. .analyst-install-permissions-list li {
  89. padding-left: 15px;
  90. margin-bottom: 2px;
  91. }
  92. .analyst-install-footer span {
  93. color: #8a8787;
  94. padding-right: 10px;
  95. padding-left: 10px;
  96. }
  97. .analyst-install-footer span:not(:last-child) {
  98. border-right: 1px solid #8a8787;
  99. }
  100. /*INSTALL STYLES*/
  101. .reason-answer {
  102. padding: 7px;
  103. margin-left: 23px;
  104. border: 1px solid #F2F2F2;
  105. }
  106. .analyst-link {
  107. color: #00AF5E;
  108. text-decoration: none;
  109. }
  110. .analyst-action-text {
  111. cursor: pointer;
  112. }
  113. .analyst-action-text:hover {
  114. color: #9d9a9a;
  115. }
  116. .analyst-disable-modal-mask {
  117. width: 100%;
  118. height: 100%;
  119. opacity: 0.5;
  120. position: absolute;
  121. background: white;
  122. top: 0;
  123. left: 0;
  124. }
  125. .analyst-smile-image {
  126. vertical-align: middle;
  127. padding-bottom: 3px;
  128. width: 24px;
  129. }
  130. #analyst-deactivation-reasons li {
  131. padding-bottom: 3px;
  132. font-size: 16px;
  133. color: #000000;
  134. }
  135. @-webkit-keyframes analyst-animatetop {
  136. from {top:-300px; opacity:0}
  137. to {top:0; opacity:1}
  138. }
  139. @keyframes analyst-animatetop {
  140. from {top:-300px; opacity:0}
  141. to {top:0; opacity:1}
  142. }
  143. .analyst-modal-close {
  144. color: #48036F;
  145. font-size: 28px;
  146. font-weight: bold;
  147. top: 12px;
  148. position: absolute;
  149. right: 15px;
  150. }
  151. .analyst-modal-close:hover,
  152. .analyst-modal-close:focus {
  153. color: #000;
  154. text-decoration: none;
  155. cursor: pointer;
  156. }
  157. .analyst-modal-body {padding: 2px 16px;}
  158. .analyst-modal-footer {
  159. padding: 6px 16px;
  160. background-color: #FFE773;
  161. color: white;
  162. }
  163. #analyst-deactivate-modal .question-answer input, textarea {
  164. margin-top: 5px;
  165. width: 100%;
  166. }
  167. .analyst-btn-primary {
  168. cursor: pointer;
  169. border: none;
  170. display:inline-block;
  171. padding:0.7em 1.4em;
  172. margin:0 0.3em 0.3em 0;
  173. border-radius:0.15em;
  174. box-sizing: border-box;
  175. text-decoration:none;
  176. font-family:'Roboto',sans-serif;
  177. text-transform:uppercase;
  178. font-weight:400;
  179. color:#FFFFFF;
  180. background-color:#9F3ED5;
  181. box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
  182. text-align:center;
  183. position:relative;
  184. }
  185. .analyst-btn-primary:disabled {
  186. background-color: #AD66D5;
  187. cursor: not-allowed;
  188. }
  189. .analyst-btn-primary:active{
  190. top:0.1em;
  191. }
  192. @media all and (max-width:30em){
  193. .analyst-btn-primary {
  194. display:block;
  195. margin:0.4em auto;
  196. }
  197. }
  198. .analyst-btn-secondary {
  199. cursor: pointer;
  200. border: none;
  201. display:inline-block;
  202. padding:0.7em 1.4em;
  203. margin:0 0.3em 0.3em 0;
  204. border-radius:0.15em;
  205. box-sizing: border-box;
  206. text-decoration:none;
  207. font-family:'Roboto',sans-serif;
  208. text-transform:uppercase;
  209. font-weight:400;
  210. color:#FFFFFF;
  211. background-color:#6C8CD5;
  212. box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
  213. text-align:center;
  214. position:relative;
  215. }
  216. .analyst-btn-secondary:disabled {
  217. background-color: #6C8CD5;
  218. cursor: not-allowed;
  219. }
  220. .analyst-btn-secondary:active{
  221. top:0.1em;
  222. }
  223. @media all and (max-width:30em){
  224. .analyst-btn-secondary {
  225. display:block;
  226. margin:0.4em auto;
  227. }
  228. }
  229. .analyst-notice {
  230. padding-right: 38px;
  231. position: relative;
  232. margin-bottom: 30px !important;
  233. }
  234. .analyst-notice .analyst-plugin-name {
  235. background-color: #00000024;
  236. padding-left: 7px;
  237. padding-right: 7px;
  238. position: absolute;
  239. top: 100%;
  240. border-radius: 0 0 5px 5px;
  241. }