header.html 19 KB

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