admin-dashboard-widget.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. #monsterinsights_reports_widget.postbox {
  2. color: #333;
  3. font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  4. }
  5. #monsterinsights_reports_widget a {
  6. text-decoration: none;
  7. }
  8. .mi-dw-report-toggle {
  9. display: none;
  10. }
  11. .mi-dw-report-toggle.visible {
  12. display: block;
  13. }
  14. #monsterinsights_reports_widget * {
  15. box-sizing: border-box;
  16. }
  17. #monsterinsights_reports_widget.mi-loaded .handlediv {
  18. display: none;
  19. }
  20. #monsterinsights_reports_widget .hndle {
  21. font-size: 18px;
  22. height: 50px;
  23. padding-top: 12px;
  24. }
  25. #monsterinsights_reports_widget.postbox .handlediv {
  26. height: 50px;
  27. }
  28. .mi-dw-styled-toggle {
  29. background: #eee;
  30. border: 1px solid #1f76c4;
  31. border-radius: 20px;
  32. display: inline-block;
  33. height: 16px;
  34. position: relative;
  35. width: 30px;
  36. }
  37. .mi-dw-styled-toggle:after {
  38. background: #1f76c4;
  39. border-radius: 50%;
  40. content: '';
  41. height: 12px;
  42. left: 1px;
  43. position: absolute;
  44. top: 1px;
  45. transition: left 300ms ease 0s, right 300ms ease 0s;
  46. width: 12px;
  47. }
  48. .mi-dw-styled-toggle.checked:after {
  49. left: calc(100% - 13px);
  50. }
  51. .mi-dw-styled-toggle input {
  52. display: none;
  53. }
  54. .mi-dw-controls {
  55. padding-right: 20px;
  56. position: absolute;
  57. right: 0;
  58. text-align: right;
  59. top: 10px;
  60. width: 230px;
  61. }
  62. .mi-dw-controls .mi-dw-mascot {
  63. display: none;
  64. height: auto;
  65. width: 48px;
  66. }
  67. .mi-dw-datepicker {
  68. display: inline-block;
  69. margin-right: 15px;
  70. width: 120px;
  71. }
  72. .mi-dw-button-cog {
  73. background: url('../img/mi-dw-cog@2x.png') no-repeat transparent;
  74. background-size: 20px;
  75. border: none;
  76. cursor: pointer;
  77. display: block;
  78. height: 20px;
  79. outline: none;
  80. padding: 0;
  81. width: 20px;
  82. }
  83. .mi-dw-controls .mi-dw-dropdown {
  84. margin-left: 5px;
  85. }
  86. .mi-dw-dropdown {
  87. display: inline-block;
  88. position: relative;
  89. text-align: left;
  90. vertical-align: middle;
  91. }
  92. .mi-dw-dropdown > ul {
  93. background: #fff;
  94. border: 1px solid #d8d8d8;
  95. border-radius: 5px;
  96. cursor: initial;
  97. display: none;
  98. font-weight: 400;
  99. margin-right: -11px;
  100. margin-top: 5px;
  101. padding: 10px 5px 10px 10px;
  102. position: absolute;
  103. right: 0;
  104. top: 100%;
  105. width: 180px;
  106. z-index: 999;
  107. }
  108. .mi-dw-dropdown > ul:before {
  109. border-color: transparent transparent #d8d8d8 transparent;
  110. border-style: solid;
  111. border-width: 0 4px 4px 4px;
  112. bottom: 100%;
  113. content: '';
  114. height: 0;
  115. position: absolute;
  116. right: 16px;
  117. width: 0;
  118. }
  119. .mi-dw-dropdown > ul:after {
  120. border-color: transparent transparent #fff transparent;
  121. border-style: solid;
  122. border-width: 0 3px 3px 3px;
  123. bottom: 100%;
  124. content: '';
  125. height: 0;
  126. position: absolute;
  127. right: 17px;
  128. width: 0;
  129. }
  130. .mi-dw-dropdown.open > ul {
  131. display: block;
  132. }
  133. .mi-dw-dropdown > ul > li > span {
  134. color: #999;
  135. font-size: 10px;
  136. }
  137. .mi-dw-dropdown > ul > li > ul {
  138. color: #333;
  139. font-size: 12px;
  140. }
  141. .mi-dw-lite {
  142. align-items: center;
  143. background: url('../img/mi-dw-bg.png') no-repeat;
  144. background-size: 100% 470px;
  145. display: flex;
  146. height: 470px;
  147. padding: 40px 0;
  148. }
  149. .mi-dw-lite-content {
  150. background: #fff;
  151. box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  152. display: block;
  153. margin: 0 30px;
  154. padding: 30px;
  155. width: 100%;
  156. }
  157. .mi-dw-not-authed,
  158. .mi-dw-lite-content {
  159. text-align: center;
  160. }
  161. .postbox .inside .mi-dw-not-authed h2 {
  162. font-size: 18px;
  163. margin: 0 auto;
  164. max-width: 250px;
  165. }
  166. .mi-dw-not-authed p {
  167. font-size: 14px;
  168. margin: 18px auto;
  169. max-width: 240px;
  170. }
  171. .mi-dw-btn-large {
  172. background: #1f76c4;
  173. border-radius: 5px;
  174. color: #fff;
  175. display: inline-block;
  176. font-size: 14px;
  177. line-height: 1;
  178. margin-bottom: 10px;
  179. padding: 14px 28px;
  180. }
  181. .mi-dw-btn-large:hover,
  182. .mi-dw-btn-large:focus {
  183. color: #fff;
  184. }
  185. .mi-dw-btn-group {
  186. display: inline-block;
  187. position: relative;
  188. }
  189. .mi-dw-btn-group .mi-dw-btn-list {
  190. border-left: 1px solid #d8d8d8;
  191. border-right: 1px solid #d8d8d8;
  192. display: none;
  193. position: absolute;
  194. top: 100%;
  195. width: 100%;
  196. z-index: 9999;
  197. }
  198. .mi-dw-btn,
  199. .mi-dw-btn-group-label {
  200. background: #fff;
  201. border: 1px solid #d8d8d8;
  202. border-radius: 5px;
  203. cursor: pointer;
  204. display: inline-block;
  205. font-size: 13px;
  206. font-weight: 400;
  207. line-height: 1;
  208. outline: none;
  209. padding: 8px 20px 8px 10px;
  210. position: relative;
  211. text-align: left;
  212. width: 100%;
  213. }
  214. .mi-dw-btn-group .mi-dw-btn {
  215. border-radius: 0;
  216. border-width: 0 0 1px 0;
  217. }
  218. .mi-dw-btn-group .mi-dw-btn.selected {
  219. background: #1f76c4;
  220. color: #fff;
  221. }
  222. .mi-dw-btn-group-label:after {
  223. border-color: #333333 transparent transparent transparent;
  224. border-style: solid;
  225. border-width: 3px 2.5px 0 2.5px;
  226. content: '';
  227. height: 0;
  228. margin-top: -1px;
  229. position: absolute;
  230. right: 8px;
  231. top: 50%;
  232. width: 0;
  233. }
  234. .mi-dw-btn-group.open .mi-dw-btn-group-label {
  235. border-radius: 5px 5px 0 0;
  236. }
  237. .mi-dw-btn-group.open .mi-dw-btn-list {
  238. display: block;
  239. }
  240. .mi-dw-ui-tooltip {
  241. background-color: #363636;
  242. border-radius: 4px;
  243. box-shadow: 0 0 24px rgba(51, 51, 51, 0.33);
  244. color: #fff;
  245. font-size: 8px;
  246. max-width: 226px !important;
  247. padding: 4px 8px;
  248. position: absolute;
  249. z-index: 99999;
  250. }
  251. .mi-dw-ui-tooltip:after {
  252. border-color: #363636 transparent transparent transparent;
  253. border-style: solid;
  254. border-width: 3px 3px 0 3px;
  255. content: '';
  256. height: 0;
  257. left: 50%;
  258. margin-left: -3px;
  259. position: absolute;
  260. top: 100%;
  261. width: 0;
  262. }
  263. .mi-animation-shake {
  264. animation: shake 1000ms cubic-bezier(.36, .07, .19, .97) both;
  265. transform: translate3d(0, 0, 0);
  266. backface-visibility: hidden;
  267. perspective: 1000px;
  268. }
  269. .js #monsterinsights_reports_widget.closed .inside {
  270. display: block;
  271. }
  272. @keyframes shake {
  273. 10%, 90% {
  274. transform: translate3d(-1px, 0, 0) rotate(3deg);
  275. }
  276. 20%, 80% {
  277. transform: translate3d(2px, 0, 0) rotate(-3deg);
  278. }
  279. 30%, 50%, 70% {
  280. transform: translate3d(-4px, 0, 0) rotate(3deg);
  281. }
  282. 40%, 60% {
  283. transform: translate3d(4px, 0, 0) rotate(-3deg);
  284. }
  285. }