header.html 18 KB

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