header.html 22 KB

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