header.html 21 KB

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