header.html 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. <html>
  2. <head>
  3. <link rel="icon" href="/images/favicon.ico" type="image/x-icon">
  4. <title>Vesta - <?php echo "$TAB"; ?> </title>
  5. <style type="text/css">
  6. body {
  7. margin: 0;
  8. margin-left: auto;
  9. margin-right: auto;
  10. background-image: url(/images/b.png);
  11. }
  12. .main {
  13. background: #ffffff;
  14. box-shadow: 0 0 2px 2px #d7d7d7;
  15. border-right: 1px solid #cccccc;
  16. <?php
  17. if (!empty($_SESSION['look'])) {
  18. echo " border-left: 2px solid #f79b44;\n";
  19. echo " border-right: 2px solid #f79b44;\n";
  20. }
  21. ?>
  22. }
  23. .top {
  24. background: #555;
  25. color: #cce4f0;
  26. padding: 0;
  27. margin-left: auto;
  28. margin-right: auto;
  29. width: 990px;
  30. font-family: Arial, sans-serif;
  31. font-size: 10pt;
  32. text-align: left;
  33. line-height: 1.2em;
  34. border-top: 3px solid white;
  35. }
  36. .top-link {
  37. text-decoration: none;
  38. color: #e6e6e6;
  39. }
  40. .top-link:hover {
  41. text-decoration: underline;
  42. color: white;
  43. }
  44. .top-link:active{
  45. text-decoration: underline;
  46. color: #f5edb6;
  47. }
  48. .top-slink {
  49. text-decoration: none;
  50. color: #f5edb6;
  51. }
  52. .bottom {
  53. background: #ebe9dc;
  54. color: #555;
  55. margin: 30 0 0 0;
  56. padding: 4 20 8 0;
  57. margin-left: auto;
  58. margin-right: auto;
  59. width: 990px;
  60. font-family: Arial, sans-serif;
  61. font-size: 8pt;
  62. text-align: center;
  63. vertical-align:top;
  64. line-height: 0.8em;
  65. border-top: 4px solid #d6d4c9;
  66. }
  67. .bottom a:link {
  68. font-size: 8pt;
  69. text-decoration: none;
  70. color: #555;
  71. }
  72. .bottom a:visited {
  73. text-decoration: none;
  74. color: #555;
  75. }
  76. .bottom a:hover {
  77. text-decoration: underline;
  78. color: #7fa1cb;
  79. }
  80. .nav {
  81. background: #ebe9dc;
  82. margin-left: auto;
  83. margin-right: auto;
  84. width: 990px;
  85. text-align: left;
  86. vertical-align:top;
  87. padding: 0;
  88. border-bottom: 8px solid #F7F6ED;
  89. }
  90. .nav td {
  91. text-align: left;
  92. vertical-align:top;
  93. margin: 0;
  94. padding: 0;
  95. width: 103px;
  96. }
  97. #nav-block {
  98. padding: 0;
  99. }
  100. .logotd{
  101. width: 152px !important;
  102. }
  103. .logotd:hover{
  104. background: #ebe9dc !important;
  105. }
  106. #nav-block td {
  107. display: inline;
  108. list-style: none outside none;
  109. float: left;
  110. padding: 16px 7 2px 8px;
  111. line-height: 1.0em;
  112. font-size: 9pt;
  113. font-family: Arial, sans-serif;
  114. color: #2d2d2d;
  115. background: url(/images/transparent-image.png) no-repeat;
  116. }
  117. #nav-block td:hover {
  118. background: #fafafa;
  119. color: black;
  120. }
  121. .nav-active{
  122. background: #fafafa !important;
  123. }
  124. .nav-link {
  125. letter-spacing: -1.0px;
  126. font-size: 16pt;
  127. color: #555;
  128. font-family: Arial, sans-serif;
  129. text-decoration: none;
  130. }
  131. .nav-link:hover {
  132. color: #333;
  133. text-decoration: underline;
  134. }
  135. .nav-link:active {
  136. color: #ccc;
  137. text-decoration: underline;
  138. }
  139. .nav-slink {
  140. letter-spacing: -1.0px;
  141. font-size: 16pt;
  142. color: #7fa1cb;
  143. font-family: Arial, sans-serif;
  144. text-decoration: none;
  145. }
  146. .nav-slink:active {
  147. color: #ccc;
  148. text-decoration: underline;
  149. }
  150. .sub-menu {
  151. margin-left: auto;
  152. margin-right: auto;
  153. width: 990px;
  154. font-family: Arial, sans-serif;
  155. font-size: 10pt;
  156. text-align: left;
  157. vertical-align:top;
  158. padding: 0px 10px 0px 0;
  159. }
  160. .select-controls {
  161. color: #6A6A6A;
  162. font-size: 8pt;
  163. font-family: Arial, sans-serif;
  164. letter-spacing: 0.1em;
  165. text-decoration: none;
  166. }
  167. .select-controls:hover {
  168. text-decoration: underline;
  169. }
  170. .add {
  171. padding: 0 8px 0 3px;
  172. margin: 0;
  173. font-family: Arial, sans-serif;
  174. text-decoration: none;
  175. color: #8B99A2;
  176. font-size: 12pt;
  177. }
  178. .add:hover {
  179. text-decoration: underline;
  180. }
  181. .add:active {
  182. color: #34536A;
  183. }
  184. .counters {
  185. height: 58px;
  186. line-height: 1.4em;
  187. font-size: 9pt;
  188. font-family: Arial, sans-serif;
  189. color: #555;
  190. padding: 8px 0 0 0;
  191. margin: 0;
  192. }
  193. .data {
  194. border-collapse:collapse;
  195. margin-left: auto;
  196. margin-right: auto;
  197. width: 990px;
  198. color: #e5a907;
  199. font-family: Arial, serif;
  200. font-size: 12pt;
  201. text-align: left;
  202. vertical-align:top;
  203. margin: 0;
  204. behavior:url("/css/csshover3.htc");
  205. }
  206. .data-row:hover {
  207. margin: 0;
  208. background-color: #f7f6ed;
  209. }
  210. .datarowhover {
  211. margin: 0;
  212. background-color: #f7f6ed;
  213. }
  214. .data-null {
  215. margin: 0;
  216. width: 990px;
  217. height: 10px;
  218. border-top:1px dotted #dce8f5;
  219. }
  220. .data-spacer {
  221. margin: 0;
  222. width: 990px;
  223. }
  224. .data-add {
  225. margin: 0;
  226. background-color: #f7f6ed;
  227. }
  228. .data-dotted {
  229. text-align: left;
  230. vertical-align:top;
  231. border-top:1px dotted #dce8f5;
  232. padding: 0 0 26px 0;
  233. margin: 0;
  234. }
  235. .data-dotted td {
  236. margin: 0;
  237. }
  238. .data-col1 {
  239. text-align: left;
  240. padding: 0;
  241. }
  242. .data-col2 {
  243. text-align: left;
  244. padding: 0;
  245. overflow: hidden;
  246. }
  247. .data-col5 {
  248. table-layout: fixed;
  249. text-align: left;
  250. padding: 0;
  251. overflow: hidden;
  252. white-space: nowrap;
  253. }
  254. .data-date {
  255. padding: 0 0 0 18;
  256. letter-spacing: 0.3em;
  257. font-size: 8pt;
  258. font-family: Tahoma;
  259. color: #6A6A6A
  260. }
  261. .data-active {
  262. font-size: 8pt;
  263. font-family: Arial;
  264. letter-spacing: 0.1em;
  265. color: #9ba68c;
  266. padding: 0 0 13 18;
  267. }
  268. .data-suspended {
  269. font-size: 8pt;
  270. font-family: Arial;
  271. letter-spacing: 0.1em;
  272. color: #de6c5d;
  273. padding: 0 0 13 18;
  274. }
  275. .data-controls {
  276. border-left: 1px solid #E6E6E6;
  277. font-size: 8pt;
  278. font-family: Arial, sans-serif;
  279. padding: 2 5 0 5;
  280. letter-spacing: 0.1em;
  281. }
  282. .data-controls:hover {
  283. background: #f79b44;
  284. }
  285. .data-controls a:link {
  286. color: #34536A;
  287. text-decoration: none;
  288. }
  289. .data-controls a:visited {
  290. color: #34536A;
  291. text-decoration: none;
  292. }
  293. .data-controls a:hover {
  294. color: #ffffff;
  295. text-decoration: none;
  296. }
  297. .data-controls a:active {
  298. color: #433832;
  299. text-decoration: none;
  300. }
  301. .data-count {
  302. background: #ebe9dc;
  303. color: #555;
  304. font-size: 8pt;
  305. font-family: Arial;
  306. margin: 18px 0 0 0;
  307. text-align:right;
  308. padding: 0 16px 0 0;
  309. }
  310. .chart1 {
  311. font-family: Arial, sans-serif;
  312. font-size: 10pt;
  313. }
  314. .chart2 {
  315. color: #484243;
  316. font-family: Arial, sans-serif;
  317. font-size: 8pt;
  318. }
  319. .username {
  320. color: #555555;
  321. font-family: Arial, sans-serif;
  322. font-size: 16pt;
  323. line-height: 1.2em;
  324. }
  325. .domain {
  326. color: #555555;
  327. font-family: Arial, sans-serif;
  328. font-size: 16pt;
  329. line-height: 0.8em;
  330. }
  331. .cron {
  332. color: #555555;
  333. font-family: Arial, sans-serif;
  334. font-size: 14pt;
  335. }
  336. .log {
  337. color: #555555;
  338. font-family: Arial, sans-serif;
  339. font-size: 12pt;
  340. }
  341. .aliases {
  342. font-family: Arial;
  343. font-size: 12pt;
  344. color: #99a7af;
  345. padding: 0 0 0 8px;
  346. }
  347. .nginx-ext {
  348. color: black;
  349. vertical-align:top;
  350. font-family: Arial, sans-serif;
  351. font-size: 10pt;
  352. }
  353. .fullname {
  354. font-family: Arial;
  355. font-size: 14pt;
  356. color: #99a7af;
  357. padding: 0 0 0 8px;
  358. }
  359. .counter-name {
  360. vertical-align:top;
  361. line-height: 1.2em;
  362. font-family: Arial, sans-serif;
  363. font-size: 10pt;
  364. color: #484243;
  365. color: #5c5455;
  366. }
  367. .cron-counter-name {
  368. vertical-align:top;
  369. line-height: 0.8em;
  370. font-family: Arial, sans-serif;
  371. font-size: 8pt;
  372. padding: 4 0 0 0;
  373. color: #484243;
  374. color: #5c5455;
  375. }
  376. .counter-value {
  377. vertical-align:top;
  378. line-height: 1.2em;
  379. font-family: Arial, sans-serif;
  380. font-size: 10pt;
  381. color: black;
  382. }
  383. .log-counter-value {
  384. vertical-align:top;
  385. font-family: Arial, sans-serif;
  386. font-size: 12pt;
  387. color: #484243;
  388. }
  389. .cron-counter-value {
  390. vertical-align:top;
  391. line-height: 1.2em;
  392. font-family: Arial, sans-serif;
  393. font-size: 12pt;
  394. color: #484243;
  395. }
  396. .add-name {
  397. font-family: Arial;
  398. font-size: 16pt;
  399. color: #777;
  400. padding: 0 0 0 10px;
  401. }
  402. .add-ok {
  403. font-family: Arial;
  404. font-size: 14pt;
  405. color: #62a358;
  406. padding: 0 0 0 6px;
  407. }
  408. .add-error {
  409. font-family: Arial;
  410. font-size: 14pt;
  411. color: #de6c5d;
  412. padding: 0 0 0 6px;
  413. }
  414. .add-text {
  415. font-family: Arial, sans-serif;
  416. font-size: 12pt;
  417. }
  418. .add-textinput {
  419. background-color: #FFFFFF;
  420. border: 1px solid #999999;
  421. border-radius: 3px 3px 3px 3px;
  422. color: #555555;
  423. font-family: Arial,sans-serif;
  424. font-size: 14pt;
  425. padding: 6px;
  426. width: 360px;
  427. height: 120px;
  428. }
  429. .add-textinput:hover {
  430. border: 1px solid #e5a907;
  431. }
  432. .add-textinput:disabled {
  433. background-color: #F1F1F1;
  434. }
  435. .add-input {
  436. background-color: #FFFFFF;
  437. border: 1px solid #999999;
  438. border-radius: 3px 3px 3px 3px;
  439. color: #555555;
  440. font-family: Arial,sans-serif;
  441. font-size: 14pt;
  442. padding: 6px;
  443. width: 360px;
  444. }
  445. .add-input:hover {
  446. border: 1px solid #e5a907;
  447. }
  448. .add-input:disabled {
  449. background-color: #f1f1f1;
  450. }
  451. .add-list {
  452. padding: 4px;
  453. font-size: 12pt;
  454. color: #555;
  455. border-radius: 3px 3px 3px 3px;
  456. border: 1px solid #999999;
  457. }
  458. .add-list:hover {
  459. border: 1px solid #e5a907;
  460. }
  461. .add-checkbox {
  462. padding: 4px;
  463. font-size: 12pt;
  464. }
  465. .add-checkbox:hover {
  466. border: 1px solid #e5a907;
  467. }
  468. button {
  469. cursor: pointer;
  470. color: #333;
  471. background-color: #fafafa;
  472. border: 1px solid #ACACAC;
  473. border-radius: 3px 3px 3px 3px;
  474. font-size: 12px;
  475. padding: 2px 16px;
  476. width: 108px;
  477. }
  478. button:hover {
  479. background-color: #f0f0f0;
  480. }
  481. button:active {
  482. background-color: #EBE9DC;
  483. }
  484. .button {
  485. cursor: pointer;
  486. color: #333;
  487. background-color: #fafafa;
  488. border: 1px solid #ACACAC;
  489. border-radius: 3px 3px 3px 3px;
  490. font-size: 14px;
  491. padding: 2px 16px;
  492. width: 108px;
  493. }
  494. .button:hover {
  495. background-color: #f0f0f0;
  496. }
  497. .button:active {
  498. background-color: #EBE9DC;
  499. }
  500. .genpass {
  501. color: #34536a;
  502. font-size: 8pt;
  503. font-family: Arial, sans-serif;
  504. padding: 0 5px 0 8px;
  505. letter-spacing: 0.1em;
  506. text-decoration: underline;
  507. }
  508. .genpass:hover {
  509. color: #7fa1cb;
  510. }
  511. .add-advanced {
  512. color: #34536a;
  513. font-size: 10pt;
  514. font-family: Arial, sans-serif;
  515. letter-spacing: 0.1em;
  516. text-decoration: none;
  517. border-bottom: 1px solid #f79b44;
  518. }
  519. .add-advanced:hover {
  520. color: #7fa1cb;
  521. }
  522. /* fixed header */
  523. .fixed{
  524. position: fixed;
  525. border: none;
  526. top: -3px;
  527. }
  528. *html .fixed{
  529. position:absolute;
  530. position:fixed; _position:absolute; top:0; _top:expression( eval(document.body.scrollTop) + 'px' );
  531. }
  532. #vstobjects{
  533. padding-top: 186px;
  534. width: 996px;
  535. padding-left: 3px;
  536. }
  537. </style>
  538. <!--[if IE]>
  539. <style type="text/css">
  540. html, body, div, span, applet, object, iframe {
  541. margin: 0;
  542. padding: 0;
  543. border: 0;
  544. font-size: 100%;
  545. font: inherit;
  546. vertical-align: baseline;
  547. }
  548. .top {
  549. border-top: 5px solid white;
  550. }
  551. .fixed {
  552. margin-top: -3px;
  553. }
  554. #vstobjects{
  555. padding-top: 186px;
  556. width: 996px;
  557. }
  558. #nav-block td {
  559. display: inline;
  560. list-style: none outside none;
  561. float: left;
  562. height: 94px;
  563. padding: 20px 11px 12px 13px;
  564. line-height: 1.0em;
  565. font-size: 9pt;
  566. font-family: Arial, sans-serif;
  567. color: #2d2d2d;
  568. background: url(/images/transparent-image.png) no-repeat;
  569. }
  570. </style>
  571. <![endif]-->
  572. <link type="text/css" href="/css/jquery-custom-dialogs.css" rel="stylesheet" />
  573. <script type="text/javascript" src="/js/jquery-1.7.2.min.js"></script>
  574. <script type="text/javascript" src="/js/jquery-ui-1.8.20.custom.min.js"></script>
  575. <script language="JavaScript">
  576. var checked=false;
  577. var frmname='';
  578. function checkedAll(frmname) {
  579. var valus= document.getElementById(frmname);
  580. if (checked==false) {
  581. checked=true;
  582. } else {
  583. checked = false;
  584. }
  585. for (var i =0; i < valus.elements.length; i++) {
  586. valus.elements[i].checked=checked;
  587. }
  588. }
  589. </script>
  590. </head>
  591. <body>
  592. <center>
  593. <table class="main">
  594. <tr>
  595. <td>
  596. <table class="fixed" >
  597. <tr>
  598. <td>