header.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  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: #777;
  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: #777;
  71. }
  72. .bottom a:visited {
  73. text-decoration: none;
  74. color: #777;
  75. }
  76. .bottom a:hover {
  77. text-decoration: underline;
  78. color: #333;
  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.2px;
  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.2px;
  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: #2d2d2d;
  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:disabled {
  430. background-color: #F1F1F1;
  431. }
  432. .add-input {
  433. background-color: #FFFFFF;
  434. border: 1px solid #999999;
  435. border-radius: 3px 3px 3px 3px;
  436. color: #555555;
  437. font-family: Arial,sans-serif;
  438. font-size: 14pt;
  439. padding: 6px;
  440. width: 360px;
  441. }
  442. .add-input:disabled {
  443. background-color: #F1F1F1;
  444. }
  445. .add-list {
  446. padding: 4px;
  447. font-size: 12pt;
  448. color: #555;
  449. }
  450. .add-checkbox {
  451. padding: 4px;
  452. font-size: 12pt;
  453. }
  454. button {
  455. cursor: pointer;
  456. color: #333;
  457. background-color: #fafafa;
  458. border: 1px solid #ACACAC;
  459. border-radius: 3px 3px 3px 3px;
  460. font-size: 12px;
  461. padding: 2px 16px;
  462. width: 108px;
  463. }
  464. button:hover {
  465. background-color: #f0f0f0;
  466. }
  467. button:active {
  468. background-color: #EBE9DC;
  469. }
  470. .button {
  471. cursor: pointer;
  472. color: #333;
  473. background-color: #fafafa;
  474. border: 1px solid #ACACAC;
  475. border-radius: 3px 3px 3px 3px;
  476. font-size: 14px;
  477. padding: 2px 16px;
  478. width: 108px;
  479. }
  480. .button:hover {
  481. background-color: #f0f0f0;
  482. }
  483. .button:active {
  484. background-color: #EBE9DC;
  485. }
  486. .genpass {
  487. color: #34536A;
  488. font-size: 8pt;
  489. font-family: Arial, sans-serif;
  490. padding: 0 5px 0 8px;
  491. letter-spacing: 0.1em;
  492. text-decoration: underline;
  493. }
  494. .genpass:hover {
  495. color: #9ba68c;
  496. }
  497. .add-advanced {
  498. color: #34536A;
  499. font-size: 10pt;
  500. font-family: Arial, sans-serif;
  501. letter-spacing: 0.1em;
  502. }
  503. .add-advanced:hover {
  504. color: #9ba68c;
  505. }
  506. /* fixed header */
  507. .fixed{
  508. position: fixed;
  509. border: none;
  510. top: -3px;
  511. }
  512. *html .fixed{
  513. position:absolute;
  514. position:fixed; _position:absolute; top:0; _top:expression( eval(document.body.scrollTop) + 'px' );
  515. }
  516. #vstobjects{
  517. padding-top: 186px;
  518. width: 996px;
  519. padding-left: 3px;
  520. }
  521. </style>
  522. <!--[if IE]>
  523. <style type="text/css">
  524. html, body, div, span, applet, object, iframe {
  525. margin: 0;
  526. padding: 0;
  527. border: 0;
  528. font-size: 100%;
  529. font: inherit;
  530. vertical-align: baseline;
  531. }
  532. .top {
  533. border-top: 5px solid white;
  534. }
  535. .fixed {
  536. margin-top: -3px;
  537. }
  538. #vstobjects{
  539. padding-top: 186px;
  540. width: 996px;
  541. }
  542. #nav-block td {
  543. display: inline;
  544. list-style: none outside none;
  545. float: left;
  546. height: 94px;
  547. padding: 20px 11px 12px 13px;
  548. line-height: 1.0em;
  549. font-size: 9pt;
  550. font-family: Arial, sans-serif;
  551. color: #2d2d2d;
  552. background: url(/images/transparent-image.png) no-repeat;
  553. }
  554. </style>
  555. <![endif]-->
  556. <link type="text/css" href="/css/jquery-custom-dialogs.css" rel="stylesheet" />
  557. <script type="text/javascript" src="/js/jquery-1.7.2.min.js"></script>
  558. <script type="text/javascript" src="/js/jquery-ui-1.8.20.custom.min.js"></script>
  559. <script language="JavaScript">
  560. var checked=false;
  561. var frmname='';
  562. function checkedAll(frmname) {
  563. var valus= document.getElementById(frmname);
  564. if (checked==false) {
  565. checked=true;
  566. } else {
  567. checked = false;
  568. }
  569. for (var i =0; i < valus.elements.length; i++) {
  570. valus.elements[i].checked=checked;
  571. }
  572. }
  573. </script>
  574. </head>
  575. <body>
  576. <center>
  577. <table class="main">
  578. <tr>
  579. <td>
  580. <table class="fixed" >
  581. <tr>
  582. <td>