header.html 21 KB

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