header.html 22 KB

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