segments.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. */
  15. #content #segments .loader
  16. {
  17. background-position: 0 50%;
  18. padding-left: 21px;
  19. }
  20. #content #segments .reload
  21. {
  22. background-image: url( ../../img/ico/arrow-circle.png );
  23. background-position: 50% 50%;
  24. display: block;
  25. height: 30px;
  26. position: absolute;
  27. right: 10px;
  28. top: 10px;
  29. width: 30px;
  30. }
  31. #content #segments .reload.loader
  32. {
  33. padding-left: 0;
  34. }
  35. #content #segments .reload span
  36. {
  37. display: none;
  38. }
  39. #content #segments #result
  40. {
  41. width: 77%;
  42. }
  43. #content #segments #result #response
  44. {
  45. margin-left: 25px;
  46. }
  47. #content #segments .segments-holder ul {
  48. margin-left: 25px;
  49. }
  50. #content #segments .segments-holder li {
  51. margin-bottom: 2px;
  52. position: relative;
  53. width: 100%;
  54. }
  55. #content #segments .segments-holder li .tooltip {
  56. display: none;
  57. background: #f0f0f0;
  58. position: absolute;
  59. z-index: 1000;
  60. width:220px;
  61. height:120px;
  62. margin-left: 100%;
  63. opacity: .8;
  64. padding: 5px;
  65. border: 1px solid;
  66. border-radius: 5px;
  67. }
  68. #content #segments .segments-holder li .tooltip .label {
  69. float: left;
  70. width: 20%;
  71. opacity: 1;
  72. }
  73. #content #segments .segments-holder li:hover .tooltip {
  74. display:block;
  75. }
  76. #content #segments .segments-holder li dl,
  77. #content #segments .segments-holder li dt {
  78. padding-bottom: 1px;
  79. padding-top: 1px;
  80. }
  81. #content #segments .segments-holder li dl {
  82. min-width: 1px;
  83. }
  84. #content #segments .segments-holder li dt {
  85. color: #4D4D4D;
  86. left: -45px;
  87. overflow: hidden;
  88. position: absolute;
  89. top: 0;
  90. }
  91. #content #segments .segments-holder li dt div {
  92. display: block;
  93. padding-right: 4px;
  94. text-align: right;
  95. }
  96. #content #segments .segments-holder li dd {
  97. clear: left;
  98. float: left;
  99. margin-left: 2px;
  100. white-space: nowrap;
  101. width: 100%;
  102. }
  103. #content #segments .segments-holder li dd div.deleted {
  104. background-color: #808080;
  105. padding-left: 5px;
  106. }
  107. #content #segments .segments-holder li dd div.live {
  108. background-color: #DDDDDD;
  109. float: left;
  110. }
  111. #content #segments .segments-holder li dd div.start {
  112. float: left;
  113. width: 20%;
  114. }
  115. #content #segments .segments-holder li dd div.end {
  116. text-align: right;
  117. }
  118. .merge-candidate {
  119. background-color: #FFC9F9 !important;
  120. }
  121. #content #segments .segments-holder li dd div.w5 {
  122. width: 20%;
  123. float: left;
  124. }
  125. #content #segments #auto-refresh {
  126. margin-top: 4px;
  127. background-position: 50% 50%;
  128. display: block;
  129. height: 30px;
  130. position: absolute;
  131. right: 50px;
  132. top: 10px;
  133. }
  134. #content #segments #auto-refresh a {
  135. background-image: url( ../../img/ico/ui-check-box-uncheck.png );
  136. background-position: 0 50%;
  137. color: #4D4D4D;
  138. display: block;
  139. padding-left: 21px;
  140. }
  141. #content #segments #auto-refresh a.on,
  142. #content #segments #auto-refresh a:hover {
  143. color: #333;
  144. }
  145. #content #segments #auto-refresh a.on {
  146. background-image: url( ../../img/ico/ui-check-box.png );
  147. }