style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #plugin__upgrade {
  2. margin: 0 auto;
  3. height: 20em;
  4. overflow: auto;
  5. }
  6. #plugin__upgrade .log-error::before {
  7. content: "✗ ";
  8. color: #f00;
  9. }
  10. #plugin__upgrade .log-warning::before {
  11. content: "⚠ ";
  12. color: #f90;
  13. }
  14. #plugin__upgrade .log-notice::before {
  15. content: "☛ ";
  16. color: #ccc;
  17. }
  18. #plugin__upgrade_form {
  19. display: block;
  20. overflow: auto;
  21. margin: 1em;
  22. font-size: 120%;
  23. }
  24. #plugin__upgrade_careful {
  25. float: right;
  26. text-align: right;
  27. margin-right: 1em;
  28. color: red;
  29. }
  30. #plugin__upgrade_form {
  31. clear: right;
  32. }
  33. #plugin__upgrade_form button {
  34. float: right;
  35. margin-left: 0.5em;
  36. }
  37. #plugin__upgrade_form button.careful {
  38. opacity: 0.5;
  39. }
  40. /* based on http://cssdeck.com/labs/progress-bar */
  41. #plugin__upgrade_meter {
  42. height: 20px;
  43. position: relative;
  44. margin: 3em 1em 1em 1em;
  45. }
  46. #plugin__upgrade_meter ol {
  47. margin: 0;
  48. padding: 0;
  49. display: block;
  50. height: 100%;
  51. border-radius: 10px;
  52. background-color: #ddd;
  53. position: relative;
  54. list-style: none;
  55. }
  56. #plugin__upgrade_meter ol li {
  57. float: left;
  58. margin: 0;
  59. padding: 0;
  60. text-align: right;
  61. width: 19%;
  62. position: relative;
  63. border-radius: 10px;
  64. }
  65. #plugin__upgrade_meter ol li span{
  66. right:-0.5em;
  67. display: block;
  68. text-align: center;
  69. }
  70. #plugin__upgrade_meter ol li .step {
  71. top: -0.4em;
  72. padding: .2em 0;
  73. border: 3px solid #ddd;
  74. z-index: 99;
  75. font-size: 1.25em;
  76. color: #ddd;
  77. width: 1.5em;
  78. font-weight: 700;
  79. position: absolute;
  80. background-color: #fff;
  81. border-radius: 50%;
  82. }
  83. #plugin__upgrade_meter ol li .stage {
  84. color: #fff;
  85. font-weight: 700;
  86. }
  87. #plugin__upgrade_meter ol li.active {
  88. height: 20px;
  89. background: #aaa;
  90. }
  91. #plugin__upgrade_meter ol li.active span.stage {
  92. color: #000;
  93. }
  94. #plugin__upgrade_meter ol li.active span.step{
  95. color: #000;
  96. border: 3px solid __link__;
  97. }