Extension_ImageService_Plugin_Admin.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. span.w3tc-convert:before {
  2. content:'\0041';
  3. display: inline-block;
  4. font-family: 'w3tc';
  5. font-size: x-large;
  6. }
  7. th span.w3tc-convert:before,
  8. th #w3tc-imageservice-settings {
  9. vertical-align: text-bottom;
  10. }
  11. p span.w3tc-convert:before {
  12. vertical-align: middle;
  13. }
  14. .w3tc-converted-reduced {
  15. color: green;
  16. }
  17. .w3tc-disabled {
  18. cursor: not-allowed;
  19. opacity: 0.7;
  20. }
  21. .w3tc-disabled > a {
  22. color: currentColor;
  23. display: inline-block; /* For IE11 / Ms Edge bug */
  24. pointer-events: none;
  25. text-decoration: none;
  26. }
  27. /* Statistics section on the extension settings, tools, and statistics page. */
  28. #w3tc-imageservice-counts td,
  29. #w3tc-imageservice-usage td {
  30. padding: 1px 10px;
  31. }
  32. #w3tc_default_save_and_flush_extension_imageservice_configuration {
  33. display: none;
  34. }
  35. @-webkit-keyframes w3tc-animation-rotating {
  36. from {
  37. -webkit-transform: rotate(0deg);
  38. -o-transform: rotate(0deg);
  39. transform: rotate(0deg);
  40. }
  41. to {
  42. -webkit-transform: rotate(360deg);
  43. -o-transform: rotate(360deg);
  44. transform: rotate(360deg);
  45. }
  46. }
  47. @keyframes w3tc-animation-rotating {
  48. from {
  49. -ms-transform: rotate(0deg);
  50. -moz-transform: rotate(0deg);
  51. -webkit-transform: rotate(0deg);
  52. -o-transform: rotate(0deg);
  53. transform: rotate(0deg);
  54. }
  55. to {
  56. -ms-transform: rotate(360deg);
  57. -moz-transform: rotate(360deg);
  58. -webkit-transform: rotate(360deg);
  59. -o-transform: rotate(360deg);
  60. transform: rotate(360deg);
  61. }
  62. }
  63. .w3tc-rotating {
  64. -webkit-animation: w3tc-animation-rotating 2s linear infinite;
  65. -moz-animation: w3tc-animation-rotating 2s linear infinite;
  66. -ms-animation: w3tc-animation-rotating 2s linear infinite;
  67. -o-animation: w3tc-animation-rotating 2s linear infinite;
  68. animation: w3tc-animation-rotating 2s linear infinite;
  69. }
  70. @-webkit-keyframes w3tc-highlight {
  71. 0% {
  72. background: #fefefe;
  73. }
  74. 50% {
  75. background: gray;
  76. }
  77. to {
  78. background: #fefefe;
  79. }
  80. }
  81. @keyframes w3tc-highlight {
  82. 0% {
  83. background: #fefefe;
  84. }
  85. 50% {
  86. background: gray;
  87. }
  88. to {
  89. background: #fefefe;
  90. }
  91. }
  92. .w3tc-highlight {
  93. -webkit-animation: w3tc-highlight 1s linear;
  94. -o-animation: w3tc-highlight 1s linear;
  95. animation: w3tc-highlight 1s linear;
  96. -webkit-animation-iteration-count: 1;
  97. -o-animation-iteration-count: 1;
  98. animation-iteration-count: 1;
  99. }
  100. #w3tc_dashboard_banner {
  101. width: 100%;
  102. }
  103. a:hover {
  104. cursor: pointer;
  105. }
  106. .media_page_w3tc_extension_page_imageservice #licensing_terms {
  107. display:none;
  108. }