header.html 18 KB

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