header.html 19 KB

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