pmd.css.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Designer styles for the pmahomme theme
  5. *
  6. * @package PhpMyAdmin-theme
  7. * @subpackage PMAHomme
  8. */
  9. // unplanned execution path
  10. if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) {
  11. exit();
  12. }
  13. ?>
  14. /* Designer */
  15. .input_tab {
  16. background-color: #A6C7E1;
  17. color: #000;
  18. }
  19. .content_fullscreen {
  20. position: relative;
  21. overflow: auto;
  22. }
  23. #canvas_outer {
  24. position: relative;
  25. }
  26. #canvas {
  27. background-color: #fff;
  28. color: #000;
  29. }
  30. canvas.pmd {
  31. display: inline-block;
  32. overflow: hidden;
  33. text-align: left;
  34. }
  35. canvas.pmd * {
  36. behavior: url(#default#VML);
  37. }
  38. .pmd_tab {
  39. background-color: #fff;
  40. color: #000;
  41. border-collapse: collapse;
  42. border: 1px solid #aaa;
  43. z-index: 1;
  44. -moz-user-select: none;
  45. }
  46. .tab_zag {
  47. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header.png'); ?>);
  48. background-repeat: repeat-x;
  49. text-align: center;
  50. cursor: move;
  51. padding: 1px;
  52. font-weight: bold;
  53. }
  54. .tab_zag_2 {
  55. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header_Linked.png'); ?>);
  56. background-repeat: repeat-x;
  57. text-align: center;
  58. cursor: move;
  59. padding: 1px;
  60. font-weight: bold;
  61. }
  62. .tab_field {
  63. background: #fff;
  64. color: #000;
  65. cursor: default;
  66. }
  67. .tab_field_2 {
  68. background-color: #CCFFCC;
  69. color: #000;
  70. background-repeat: repeat-x;
  71. cursor: default;
  72. }
  73. .tab_field_3 {
  74. background-color: #FFE6E6; /*#DDEEFF*/
  75. color: #000;
  76. cursor: default;
  77. }
  78. #pmd_hint {
  79. white-space: nowrap;
  80. position: absolute;
  81. background-color: #99FF99;
  82. color: #000;
  83. <?php echo $left; ?>: 200px;
  84. top: 50px;
  85. z-index: 3;
  86. border: #00CC66 solid 1px;
  87. display: none;
  88. }
  89. .scroll_tab {
  90. overflow: auto;
  91. width: 100%;
  92. height: 500px;
  93. }
  94. .pmd_Tabs {
  95. cursor: default;
  96. color: #0055bb;
  97. white-space: nowrap;
  98. text-decoration: none;
  99. text-indent: 3px;
  100. font-weight: bold;
  101. margin-left: 2px;
  102. text-align: <?php echo $left; ?>;
  103. background-color: #fff;
  104. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/left_panel_butt.png'); ?>);
  105. border: #ccc solid 1px;
  106. }
  107. .pmd_Tabs2 {
  108. cursor: default;
  109. color: #0055bb;
  110. background: #FFEE99;
  111. text-indent: 3px;
  112. font-weight: bold;
  113. white-space: nowrap;
  114. text-decoration: none;
  115. border: #9999FF solid 1px;
  116. text-align: <?php echo $left; ?>;
  117. }
  118. .owner {
  119. font-weight: normal;
  120. color: #888;
  121. }
  122. .option_tab {
  123. padding-left: 2px;
  124. padding-right: 2px;
  125. width: 5px;
  126. }
  127. .select_all {
  128. vertical-align: top;
  129. padding-left: 2px;
  130. padding-right: 2px;
  131. cursor: default;
  132. width: 1px;
  133. color: #000;
  134. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header.png'); ?>);
  135. background-repeat: repeat-x;
  136. }
  137. .small_tab {
  138. vertical-align: top;
  139. background-color: #0064ea;
  140. color: #fff;
  141. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/small_tab.png'); ?>);
  142. cursor: default;
  143. text-align: center;
  144. font-weight: bold;
  145. padding-left: 2px;
  146. padding-right: 2px;
  147. width: 1px;
  148. text-decoration: none;
  149. }
  150. .small_tab2 {
  151. vertical-align: top;
  152. color: #fff;
  153. background-color: #FF9966;
  154. cursor: default;
  155. padding-left: 2px;
  156. padding-right: 2px;
  157. text-align: center;
  158. font-weight: bold;
  159. width: 1px;
  160. text-decoration: none;
  161. }
  162. .small_tab_pref {
  163. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header.png'); ?>);
  164. background-repeat: repeat-x;
  165. text-align: center;
  166. width: 1px;
  167. }
  168. .small_tab_pref2 {
  169. vertical-align: top;
  170. color: #fff;
  171. background-color: #FF9966;
  172. cursor: default;
  173. text-align: center;
  174. font-weight: bold;
  175. width: 1px;
  176. text-decoration: none;
  177. }
  178. .butt {
  179. border: #4477aa solid 1px;
  180. font-weight: bold;
  181. height: 19px;
  182. width: 70px;
  183. background-color: #fff;
  184. color: #000;
  185. vertical-align: baseline;
  186. }
  187. .L_butt2_1 {
  188. padding: 1px;
  189. text-decoration: none;
  190. vertical-align: middle;
  191. cursor: default;
  192. }
  193. .L_butt2_2 {
  194. padding: 0;
  195. border: #0099CC solid 1px;
  196. background: #FFEE99;
  197. color: #000;
  198. text-decoration: none;
  199. vertical-align: middle;
  200. cursor: default;
  201. }
  202. /* ---------------------------------------------------------------------------*/
  203. .bor {
  204. width: 10px;
  205. height: 10px;
  206. }
  207. .frams1 {
  208. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/1.png'); ?>) no-repeat right bottom;
  209. }
  210. .frams2 {
  211. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/2.png'); ?>) no-repeat left bottom;
  212. }
  213. .frams3 {
  214. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/3.png'); ?>) no-repeat left top;
  215. }
  216. .frams4 {
  217. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/4.png'); ?>) no-repeat right top;
  218. }
  219. .frams5 {
  220. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/5.png'); ?>) repeat-x center bottom;
  221. }
  222. .frams6 {
  223. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/6.png'); ?>) repeat-y left;
  224. }
  225. .frams7 {
  226. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/7.png'); ?>) repeat-x top;
  227. }
  228. .frams8 {
  229. background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/8.png'); ?>) repeat-y right;
  230. }
  231. #osn_tab {
  232. background-color: #fff;
  233. color: #000;
  234. border: #A9A9A9 solid 1px;
  235. }
  236. .pmd_header {
  237. background-color: #EAEEF0;
  238. color: #000;
  239. text-align: center;
  240. font-weight: bold;
  241. margin: 0;
  242. padding: 0;
  243. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/top_panel.png'); ?>);
  244. background-position: top;
  245. background-repeat: repeat-x;
  246. border-right: #999 solid 1px;
  247. border-left: #999 solid 1px;
  248. height: 28px;
  249. z-index: 101;
  250. width: 100%
  251. }
  252. .pmd_header a {
  253. display: block;
  254. float: <?php echo $left; ?>;
  255. margin: 3px 1px 4px;
  256. height: 20px;
  257. border: 1px dotted #fff;
  258. }
  259. .pmd_header .M_bord {
  260. display: block;
  261. float: <?php echo $left; ?>;
  262. margin: 4px;
  263. height: 20px;
  264. width: 2px;
  265. }
  266. .pmd_header a.first {
  267. margin-right: 1em;
  268. }
  269. .pmd_header a.last {
  270. margin-left: 1em;
  271. }
  272. a.M_butt_Selected_down_IE,
  273. a.M_butt_Selected_down {
  274. border: 1px solid #C0C0BB;
  275. background-color: #99FF99;
  276. color: #000;
  277. }
  278. a.M_butt_Selected_down_IE:hover,
  279. a.M_butt_Selected_down:hover,
  280. a.M_butt:hover {
  281. border: 1px solid #0099CC;
  282. background-color: #FFEE99;
  283. color: #000;
  284. }
  285. #layer_menu {
  286. z-index: 100;
  287. position: absolute;
  288. <?php echo $left; ?>: 0;
  289. background-color: #EAEEF0;
  290. border: #999 solid 1px;
  291. }
  292. #layer_upd_relation {
  293. position: absolute;
  294. <?php echo $left; ?>: 637px;
  295. top: 224px;
  296. z-index: 100;
  297. }
  298. #layer_new_relation {
  299. position: absolute;
  300. <?php echo $left; ?>: 636px;
  301. top: 85px;
  302. z-index: 100;
  303. width: 153px;
  304. }
  305. #pmd_optionse {
  306. position: absolute;
  307. <?php echo $left; ?>: 636px;
  308. top: 85px;
  309. z-index: 100;
  310. width: 153px;
  311. }
  312. #layer_menu_sizer {
  313. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/resize.png'); ?>);
  314. cursor: nw-resize;
  315. width: 16px;
  316. height: 16px;
  317. }
  318. .panel {
  319. position: fixed;
  320. top: 60px;
  321. <?php echo $right; ?>: 0;
  322. display: none;
  323. background: #FFF;
  324. border: 1px solid gray;
  325. width: 350 px;
  326. height: auto;
  327. padding: 30px 170px 30px;
  328. padding-<?php echo $left; ?>: 30px;
  329. color: #FFF;
  330. z-index: 102;
  331. }
  332. a.trigger {
  333. position: fixed;
  334. text-decoration: none;
  335. top: 60px;
  336. <?php echo $right; ?>: 0;
  337. color: #fff;
  338. padding: 10px 40px 10px 15px;
  339. background: #333 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/plus.png'); ?>) 85% 55% no-repeat;
  340. border: 1px solid #444;
  341. display: block;
  342. z-index: 102;
  343. }
  344. a.trigger:hover {
  345. color: #080808;
  346. background: #fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/plus.png'); ?>) 85% 55% no-repeat;
  347. border: 1px solid #999;
  348. }
  349. a.active.trigger {
  350. background: #222 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/minus.png'); ?>) 85% 55% no-repeat;
  351. z-index: 999;
  352. }
  353. a.active.trigger:hover {
  354. background: #fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/minus.png'); ?>) 85% 55% no-repeat;
  355. }
  356. h2.tiger {
  357. background-repeat: repeat-x;
  358. padding: 1px;
  359. font-weight: bold;
  360. padding: 50px 20px 50px;
  361. margin: 0 0 5px 0;
  362. width: 250px;
  363. float: <?php echo $left; ?>;
  364. color : #333;
  365. text-align: center;
  366. }
  367. h2.tiger a {
  368. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header.png'); ?>);
  369. text-align: center;
  370. text-decoration: none;
  371. color : #333;
  372. display: block;
  373. }
  374. h2.tiger a:hover {
  375. color: #000;
  376. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header_Linked.png'); ?>);
  377. }
  378. h2.active {
  379. background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/Header.png'); ?>);
  380. background-repeat: repeat-x;
  381. padding: 1px;
  382. background-position: left bottom;
  383. }
  384. .toggle_container {
  385. margin: 0 0 5px;
  386. padding: 0;
  387. border-top: 1px solid #d6d6d6;
  388. background: #FFF;
  389. width: 250px;
  390. overflow: hidden;
  391. font-size: 1.2em;
  392. clear: both;
  393. }
  394. .toggle_container .block {
  395. background-color: #DBE4E8;
  396. padding: 40px 15px 40px 15px; /*--Padding of Container--*/
  397. border:1px solid #999;
  398. color: #000;
  399. }
  400. .history_table {
  401. text-align: center;
  402. background-color: #9999CC;
  403. }
  404. .history_table2 {
  405. text-align: center;
  406. background-color: #DBE4E8;
  407. }
  408. #filter {
  409. display: none;
  410. position: absolute;
  411. top: 0%;
  412. left: 0%;
  413. width: 100%;
  414. height: 100%;
  415. background-color: #CCA;
  416. z-index: 10;
  417. opacity: .5;
  418. filter: alpha(opacity=50);
  419. }
  420. #box {
  421. display: none;
  422. position: absolute;
  423. top: 20%;
  424. <?php echo $left; ?>: 30%;
  425. width: 500px;
  426. height: 220px;
  427. padding: 48px;
  428. margin: 0;
  429. border: 1px solid #000;
  430. background-color: #fff;
  431. z-index: 101;
  432. overflow: visible;
  433. }
  434. #boxtitle {
  435. position: absolute;
  436. float: center;
  437. top: 0;
  438. <?php echo $left; ?>: 0;
  439. width: 593px;
  440. height: 20px;
  441. padding: 0;
  442. padding-top: 4px;
  443. margin: 0;
  444. border-bottom: 4px solid #3CF;
  445. background-color: #D0DCE0;
  446. color: black;
  447. font-weight: bold;
  448. padding-<?php echo $left; ?>: 2px;
  449. text-align: <?php echo $left; ?>;
  450. }
  451. #tblfooter {
  452. background-color: #D3DCE3;
  453. float: <?php echo $right; ?>;
  454. padding-top: 10px;
  455. color: black;
  456. font-weight: normal;
  457. }
  458. #foreignkeychk {
  459. text-align: <?php echo $left; ?>;
  460. position: absolute;
  461. cursor: pointer;
  462. }