memcache_ui.css 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. @CHARSET "UTF-8";
  2. body { background:white; font-size:100.01%; margin:0; padding:0; }
  3. body,p,td,th,input,submit { /* font-size:0.8em; */ font-family:arial,helvetica,sans-serif; }
  4. * html body {font-size:0.8em}
  5. * html p {font-size:0.8em}
  6. * html td {font-size:0.8em}
  7. * html th {font-size:0.8em}
  8. * html input {font-size:0.8em}
  9. * html submit {font-size:0.8em}
  10. td { vertical-align:top }
  11. a { color:black; font-weight:none; text-decoration:none; }
  12. a:hover { text-decoration:underline; }
  13. div.content { padding:1em 1em 1em 1em; position:absolute; width:97%; z-index:100; }
  14. hr.memcache {
  15. background:white;
  16. border-bottom:solid rgb(102,102,153) 1px;
  17. border-style:none;
  18. border-top:solid rgb(102,102,153) 10px;
  19. height:12px;
  20. margin:0;
  21. margin-top:1px;
  22. padding:0;
  23. }
  24. ol,menu { margin:1em 0 0 0; padding:0.2em; margin-left:1em;}
  25. ol.menu li { display:inline; margin-right:0.7em; list-style:none; font-size:85%}
  26. ol.menu a {
  27. background:rgb(153,153,204);
  28. border:solid rgb(102,102,153) 2px;
  29. color:white;
  30. font-weight:bold;
  31. margin-right:0em;
  32. padding:0.1em 0.5em 0.1em 0.5em;
  33. text-decoration:none;
  34. margin-left: 5px;
  35. }
  36. ol.menu a.child_active {
  37. background:rgb(153,153,204);
  38. border:solid rgb(102,102,153) 2px;
  39. color:white;
  40. font-weight:bold;
  41. margin-right:0em;
  42. padding:0.1em 0.5em 0.1em 0.5em;
  43. text-decoration:none;
  44. border-left: solid black 5px;
  45. margin-left: 0px;
  46. }
  47. ol.menu span.active {
  48. background:rgb(153,153,204);
  49. border:solid rgb(102,102,153) 2px;
  50. color:black;
  51. font-weight:bold;
  52. margin-right:0em;
  53. padding:0.1em 0.5em 0.1em 0.5em;
  54. text-decoration:none;
  55. border-left: solid black 5px;
  56. }
  57. ol.menu span.inactive {
  58. background:rgb(193,193,244);
  59. border:solid rgb(182,182,233) 2px;
  60. color:white;
  61. font-weight:bold;
  62. margin-right:0em;
  63. padding:0.1em 0.5em 0.1em 0.5em;
  64. text-decoration:none;
  65. margin-left: 5px;
  66. }
  67. ol.menu a:hover {
  68. background:rgb(193,193,244);
  69. text-decoration:none;
  70. }
  71. div.info {
  72. background:rgb(204,204,204);
  73. border:solid rgb(204,204,204) 1px;
  74. margin-bottom:1em;
  75. }
  76. div.info h2 {
  77. background:rgb(204,204,204);
  78. color:black;
  79. font-size:1em;
  80. margin:0;
  81. padding:0.1em 1em 0.1em 1em;
  82. }
  83. div.info table {
  84. border:solid rgb(204,204,204) 1px;
  85. border-spacing:0;
  86. width:100%;
  87. }
  88. div.info table th {
  89. background:rgb(204,204,204);
  90. color:white;
  91. margin:0;
  92. padding:0.1em 1em 0.1em 1em;
  93. }
  94. div.info table th a.sortable { color:black; }
  95. div.info table tr.tr-0 { background:rgb(238,238,238); }
  96. div.info table tr.tr-1 { background:rgb(221,221,221); }
  97. div.info table td { padding:0.3em 1em 0.3em 1em; }
  98. div.info table td.td-0 { border-right:solid rgb(102,102,153) 1px; white-space:nowrap; }
  99. div.info table td.td-n { border-right:solid rgb(102,102,153) 1px; }
  100. div.info table td h3 {
  101. color:black;
  102. font-size:1.1em;
  103. margin-left:-0.3em;
  104. }
  105. .td-0 a , .td-n a, .tr-0 a , tr-1 a {
  106. text-decoration:underline;
  107. }
  108. div.info table td dl,
  109. div.info table td dl dt {
  110. display: inline;
  111. }
  112. div.info table td dl dt {
  113. font-weight: bold;
  114. }
  115. div.info table td dl dd {
  116. display: inline-block;
  117. margin-right: 2em;
  118. margin-left: 0.5em;
  119. width: 12em;
  120. }
  121. div.info table td div.slab-dump {
  122. -moz-column-count: 3;
  123. -moz-column-gap: 20px;
  124. -webkit-column-count: 3;
  125. -webkit-column-gap: 20px;
  126. column-count: 3;
  127. column-gap: 20px;
  128. }
  129. div.info table td a {
  130. display: block;
  131. }
  132. div.graph { margin-bottom:1em }
  133. div.graph h2 { background:rgb(204,204,204);; color:black; font-size:1em; margin:0; padding:0.1em 1em 0.1em 1em; }
  134. div.graph table { border:solid rgb(204,204,204) 1px; color:black; font-weight:normal; width:100%; }
  135. div.graph table td.td-0 { background:rgb(238,238,238); }
  136. div.graph table td.td-1 { background:rgb(221,221,221); }
  137. div.graph table td { padding:0.2em 1em 0.4em 1em; }
  138. div.div1,div.div2 { margin-bottom:1em; width:35em; }
  139. div.div3 { position:absolute; left:40em; top:1em; width:580px; }
  140. //div.div3 { position:absolute; left:37em; top:1em; right:1em; }
  141. div.sorting { margin:1.5em 0em 1.5em 2em }
  142. .center { text-align:center }
  143. .aright { position:absolute;right:1em }
  144. .right { text-align:right }
  145. .ok { color:rgb(0,200,0); font-weight:bold}
  146. .failed { color:rgb(200,0,0); font-weight:bold}
  147. span.box {
  148. border: black solid 1px;
  149. border-right:solid black 2px;
  150. border-bottom:solid black 2px;
  151. padding:0 0.5em 0 0.5em;
  152. margin-right:1em;
  153. }
  154. span.green { background:#60F060; padding:0 0.5em 0 0.5em}
  155. span.red { background:#D06030; padding:0 0.5em 0 0.5em }
  156. div.authneeded {
  157. background:rgb(238,238,238);
  158. border:solid rgb(204,204,204) 1px;
  159. color:rgb(200,0,0);
  160. font-size:1.2em;
  161. font-weight:bold;
  162. padding:2em;
  163. text-align:center;
  164. }
  165. input {
  166. background:rgb(153,153,204);
  167. border:solid rgb(102,102,153) 2px;
  168. color:white;
  169. font-weight:bold;
  170. margin-right:1em;
  171. padding:0.1em 0.5em 0.1em 0.5em;
  172. }
  173. /**
  174. * New version styles
  175. */
  176. /**
  177. * Header region
  178. */
  179. h1.memcache {
  180. background: rgb(153, 153, 204);
  181. margin: 0 0 -7px 0;
  182. padding: 0.5em 1em 0.5em 1em;
  183. }
  184. h1.memcache a: hover {
  185. color: rgb(90, 90, 90);
  186. text-decoration: none;
  187. }
  188. h1.memcache span.logo {
  189. background: rgb(119, 123, 180);
  190. border-bottom: solid black 1px;
  191. border-right: solid black 1px;
  192. color: black;
  193. display: block;
  194. font-size: 1em;
  195. font-style: italic;
  196. padding-left: 1.2em;
  197. padding-right: 1.2em;
  198. text-align: right;
  199. width: 130px;
  200. }
  201. h1.memcache span.logo span.name {
  202. color: white;
  203. font-size: 0.7em;
  204. padding: 0 0.8em 0 2em;
  205. }
  206. h1.memcache span.nameinfo {
  207. color: white;
  208. display: block /* was inline */;
  209. font-size: 0.4em;
  210. margin-left: 3em;
  211. }
  212. /* Unused style from PECL apc.php
  213. h1.memcache div.copy {
  214. color: black;
  215. font-size: 0.4em;
  216. position: absolute;
  217. right: 1em;
  218. }
  219. */
  220. /**
  221. * Generic "OK" style
  222. */
  223. div .status {
  224. background-color: #c0ffc0;
  225. }
  226. /**
  227. * Generic "not so OK" style
  228. */
  229. div .warning {
  230. background-color: #fff080;
  231. }
  232. /**
  233. * Generic "KO" style
  234. */
  235. div .error {
  236. background-color: #ffa080;
  237. }
  238. /**
  239. * Messages area
  240. */
  241. div.messages {
  242. border: thin solid gray;
  243. box-shadow: 0.1em 0.1em 0.5em silver;
  244. margin: 0.5em 1em;
  245. padding: 0;
  246. }
  247. div.messages ul {
  248. margin-bottom: 0;
  249. margin-left: 0;
  250. margin-top: 0;
  251. padding-left: 0;
  252. }
  253. div.messages li {
  254. list-style: none;
  255. margin-left: 0;
  256. padding: 0 0.5em;
  257. }
  258. div.messages pre {
  259. font-size: 0.8em;
  260. }