common.css.php 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Common styles for the pmahomme theme
  5. *
  6. * @package PhpMyAdmin-theme
  7. * @subpackage PMAHomme
  8. */
  9. // unplanned execution path
  10. if (! defined('PHPMYADMIN') && ! defined('TESTSUITE')) {
  11. exit();
  12. }
  13. ?>
  14. /******************************************************************************/
  15. /* general tags */
  16. html {
  17. font-size: <?php echo $theme->getFontSize(); ?>
  18. }
  19. input,
  20. select,
  21. textarea {
  22. font-size: 1em;
  23. }
  24. body {
  25. <?php if (! empty($GLOBALS['cfg']['FontFamily'])) : ?>
  26. font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
  27. <?php endif; ?>
  28. padding: 0;
  29. margin: 0;
  30. margin-<?php echo $left; ?>: 240px;
  31. color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
  32. background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
  33. }
  34. body#loginform {
  35. margin: 0;
  36. }
  37. #page_content {
  38. margin: 0 .5em;
  39. }
  40. .desktop50 {
  41. width: 50%;
  42. }
  43. .all100 {
  44. width: 100%;
  45. }
  46. .all85{
  47. width: 85%;
  48. }
  49. .auth_config_tbl{
  50. margin: 0 auto;
  51. }
  52. <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) : ?>
  53. textarea,
  54. tt,
  55. pre,
  56. code {
  57. font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
  58. }
  59. <?php endif; ?>
  60. h1 {
  61. font-size: 140%;
  62. font-weight: bold;
  63. }
  64. h2 {
  65. font-size: 2em;
  66. font-weight: normal;
  67. text-shadow: 0 1px 0 #fff;
  68. padding: 10px 0 10px;
  69. padding-<?php echo $left; ?>: 3px;
  70. color: #777;
  71. }
  72. /* Hiding icons in the page titles */
  73. h2 img {
  74. display: none;
  75. }
  76. h2 a img {
  77. display: inline;
  78. }
  79. .data,
  80. .data_full_width {
  81. margin: 0 0 12px;
  82. }
  83. .data_full_width {
  84. width: 100%;
  85. }
  86. h3 {
  87. font-weight: bold;
  88. }
  89. a,
  90. a:link,
  91. a:visited,
  92. a:active,
  93. button.mult_submit,
  94. .checkall_box+label {
  95. text-decoration: none;
  96. color: #235a81;
  97. cursor: pointer;
  98. outline: none;
  99. }
  100. a:hover,
  101. button.mult_submit:hover,
  102. button.mult_submit:focus,
  103. .checkall_box+label:hover {
  104. text-decoration: underline;
  105. color: #235a81;
  106. }
  107. #initials_table {
  108. background: #f3f3f3;
  109. border: 1px solid #aaa;
  110. margin-bottom: 10px;
  111. -moz-border-radius: 5px;
  112. -webkit-border-radius: 5px;
  113. border-radius: 5px;
  114. }
  115. #initials_table td {
  116. padding: 8px !important;
  117. }
  118. #initials_table a {
  119. border: 1px solid #aaa;
  120. background: #fff;
  121. padding: 4px 8px;
  122. -moz-border-radius: 5px;
  123. -webkit-border-radius: 5px;
  124. border-radius: 5px;
  125. <?php echo $theme->getCssGradient('ffffff', 'e0e0e0'); ?>
  126. }
  127. #initials_table a.active {
  128. border: 1px solid #666;
  129. box-shadow: 0 0 2px #999;
  130. <?php echo $theme->getCssGradient('bbbbbb', 'ffffff'); ?>
  131. }
  132. dfn {
  133. font-style: normal;
  134. }
  135. dfn:hover {
  136. font-style: normal;
  137. cursor: help;
  138. }
  139. th {
  140. font-weight: bold;
  141. color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
  142. background: #f3f3f3;
  143. <?php echo $theme->getCssGradient('ffffff', 'cccccc'); ?>
  144. }
  145. a img {
  146. border: 0;
  147. }
  148. hr {
  149. color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
  150. background-color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
  151. border: 0;
  152. height: 1px;
  153. }
  154. form {
  155. padding: 0;
  156. margin: 0;
  157. display: inline;
  158. }
  159. input,
  160. select {
  161. /* Fix outline in Chrome: */
  162. outline: none;
  163. }
  164. input[type=text],
  165. input[type=password],
  166. input[type=number],
  167. input[type=date] {
  168. border-radius: 2px;
  169. -moz-border-radius: 2px;
  170. -webkit-border-radius: 2px;
  171. background: white;
  172. border: 1px solid #aaa;
  173. color: #555;
  174. padding: 4px;
  175. }
  176. input[type=text],
  177. input[type=password],
  178. input[type=number],
  179. input[type=date],
  180. input[type=checkbox],
  181. select {
  182. margin: 6px;
  183. }
  184. input[type=number] {
  185. width: 50px;
  186. }
  187. input[type=text],
  188. input[type=password],
  189. input[type=number],
  190. input[type=date],
  191. select {
  192. transition: all 0.2s;
  193. -ms-transition: all 0.2s;
  194. -webkit-transition: all 0.2s;
  195. -moz-transition: all 0.2s;
  196. }
  197. input[type=text][disabled],
  198. input[type=text][disabled]:hover,
  199. input[type=password][disabled],
  200. input[type=password][disabled]:hover,
  201. input[type=number][disabled],
  202. input[type=number][disabled]:hover,
  203. input[type=date][disabled],
  204. input[type=date][disabled]:hover,
  205. select[disabled],
  206. select[disabled]:hover {
  207. background: #e8e8e8;
  208. box-shadow: none;
  209. -webkit-box-shadow: none;
  210. -moz-box-shadow: none;
  211. }
  212. input[type=text]:hover,
  213. input[type=text]:focus,
  214. input[type=password]:hover,
  215. input[type=password]:focus,
  216. input[type=number]:hover,
  217. input[type=number]:focus,
  218. input[type=date]:hover,
  219. input[type=date]:focus,
  220. select:focus {
  221. border: 1px solid #7c7c7c;
  222. background: #fff;
  223. }
  224. input[type=text]:hover,
  225. input[type=password]:hover,
  226. input[type=number]:hover,
  227. input[type=date]:hover {
  228. box-shadow: 0 1px 3px #aaa;
  229. -webkit-box-shadow: 0 1px 3px #aaa;
  230. -moz-box-shadow: 0 1px 3px #aaa;
  231. }
  232. input[type=submit],
  233. input[type=button],
  234. button[type=submit]:not(.mult_submit) {
  235. font-weight: bold !important;
  236. }
  237. input[type=submit],
  238. input[type=button],
  239. button[type=submit]:not(.mult_submit),
  240. input[type=reset],
  241. input[name=submit_reset],
  242. input.button {
  243. margin: 6px 14px;
  244. border: 1px solid #aaa;
  245. padding: 3px 7px;
  246. color: #111;
  247. text-decoration: none;
  248. background: #ddd;
  249. border-radius: 12px;
  250. -webkit-border-radius: 12px;
  251. -moz-border-radius: 12px;
  252. text-shadow: 0 1px 0 #fff;
  253. <?php echo $theme->getCssGradient('f8f8f8', 'd8d8d8'); ?>
  254. }
  255. input[type=submit]:hover,
  256. input[type=button]:hover,
  257. button[type=submit]:not(.mult_submit):hover,
  258. input[type=reset]:hover,
  259. input[name=submit_reset]:hover,
  260. input.button:hover {
  261. position: relative;
  262. <?php echo $theme->getCssGradient('fff', 'ddd'); ?>
  263. cursor: pointer;
  264. }
  265. input[type=submit]:active,
  266. input[type=button]:active,
  267. button[type=submit]:not(.mult_submit):active,
  268. input[type=reset]:active,
  269. input[name=submit_reset]:active,
  270. input.button:active {
  271. position: relative;
  272. <?php echo $theme->getCssGradient('eee', 'ddd'); ?>
  273. box-shadow: 0 1px 6px -2px #333 inset;
  274. text-shadow: none;
  275. }
  276. input[type=submit]:disabled,
  277. input[type=button]:disabled,
  278. button[type=submit]:not(.mult_submit):disabled,
  279. input[type=reset]:disabled,
  280. input[name=submit_reset]:disabled,
  281. input.button:disabled {
  282. background: #ccc;
  283. color: #666;
  284. text-shadow: none;
  285. }
  286. textarea {
  287. overflow: visible;
  288. margin: 6px;
  289. }
  290. textarea.char {
  291. margin: 6px;
  292. }
  293. fieldset, .preview_sql {
  294. margin-top: 1em;
  295. border-radius: 4px 4px 0 0;
  296. -moz-border-radius: 4px 4px 0 0;
  297. -webkit-border-radius: 4px 4px 0 0;
  298. border: #aaa solid 1px;
  299. padding: 0.5em;
  300. background: #eee;
  301. text-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 2px #fff inset;
  302. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 2px #fff inset;
  303. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 2px #fff inset;
  304. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 2px #fff inset;
  305. }
  306. fieldset fieldset {
  307. margin: .8em;
  308. background: #fff;
  309. border: 1px solid #aaa;
  310. background: #E8E8E8;
  311. }
  312. fieldset legend {
  313. font-weight: bold;
  314. color: #444;
  315. padding: 5px 10px;
  316. border-radius: 2px;
  317. -moz-border-radius: 2px;
  318. -webkit-border-radius: 2px;
  319. border: 1px solid #aaa;
  320. background-color: #fff;
  321. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>3px 3px 15px #bbb;
  322. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>3px 3px 15px #bbb;
  323. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>3px 3px 15px #bbb;
  324. max-width: 100%;
  325. }
  326. .some-margin {
  327. margin: 1.5em;
  328. }
  329. /* buttons in some browsers (eg. Konqueror) are block elements, this breaks design */
  330. button {
  331. display: inline;
  332. }
  333. table caption,
  334. table th,
  335. table td {
  336. padding: .1em .3em;
  337. margin: .1em;
  338. vertical-align: middle;
  339. text-shadow: 0 1px 0 #fff;
  340. }
  341. /* 3.4 */
  342. .datatable{
  343. table-layout: fixed;
  344. }
  345. table {
  346. border-collapse: collapse;
  347. }
  348. thead th {
  349. border-right: 1px solid #fff;
  350. }
  351. th {
  352. text-align: left;
  353. }
  354. img,
  355. button {
  356. vertical-align: middle;
  357. }
  358. input[type="checkbox"],
  359. input[type="radio"] {
  360. vertical-align: -11%;
  361. }
  362. select {
  363. -moz-border-radius: 2px;
  364. -webkit-border-radius: 2px;
  365. border-radius: 2px;
  366. border: 1px solid #bbb;
  367. color: #333;
  368. padding: 3px;
  369. background: white;
  370. margin:6px;
  371. }
  372. select[multiple] {
  373. <?php echo $theme->getCssGradient('ffffff', 'f2f2f2'); ?>
  374. }
  375. /******************************************************************************/
  376. /* classes */
  377. .clearfloat {
  378. clear: both;
  379. }
  380. .floatleft {
  381. float: <?php echo $left; ?>;
  382. margin-<?php echo $right; ?>: 1em;
  383. }
  384. .floatright {
  385. float: <?php echo $right; ?>;
  386. }
  387. .center {
  388. text-align: center;
  389. }
  390. .displayblock {
  391. display: block;
  392. }
  393. table.nospacing {
  394. border-spacing: 0;
  395. }
  396. table.nopadding tr th, table.nopadding tr td {
  397. padding: 0;
  398. }
  399. th.left, td.left {
  400. text-align: left;
  401. }
  402. th.center, td.center {
  403. text-align: center;
  404. }
  405. th.right, td.right {
  406. text-align: right;
  407. padding-right: 1em;
  408. }
  409. tr.vtop th, tr.vtop td, th.vtop, td.vtop {
  410. vertical-align: top;
  411. }
  412. tr.vmiddle th, tr.vmiddle td, th.vmiddle, td.vmiddle {
  413. vertical-align: middle;
  414. }
  415. tr.vbottom th, tr.vbottom td, th.vbottom, td.vbottom {
  416. vertical-align: bottom;
  417. }
  418. .paddingtop {
  419. padding-top: 1em;
  420. }
  421. .separator {
  422. color: #fff;
  423. text-shadow: 0 1px 0 #000;
  424. }
  425. div.tools {
  426. /* border: 1px solid #000; */
  427. padding: .2em;
  428. }
  429. div.tools a {
  430. color: #3a7ead !important;
  431. }
  432. div.tools,
  433. fieldset.tblFooters {
  434. margin-top: 0;
  435. margin-bottom: .5em;
  436. /* avoid a thick line since this should be used under another fieldset */
  437. border-top: 0;
  438. text-align: <?php echo $right; ?>;
  439. float: none;
  440. clear: both;
  441. -webkit-border-radius: 0 0 4px 4px;
  442. -moz-border-radius: 0 0 4px 4px;
  443. border-radius: 0 0 4px 5px;
  444. }
  445. div.null_div {
  446. height: 20px;
  447. text-align: center;
  448. font-style: normal;
  449. min-width: 50px;
  450. }
  451. fieldset .formelement {
  452. float: <?php echo $left; ?>;
  453. margin-<?php echo $right; ?>: .5em;
  454. /* IE */
  455. white-space: nowrap;
  456. }
  457. /* revert for Gecko */
  458. fieldset div[class=formelement] {
  459. white-space: normal;
  460. }
  461. button.mult_submit {
  462. border: none;
  463. background-color: transparent;
  464. }
  465. /* odd items 1,3,5,7,... */
  466. table tbody:first-of-type tr:nth-child(odd),
  467. table tbody:first-of-type tr:nth-child(odd) th,
  468. #table_index tbody:nth-of-type(odd) tr,
  469. #table_index tbody:nth-of-type(odd) th {
  470. background: #fff;
  471. }
  472. /* even items 2,4,6,8,... */
  473. table tbody:first-of-type tr:nth-child(even),
  474. table tbody:first-of-type tr:nth-child(even) th,
  475. #table_index tbody:nth-of-type(even) tr,
  476. #table_index tbody:nth-of-type(even) th {
  477. background: #DFDFDF;
  478. }
  479. table tr th,
  480. table tr {
  481. text-align: <?php echo $left; ?>;
  482. }
  483. /* marked table rows */
  484. td.marked:not(.nomarker),
  485. table tr.marked:not(.nomarker) td,
  486. table tbody:first-of-type tr.marked:not(.nomarker) th,
  487. table tr.marked:not(.nomarker) {
  488. <?php echo $theme->getCssGradient('ced6df', 'b6c6d7'); ?>
  489. color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
  490. }
  491. /* hovered items */
  492. table tbody:first-of-type tr:not(.nopointer):hover,
  493. table tbody:first-of-type tr:not(.nopointer):hover th,
  494. .hover:not(.nopointer) {
  495. <?php echo $theme->getCssGradient('ced6df', 'b6c6d7'); ?>
  496. color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
  497. }
  498. /* hovered table rows */
  499. #table_index tbody:hover tr,
  500. #table_index tbody:hover th,
  501. table tr.hover:not(.nopointer) th {
  502. <?php echo $theme->getCssGradient('ced6df', 'b6c6d7'); ?>
  503. color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
  504. }
  505. /**
  506. * marks table rows/cells if the db field is in a where condition
  507. */
  508. .condition {
  509. border-color: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?> !important;
  510. }
  511. th.condition {
  512. border-width: 1px 1px 0 1px;
  513. border-style: solid;
  514. }
  515. td.condition {
  516. border-width: 0 1px 0 1px;
  517. border-style: solid;
  518. }
  519. tr:last-child td.condition {
  520. border-width: 0 1px 1px 1px;
  521. }
  522. <?php if ($GLOBALS['text_dir'] === 'ltr') : ?>
  523. /* for first th which must have right border set (ltr only) */
  524. .before-condition {
  525. border-right: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
  526. }
  527. <?php endif; ?>
  528. /**
  529. * cells with the value NULL
  530. */
  531. td.null {
  532. font-style: italic;
  533. color: #7d7d7d;
  534. }
  535. table .valueHeader {
  536. text-align: <?php echo $right; ?>;
  537. white-space: normal;
  538. }
  539. table .value {
  540. text-align: <?php echo $right; ?>;
  541. white-space: normal;
  542. }
  543. /* IE doesnt handles 'pre' right */
  544. table [class=value] {
  545. white-space: normal;
  546. }
  547. <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) : ?>
  548. .value {
  549. font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
  550. }
  551. <?php endif; ?>
  552. .attention {
  553. color: red;
  554. font-weight: bold;
  555. }
  556. .allfine {
  557. color: green;
  558. }
  559. img.lightbulb {
  560. cursor: pointer;
  561. }
  562. .pdflayout {
  563. overflow: hidden;
  564. clip: inherit;
  565. background-color: #fff;
  566. display: none;
  567. border: 1px solid #000;
  568. position: relative;
  569. }
  570. .pdflayout_table {
  571. background: #D3DCE3;
  572. color: #000;
  573. overflow: hidden;
  574. clip: inherit;
  575. z-index: 2;
  576. display: inline;
  577. visibility: inherit;
  578. cursor: move;
  579. position: absolute;
  580. font-size: 80%;
  581. border: 1px dashed #000;
  582. }
  583. /* Doc links in SQL */
  584. .cm-sql-doc {
  585. text-decoration: none;
  586. border-bottom: 1px dotted #000;
  587. color: inherit !important;
  588. }
  589. /* no extra space in table cells */
  590. td .icon {
  591. image-rendering: pixelated;
  592. margin: 0;
  593. }
  594. .selectallarrow {
  595. margin-<?php echo $right; ?>: .3em;
  596. margin-<?php echo $left; ?>: .6em;
  597. }
  598. /* message boxes: error, confirmation */
  599. #pma_errors, #pma_demo, #pma_footer {
  600. position: relative;
  601. padding: 0 0.5em;
  602. }
  603. .success h1,
  604. .notice h1,
  605. div.error h1 {
  606. border-bottom: 2px solid;
  607. font-weight: bold;
  608. text-align: <?php echo $left; ?>;
  609. margin: 0 0 .2em 0;
  610. }
  611. div.success,
  612. div.notice,
  613. div.error {
  614. margin: .5em 0 0.5em;
  615. border: 1px solid;
  616. background-repeat: no-repeat;
  617. <?php if ($GLOBALS['text_dir'] === 'ltr') : ?>
  618. background-position: 10px 50%;
  619. padding: 10px 10px 10px 10px;
  620. <?php else : ?>
  621. background-position: 99% 50%;
  622. padding: 10px 35px 10px 10px;
  623. <?php
  624. endif; ?>
  625. -moz-border-radius: 5px;
  626. -webkit-border-radius: 5px;
  627. border-radius: 5px;
  628. -moz-box-shadow: 0 1px 1px #fff inset;
  629. -webkit-box-shadow: 0 1px 1px #fff inset;
  630. box-shadow: 0 1px 1px #fff inset;
  631. }
  632. .success a,
  633. .notice a,
  634. .error a {
  635. text-decoration: underline;
  636. }
  637. .success {
  638. color: #000;
  639. background-color: #ebf8a4;
  640. }
  641. h1.success,
  642. div.success {
  643. border-color: #a2d246;
  644. }
  645. .success h1 {
  646. border-color: #00FF00;
  647. }
  648. .notice {
  649. color: #000;
  650. background-color: #e8eef1;
  651. }
  652. h1.notice,
  653. div.notice {
  654. border-color: #3a6c7e;
  655. }
  656. .notice h1 {
  657. border-color: #ffb10a;
  658. }
  659. .error {
  660. border: 1px solid maroon !important;
  661. color: #000;
  662. background: pink;
  663. }
  664. h1.error,
  665. div.error {
  666. border-color: #333;
  667. }
  668. div.error h1 {
  669. border-color: #ff0000;
  670. }
  671. .confirmation {
  672. color: #000;
  673. background-color: pink;
  674. }
  675. fieldset.confirmation {
  676. }
  677. fieldset.confirmation legend {
  678. }
  679. /* end messageboxes */
  680. .new_central_col{
  681. width: 100%;
  682. }
  683. .tblcomment {
  684. font-size: 70%;
  685. font-weight: normal;
  686. color: #000099;
  687. }
  688. .tblHeaders {
  689. font-weight: bold;
  690. color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
  691. background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
  692. }
  693. div.tools,
  694. .tblFooters {
  695. font-weight: normal;
  696. color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
  697. background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
  698. }
  699. .tblHeaders a:link,
  700. .tblHeaders a:active,
  701. .tblHeaders a:visited,
  702. div.tools a:link,
  703. div.tools a:visited,
  704. div.tools a:active,
  705. .tblFooters a:link,
  706. .tblFooters a:active,
  707. .tblFooters a:visited {
  708. color: #0000FF;
  709. }
  710. .tblHeaders a:hover,
  711. div.tools a:hover,
  712. .tblFooters a:hover {
  713. color: #FF0000;
  714. }
  715. /* forbidden, no privileges */
  716. .noPrivileges {
  717. color: #FF0000;
  718. font-weight: bold;
  719. }
  720. /* disabled text */
  721. .disabled,
  722. .disabled a:link,
  723. .disabled a:active,
  724. .disabled a:visited {
  725. color: #666;
  726. }
  727. .disabled a:hover {
  728. color: #666;
  729. text-decoration: none;
  730. }
  731. tr.disabled td,
  732. td.disabled {
  733. background-color: #f3f3f3;
  734. color: #aaa;
  735. }
  736. .nowrap {
  737. white-space: nowrap;
  738. }
  739. /**
  740. * login form
  741. */
  742. body#loginform h1,
  743. body#loginform a.logo {
  744. display: block;
  745. text-align: center;
  746. }
  747. body#loginform {
  748. margin-top: 1em;
  749. text-align: center;
  750. }
  751. body#loginform div.container {
  752. text-align: <?php echo $left; ?>;
  753. width: 30em;
  754. margin: 0 auto;
  755. }
  756. form.login label {
  757. float: <?php echo $left; ?>;
  758. width: 10em;
  759. font-weight: bolder;
  760. }
  761. form.login input[type=text],
  762. form.login input[type=password],
  763. form.login select {
  764. box-sizing: border-box;
  765. width: 14em;
  766. }
  767. .commented_column {
  768. border-bottom: 1px dashed #000;
  769. }
  770. .column_attribute {
  771. font-size: 70%;
  772. }
  773. .cfg_dbg_demo{
  774. margin: 0.5em 1em 0.5em 1em;
  775. }
  776. .central_columns_navigation{
  777. padding:1.5% 0em !important;
  778. }
  779. .central_columns_add_column{
  780. display:inline-block;
  781. margin-left:1%;
  782. max-width:50%
  783. }
  784. .message_errors_found{
  785. margin-top: 20px;
  786. }
  787. .repl_gui_skip_err_cnt{
  788. width: 30px;
  789. }
  790. .font_weight_bold{
  791. font-weight: bold;
  792. }
  793. .color_gray{
  794. color: gray;
  795. }
  796. .pma_sliding_message{
  797. display: inline-block;
  798. }
  799. /******************************************************************************/
  800. /* specific elements */
  801. /* topmenu */
  802. #topmenu a {
  803. text-shadow: 0 1px 0 #fff;
  804. }
  805. #topmenu .error {
  806. background: #eee;border: 0 !important;color: #aaa;
  807. }
  808. ul#topmenu,
  809. ul#topmenu2,
  810. ul.tabs {
  811. font-weight: bold;
  812. list-style-type: none;
  813. margin: 0;
  814. padding: 0;
  815. }
  816. ul#topmenu2 {
  817. margin: .25em .5em 0;
  818. height: 2em;
  819. clear: both;
  820. }
  821. ul#topmenu li,
  822. ul#topmenu2 li {
  823. float: <?php echo $left; ?>;
  824. margin: 0;
  825. vertical-align: middle;
  826. }
  827. #topmenu img,
  828. #topmenu2 img {
  829. margin-right: .5em;
  830. vertical-align: -3px;
  831. }
  832. .menucontainer {
  833. <?php echo $theme->getCssGradient('ffffff', 'dcdcdc'); ?>
  834. border-top: 1px solid #aaa;
  835. }
  836. .scrollindicator {
  837. display: none;
  838. }
  839. /* default tab styles */
  840. .tabactive {
  841. background: #fff !important;
  842. }
  843. ul#topmenu2 a {
  844. display: block;
  845. margin: 7px 6px 7px;
  846. margin-<?php echo $left; ?>: 0;
  847. padding: 4px 10px;
  848. white-space: nowrap;
  849. border: 1px solid #ddd;
  850. border-radius: 20px;
  851. -moz-border-radius: 20px;
  852. -webkit-border-radius: 20px;
  853. background: #f2f2f2;
  854. }
  855. span.caution {
  856. color: #FF0000;
  857. }
  858. fieldset.caution a {
  859. color: #FF0000;
  860. }
  861. fieldset.caution a:hover {
  862. color: #fff;
  863. background-color: #FF0000;
  864. }
  865. #topmenu {
  866. margin-top: .5em;
  867. padding: .1em .3em;
  868. }
  869. ul#topmenu ul {
  870. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 6px #ddd;
  871. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 3px #666;
  872. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 3px #666;
  873. }
  874. ul#topmenu ul.only {
  875. <?php echo $left; ?>: 0;
  876. }
  877. ul#topmenu > li {
  878. border-right: 1px solid #fff;
  879. border-left: 1px solid #ccc;
  880. border-bottom: 1px solid #ccc;
  881. }
  882. ul#topmenu > li:first-child {
  883. border-left: 0;
  884. }
  885. /* default tab styles */
  886. ul#topmenu a,
  887. ul#topmenu span {
  888. padding: .6em;
  889. }
  890. ul#topmenu ul a {
  891. border-width: 1pt 0 0 0;
  892. -moz-border-radius: 0;
  893. -webkit-border-radius: 0;
  894. border-radius: 0;
  895. }
  896. ul#topmenu ul li:first-child a {
  897. border-width: 0;
  898. }
  899. /* enabled hover/active tabs */
  900. ul#topmenu > li > a:hover,
  901. ul#topmenu > li > .tabactive {
  902. text-decoration: none;
  903. }
  904. ul#topmenu ul a:hover,
  905. ul#topmenu ul .tabactive {
  906. text-decoration: none;
  907. }
  908. ul#topmenu a.tab:hover,
  909. ul#topmenu .tabactive {
  910. /* background-color: <?php echo $GLOBALS['cfg']['MainBackground']; ?>; */
  911. }
  912. ul#topmenu2 a.tab:hover,
  913. ul#topmenu2 a.tabactive {
  914. background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
  915. border-radius: .3em;
  916. -moz-border-radius: .3em;
  917. -webkit-border-radius: .3em;
  918. text-decoration: none;
  919. }
  920. /* to be able to cancel the bottom border, use <li class="active"> */
  921. ul#topmenu > li.active {
  922. /* border-bottom: 0pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>; */
  923. border-right: 0;
  924. border-bottom-color: #fff;
  925. }
  926. /* end topmenu */
  927. /* zoom search */
  928. div#dataDisplay input,
  929. div#dataDisplay select {
  930. margin: 0;
  931. margin-<?php echo $right; ?>: .5em;
  932. }
  933. div#dataDisplay th {
  934. line-height: 2em;
  935. }
  936. table#tableFieldsId {
  937. width: 100%;
  938. }
  939. /* Calendar */
  940. table.calendar {
  941. width: 100%;
  942. }
  943. table.calendar td {
  944. text-align: center;
  945. }
  946. table.calendar td a {
  947. display: block;
  948. }
  949. table.calendar td a:hover {
  950. background-color: #CCFFCC;
  951. }
  952. table.calendar th {
  953. background-color: #D3DCE3;
  954. }
  955. table.calendar td.selected {
  956. background-color: #FFCC99;
  957. }
  958. img.calendar {
  959. border: none;
  960. }
  961. form.clock {
  962. text-align: center;
  963. }
  964. /* end Calendar */
  965. /* table stats */
  966. div#tablestatistics table {
  967. float: <?php echo $left; ?>;
  968. margin-bottom: .5em;
  969. margin-<?php echo $right; ?>: 1.5em;
  970. margin-top: .5em;
  971. min-width: 16em;
  972. }
  973. /* end table stats */
  974. /* server privileges */
  975. #tableuserrights td,
  976. #tablespecificuserrights td,
  977. #tabledatabases td {
  978. vertical-align: middle;
  979. }
  980. /* end server privileges */
  981. /* Heading */
  982. #topmenucontainer {
  983. padding-<?php echo $right; ?>: 1em;
  984. width: 100%;
  985. }
  986. #serverinfo {
  987. background: #888;
  988. padding: .3em .9em;
  989. padding-<?php echo $left; ?>: 2.2em;
  990. text-shadow: 0 1px 0 #000;
  991. max-width: 100%;
  992. max-height: 16px;
  993. overflow: hidden;
  994. }
  995. #serverinfo .item {
  996. white-space: nowrap;
  997. color: #fff;
  998. }
  999. #page_nav_icons {
  1000. position: fixed;
  1001. top: 0;
  1002. <?php echo $right; ?>: 0;
  1003. z-index: 99;
  1004. padding: .25em 0;
  1005. }
  1006. #goto_pagetop, #lock_page_icon, #page_settings_icon {
  1007. padding: .25em;
  1008. background: #888;
  1009. }
  1010. #page_settings_icon {
  1011. cursor: pointer;
  1012. display: none;
  1013. }
  1014. #page_settings_modal {
  1015. display: none;
  1016. }
  1017. #pma_navigation_settings {
  1018. display: none;
  1019. }
  1020. #span_table_comment {
  1021. font-weight: bold;
  1022. font-style: italic;
  1023. white-space: nowrap;
  1024. margin-left: 10px;
  1025. color: #D6D6D6;
  1026. text-shadow: none;
  1027. }
  1028. #serverinfo img {
  1029. margin: 0 .1em 0;
  1030. margin-<?php echo $left; ?>: .2em;
  1031. }
  1032. #textSQLDUMP {
  1033. width: 95%;
  1034. height: 95%;
  1035. font-family: Consolas, "Courier New", Courier, mono;
  1036. font-size: 110%;
  1037. }
  1038. #TooltipContainer {
  1039. position: absolute;
  1040. z-index: 99;
  1041. width: 20em;
  1042. height: auto;
  1043. overflow: visible;
  1044. visibility: hidden;
  1045. background-color: #ffffcc;
  1046. color: #006600;
  1047. border: .1em solid #000;
  1048. padding: .5em;
  1049. }
  1050. /* user privileges */
  1051. #fieldset_add_user_login div.item {
  1052. border-bottom: 1px solid silver;
  1053. padding-bottom: .3em;
  1054. margin-bottom: .3em;
  1055. }
  1056. #fieldset_add_user_login label {
  1057. float: <?php echo $left; ?>;
  1058. display: block;
  1059. width: 10em;
  1060. max-width: 100%;
  1061. text-align: <?php echo $right; ?>;
  1062. padding-<?php echo $right; ?>: .5em;
  1063. }
  1064. #fieldset_add_user_login span.options #select_pred_username,
  1065. #fieldset_add_user_login span.options #select_pred_hostname,
  1066. #fieldset_add_user_login span.options #select_pred_password {
  1067. width: 100%;
  1068. max-width: 100%;
  1069. }
  1070. #fieldset_add_user_login span.options {
  1071. float: <?php echo $left; ?>;
  1072. display: block;
  1073. width: 12em;
  1074. max-width: 100%;
  1075. padding-<?php echo $right; ?>: .5em;
  1076. }
  1077. #fieldset_add_user_login input {
  1078. width: 12em;
  1079. clear: <?php echo $right; ?>;
  1080. max-width: 100%;
  1081. }
  1082. #fieldset_add_user_login span.options input {
  1083. width: auto;
  1084. }
  1085. #fieldset_user_priv div.item {
  1086. float: <?php echo $left; ?>;
  1087. width: 9em;
  1088. max-width: 100%;
  1089. }
  1090. #fieldset_user_priv div.item div.item {
  1091. float: none;
  1092. }
  1093. #fieldset_user_priv div.item label {
  1094. white-space: nowrap;
  1095. }
  1096. #fieldset_user_priv div.item select {
  1097. width: 100%;
  1098. }
  1099. #fieldset_user_global_rights fieldset {
  1100. float: <?php echo $left; ?>;
  1101. }
  1102. #fieldset_user_group_rights fieldset {
  1103. float: <?php echo $left; ?>;
  1104. }
  1105. #fieldset_user_global_rights>legend input {
  1106. margin-<?php echo $left; ?>: 2em;
  1107. }
  1108. /* end user privileges */
  1109. /* serverstatus */
  1110. .linkElem:hover {
  1111. text-decoration: underline;
  1112. color: #235a81;
  1113. cursor: pointer;
  1114. }
  1115. h3#serverstatusqueries span {
  1116. font-size: 60%;
  1117. display: inline;
  1118. }
  1119. .buttonlinks {
  1120. float: <?php echo $right; ?>;
  1121. white-space: nowrap;
  1122. }
  1123. /* Also used for the variables page */
  1124. fieldset#tableFilter {
  1125. padding: 0.1em 1em;
  1126. }
  1127. div#serverStatusTabs {
  1128. margin-top: 1em;
  1129. }
  1130. caption a.top {
  1131. float: <?php echo $right; ?>;
  1132. }
  1133. div#serverstatusquerieschart {
  1134. float: <?php echo $left; ?>;
  1135. width: 500px;
  1136. height: 350px;
  1137. margin-<?php echo $right;?>: 50px;
  1138. }
  1139. table#serverstatusqueriesdetails,
  1140. table#serverstatustraffic {
  1141. float: <?php echo $left; ?>;
  1142. }
  1143. table#serverstatusqueriesdetails th {
  1144. min-width: 35px;
  1145. }
  1146. table#serverstatusvariables {
  1147. width: 100%;
  1148. margin-bottom: 1em;
  1149. }
  1150. table#serverstatusvariables .name {
  1151. width: 18em;
  1152. white-space: nowrap;
  1153. }
  1154. table#serverstatusvariables .value {
  1155. width: 6em;
  1156. }
  1157. table#serverstatusconnections {
  1158. float: <?php echo $left; ?>;
  1159. margin-<?php echo $left; ?>: 30px;
  1160. }
  1161. div#serverstatus table tbody td.descr a,
  1162. div#serverstatus table .tblFooters a {
  1163. white-space: nowrap;
  1164. }
  1165. div.liveChart {
  1166. clear: both;
  1167. min-width: 500px;
  1168. height: 400px;
  1169. padding-bottom: 80px;
  1170. }
  1171. #addChartDialog input[type="text"] {
  1172. margin: 0;
  1173. padding: 3px;
  1174. }
  1175. div#chartVariableSettings {
  1176. border: 1px solid #ddd;
  1177. background-color: #E6E6E6;
  1178. margin-left: 10px;
  1179. }
  1180. table#chartGrid td {
  1181. padding: 3px;
  1182. margin: 0;
  1183. }
  1184. table#chartGrid div.monitorChart {
  1185. background: #EBEBEB;
  1186. overflow: hidden;
  1187. border: none;
  1188. }
  1189. div.tabLinks {
  1190. margin-left: 0.3em;
  1191. float: <?php echo $left; ?>;
  1192. padding: 5px 0;
  1193. }
  1194. div.tabLinks a, div.tabLinks label {
  1195. margin-right: 7px;
  1196. }
  1197. div.tabLinks .icon {
  1198. margin: -0.2em 0.3em 0 0;
  1199. }
  1200. .popupContent {
  1201. display: none;
  1202. position: absolute;
  1203. border: 1px solid #CCC;
  1204. margin: 0;
  1205. padding: 3px;
  1206. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 3px #666;
  1207. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 3px #666;
  1208. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 3px #666;
  1209. background-color: #fff;
  1210. z-index: 2;
  1211. }
  1212. div#logTable {
  1213. padding-top: 10px;
  1214. clear: both;
  1215. }
  1216. div#logTable table {
  1217. width: 100%;
  1218. }
  1219. div#queryAnalyzerDialog {
  1220. min-width: 700px;
  1221. }
  1222. div#queryAnalyzerDialog div.CodeMirror-scroll {
  1223. height: auto;
  1224. }
  1225. div#queryAnalyzerDialog div#queryProfiling {
  1226. height: 300px;
  1227. }
  1228. div#queryAnalyzerDialog td.explain {
  1229. width: 250px;
  1230. }
  1231. div#queryAnalyzerDialog table.queryNums {
  1232. display: none;
  1233. border: 0;
  1234. text-align: left;
  1235. }
  1236. .smallIndent {
  1237. padding-<?php echo $left; ?>: 7px;
  1238. }
  1239. /* end serverstatus */
  1240. /* server variables */
  1241. #serverVariables {
  1242. width: 100%;
  1243. }
  1244. #serverVariables .var-row > td {
  1245. line-height: 2em;
  1246. }
  1247. #serverVariables .var-header {
  1248. color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
  1249. background: #f3f3f3;
  1250. <?php echo $theme->getCssGradient('ffffff', 'cccccc'); ?>
  1251. font-weight: bold;
  1252. text-align: <?php echo $left; ?>;
  1253. }
  1254. #serverVariables .var-row {
  1255. padding: 0.5em;
  1256. min-height: 18px;
  1257. }
  1258. #serverVariables .var-name {
  1259. font-weight: bold;
  1260. }
  1261. #serverVariables .var-name.session {
  1262. font-weight: normal;
  1263. font-style: italic;
  1264. }
  1265. #serverVariables .var-value {
  1266. float: <?php echo $right; ?>;
  1267. text-align: <?php echo $right; ?>;
  1268. }
  1269. #serverVariables .var-doc {
  1270. overflow:visible;
  1271. float: <?php echo $right; ?>;
  1272. }
  1273. /* server variables editor */
  1274. #serverVariables .editLink {
  1275. padding-<?php echo $right; ?>: 1em;
  1276. font-family: sans-serif;
  1277. }
  1278. #serverVariables .serverVariableEditor {
  1279. width: 100%;
  1280. overflow: hidden;
  1281. }
  1282. #serverVariables .serverVariableEditor input {
  1283. width: 100%;
  1284. margin: 0 0.5em;
  1285. box-sizing: border-box;
  1286. -ms-box-sizing: border-box;
  1287. -moz-box-sizing: border-box;
  1288. -webkit-box-sizing: border-box;
  1289. height: 2.2em;
  1290. }
  1291. #serverVariables .serverVariableEditor div {
  1292. display: block;
  1293. overflow: hidden;
  1294. padding-<?php echo $right; ?>: 1em;
  1295. }
  1296. #serverVariables .serverVariableEditor a {
  1297. margin: 0 0.5em;
  1298. line-height: 2em;
  1299. }
  1300. /* end server variables */
  1301. p.notice {
  1302. margin: 1.5em 0;
  1303. border: 1px solid #000;
  1304. background-repeat: no-repeat;
  1305. <?php if ($GLOBALS['text_dir'] === 'ltr') : ?>
  1306. background-position: 10px 50%;
  1307. padding: 10px 10px 10px 25px;
  1308. <?php else : ?>
  1309. background-position: 99% 50%;
  1310. padding: 25px 10px 10px 10px
  1311. <?php endif; ?>
  1312. -moz-border-radius: 5px;
  1313. -webkit-border-radius: 5px;
  1314. border-radius: 5px;
  1315. -moz-box-shadow: 0 1px 2px #fff inset;
  1316. -webkit-box-shadow: 0 1px 2px #fff inset;
  1317. box-shadow: 0 1px 2px #fff inset;
  1318. background: #555;
  1319. color: #d4fb6a;
  1320. }
  1321. p.notice a {
  1322. color: #fff;
  1323. text-decoration: underline;
  1324. }
  1325. /* profiling */
  1326. div#profilingchart {
  1327. width: 850px;
  1328. height: 370px;
  1329. float: <?php echo $left; ?>;
  1330. }
  1331. #profilingchart .jqplot-highlighter-tooltip{
  1332. top: auto !important;
  1333. left: 11px;
  1334. bottom:24px;
  1335. }
  1336. /* end profiling */
  1337. /* table charting */
  1338. #resizer {
  1339. border: 1px solid silver;
  1340. }
  1341. #inner-resizer { /* make room for the resize handle */
  1342. padding: 10px;
  1343. }
  1344. .chartOption {
  1345. float: <?php echo $left; ?>;
  1346. margin-<?php echo $right;?>: 40px;
  1347. }
  1348. /* end table charting */
  1349. /* querybox */
  1350. #togglequerybox {
  1351. margin: 0 10px;
  1352. }
  1353. #serverstatus h3
  1354. {
  1355. margin: 15px 0;
  1356. font-weight: normal;
  1357. color: #999;
  1358. font-size: 1.7em;
  1359. }
  1360. #sectionlinks {
  1361. margin-bottom: 15px;
  1362. padding: 16px;
  1363. background: #f3f3f3;
  1364. border: 1px solid #aaa;
  1365. border-radius: 5px;
  1366. -webkit-border-radius: 5px;
  1367. -moz-border-radius: 5px;
  1368. box-shadow: 0 1px 1px #fff inset;
  1369. -webkit-box-shadow: 0 1px 1px #fff inset;
  1370. -moz-box-shadow: 0 1px 1px #fff inset;
  1371. }
  1372. #sectionlinks a,
  1373. .buttonlinks a,
  1374. a.button {
  1375. font-weight: bold;
  1376. text-shadow: 0 1px 0 #fff;
  1377. line-height: 35px;
  1378. margin-<?php echo $left; ?>: 7px;
  1379. border: 1px solid #aaa;
  1380. padding: 3px 7px;
  1381. color: #111 !important;
  1382. text-decoration: none;
  1383. background: #ddd;
  1384. white-space: nowrap;
  1385. border-radius: 20px;
  1386. -webkit-border-radius: 20px;
  1387. -moz-border-radius: 20px;
  1388. <?php echo $theme->getCssGradient('f8f8f8', 'd8d8d8'); ?>
  1389. }
  1390. #sectionlinks a:hover,
  1391. .buttonlinks a:hover,
  1392. a.button:hover {
  1393. <?php echo $theme->getCssGradient('ffffff', 'dddddd'); ?>
  1394. }
  1395. div#sqlquerycontainer {
  1396. float: <?php echo $left; ?>;
  1397. width: 69%;
  1398. /* height: 15em; */
  1399. }
  1400. div#tablefieldscontainer {
  1401. float: <?php echo $right; ?>;
  1402. width: 29%;
  1403. margin-top: -20px;
  1404. /* height: 15em; */
  1405. }
  1406. div#tablefieldscontainer select {
  1407. width: 100%;
  1408. background: #fff;
  1409. /* height: 12em; */
  1410. }
  1411. textarea#sqlquery {
  1412. width: 100%;
  1413. /* height: 100%; */
  1414. -moz-border-radius: 4px;
  1415. -webkit-border-radius: 4px;
  1416. border-radius: 4px;
  1417. border: 1px solid #aaa;
  1418. padding: 5px;
  1419. font-family: inherit;
  1420. }
  1421. textarea#sql_query_edit {
  1422. height: 7em;
  1423. width: 95%;
  1424. display: block;
  1425. }
  1426. div#queryboxcontainer div#bookmarkoptions {
  1427. margin-top: .5em;
  1428. }
  1429. /* end querybox */
  1430. /* main page */
  1431. #maincontainer {
  1432. /* background-image: url(<?php echo $theme->getImgPath('logo_right.png');?>); */
  1433. /* background-position: <?php echo $right; ?> bottom; */
  1434. /* background-repeat: no-repeat; */
  1435. }
  1436. #mysqlmaininformation,
  1437. #pmamaininformation {
  1438. float: <?php echo $left; ?>;
  1439. width: 49%;
  1440. }
  1441. #maincontainer ul {
  1442. list-style-type: disc;
  1443. vertical-align: middle;
  1444. }
  1445. #maincontainer li {
  1446. margin-bottom: .3em;
  1447. }
  1448. #full_name_layer {
  1449. position: absolute;
  1450. padding: 2px;
  1451. margin-top: -3px;
  1452. z-index: 801;
  1453. border-radius: 3px;
  1454. border: solid 1px #888;
  1455. background: #fff;
  1456. }
  1457. /* end main page */
  1458. /* iconic view for ul items */
  1459. li.no_bullets {
  1460. list-style-type:none !important;
  1461. margin-left: -25px !important; //align with other list items which have bullets
  1462. }
  1463. /* end iconic view for ul items */
  1464. #body_browse_foreigners {
  1465. background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
  1466. margin: .5em .5em 0 .5em;
  1467. }
  1468. #bodythemes {
  1469. width: 500px;
  1470. margin: auto;
  1471. text-align: center;
  1472. }
  1473. #bodythemes img {
  1474. border: .1em solid #000;
  1475. }
  1476. #bodythemes a:hover img {
  1477. border: .1em solid red;
  1478. }
  1479. #fieldset_select_fields {
  1480. float: <?php echo $left; ?>;
  1481. }
  1482. #selflink {
  1483. clear: both;
  1484. display: block;
  1485. margin-top: 1em;
  1486. margin-bottom: 1em;
  1487. width: 98%;
  1488. margin-<?php echo $left; ?>: 1%;
  1489. border-top: .1em solid silver;
  1490. text-align: <?php echo $right; ?>;
  1491. }
  1492. #table_innodb_bufferpool_usage,
  1493. #table_innodb_bufferpool_activity {
  1494. float: <?php echo $left; ?>;
  1495. }
  1496. #div_mysql_charset_collations table {
  1497. float: <?php echo $left; ?>;
  1498. }
  1499. #div_mysql_charset_collations table th,
  1500. #div_mysql_charset_collations table td {
  1501. padding: 0.4em;
  1502. }
  1503. #div_mysql_charset_collations table th#collationHeader {
  1504. width: 35%;
  1505. }
  1506. #qbe_div_table_list {
  1507. float: <?php echo $left; ?>;
  1508. }
  1509. #qbe_div_sql_query {
  1510. float: <?php echo $left; ?>;
  1511. }
  1512. label.desc {
  1513. width: 30em;
  1514. float: <?php echo $left; ?>;
  1515. }
  1516. label.desc sup {
  1517. position: absolute;
  1518. }
  1519. code.php {
  1520. display: block;
  1521. padding-left: 1em;
  1522. margin-top: 0;
  1523. margin-bottom: 0;
  1524. max-height: 10em;
  1525. overflow: auto;
  1526. direction: ltr;
  1527. }
  1528. code.sql,
  1529. div.sqlvalidate {
  1530. display: block;
  1531. padding: 1em;
  1532. margin-top: 0;
  1533. margin-bottom: 0;
  1534. max-height: 10em;
  1535. overflow: auto;
  1536. direction: ltr;
  1537. }
  1538. .result_query div.sqlOuter {
  1539. background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
  1540. text-align: <?php echo $left; ?>;
  1541. }
  1542. .result_query .success, .result_query .error {
  1543. margin-bottom: 0;
  1544. border-bottom: none !important;
  1545. border-bottom-left-radius: 0;
  1546. border-bottom-right-radius: 0;
  1547. padding-bottom: 5px;
  1548. }
  1549. #PMA_slidingMessage code.sql,
  1550. div.sqlvalidate {
  1551. background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
  1552. }
  1553. #main_pane_left {
  1554. width: 60%;
  1555. min-width: 260px;
  1556. float: <?php echo $left; ?>;
  1557. padding-top: 1em;
  1558. }
  1559. #main_pane_right {
  1560. overflow: hidden;
  1561. min-width: 160px;
  1562. padding-top: 1em;
  1563. padding-<?php echo $left; ?>: 1em;
  1564. padding-<?php echo $right; ?>: .5em;
  1565. }
  1566. .group {
  1567. border: 1px solid #999;
  1568. background: #f3f3f3;
  1569. -moz-border-radius: 4px;
  1570. -webkit-border-radius: 4px;
  1571. border-radius: 4px;
  1572. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 5px #ccc;
  1573. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 5px #ccc;
  1574. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 5px #ccc;
  1575. margin-bottom: 1em;
  1576. padding-bottom: 1em;
  1577. }
  1578. .group h2 {
  1579. background-color: #bbb;
  1580. padding: .1em .3em;
  1581. margin-top: 0;
  1582. color: #fff;
  1583. font-size: 1.6em;
  1584. font-weight: normal;
  1585. text-shadow: 0 1px 0 #777;
  1586. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 15px #999 inset;
  1587. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 15px #999 inset;
  1588. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 15px #999 inset;
  1589. }
  1590. .group-cnt {
  1591. padding: 0;
  1592. padding-<?php echo $left; ?>: .5em;
  1593. display: inline-block;
  1594. width: 98%;
  1595. }
  1596. textarea#partitiondefinition {
  1597. height: 3em;
  1598. }
  1599. /* for elements that should be revealed only via js */
  1600. .hide {
  1601. display: none;
  1602. }
  1603. #list_server {
  1604. list-style-type: none;
  1605. padding: 0;
  1606. }
  1607. /**
  1608. * Progress bar styles
  1609. */
  1610. div.upload_progress
  1611. {
  1612. width: 400px;
  1613. margin: 3em auto;
  1614. text-align: center;
  1615. }
  1616. div.upload_progress_bar_outer
  1617. {
  1618. border: 1px solid #000;
  1619. width: 202px;
  1620. position: relative;
  1621. margin: 0 auto 1em;
  1622. color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
  1623. }
  1624. div.upload_progress_bar_inner
  1625. {
  1626. background-color: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
  1627. width: 0;
  1628. height: 12px;
  1629. margin: 1px;
  1630. overflow: hidden;
  1631. color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
  1632. position: relative;
  1633. }
  1634. div.upload_progress_bar_outer div.percentage
  1635. {
  1636. position: absolute;
  1637. top: 0;
  1638. <?php echo $left; ?>: 0;
  1639. width: 202px;
  1640. }
  1641. div.upload_progress_bar_inner div.percentage
  1642. {
  1643. top: -1px;
  1644. <?php echo $left; ?>: -1px;
  1645. }
  1646. div#statustext {
  1647. margin-top: .5em;
  1648. }
  1649. table#serverconnection_src_remote,
  1650. table#serverconnection_trg_remote,
  1651. table#serverconnection_src_local,
  1652. table#serverconnection_trg_local {
  1653. float: <?php echo $left; ?>;
  1654. }
  1655. /**
  1656. * Validation error message styles
  1657. */
  1658. input[type=text].invalid_value,
  1659. input[type=password].invalid_value,
  1660. input[type=number].invalid_value,
  1661. input[type=date].invalid_value,
  1662. select.invalid_value,
  1663. .invalid_value {
  1664. background: #FFCCCC;
  1665. }
  1666. /**
  1667. * Ajax notification styling
  1668. */
  1669. .ajax_notification {
  1670. top: 0; /** The notification needs to be shown on the top of the page */
  1671. position: fixed;
  1672. margin-top: 0;
  1673. margin-right: auto;
  1674. margin-bottom: 0;
  1675. margin-<?php echo $left; ?>: auto;
  1676. padding: 5px; /** Keep a little space on the sides of the text */
  1677. width: 350px;
  1678. z-index: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index: 1000) might hide this */
  1679. text-align: center;
  1680. display: inline;
  1681. left: 0;
  1682. right: 0;
  1683. background-image: url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>);
  1684. background-repeat: no-repeat;
  1685. background-position: 2%;
  1686. border: 1px solid #e2b709;
  1687. }
  1688. /* additional styles */
  1689. .ajax_notification {
  1690. margin-top: 200px;
  1691. background: #ffe57e;
  1692. border-radius: 5px;
  1693. -moz-border-radius: 5px;
  1694. -webkit-border-radius: 5px;
  1695. box-shadow: 0 5px 90px #888;
  1696. -moz-box-shadow: 0 5px 90px #888;
  1697. -webkit-box-shadow: 0 5px 90px #888;
  1698. }
  1699. #loading_parent {
  1700. /** Need this parent to properly center the notification division */
  1701. position: relative;
  1702. width: 100%;
  1703. }
  1704. /**
  1705. * Export and Import styles
  1706. */
  1707. .export_table_list_container {
  1708. display: inline-block;
  1709. max-height: 20em;
  1710. overflow-y: scroll;
  1711. }
  1712. .export_table_select th {
  1713. text-align: center;
  1714. vertical-align: middle;
  1715. }
  1716. .export_table_select .all {
  1717. font-weight: bold;
  1718. border-bottom: 1px solid black;
  1719. }
  1720. .export_structure, .export_data {
  1721. text-align: center;
  1722. }
  1723. .export_table_name {
  1724. vertical-align: middle;
  1725. }
  1726. .exportoptions h2 {
  1727. word-wrap: break-word;
  1728. }
  1729. .exportoptions h3,
  1730. .importoptions h3 {
  1731. border-bottom: 1px #999 solid;
  1732. font-size: 110%;
  1733. }
  1734. .exportoptions ul,
  1735. .importoptions ul,
  1736. .format_specific_options ul {
  1737. list-style-type: none;
  1738. margin-bottom: 15px;
  1739. }
  1740. .exportoptions li,
  1741. .importoptions li {
  1742. margin: 7px;
  1743. }
  1744. .exportoptions label,
  1745. .importoptions label,
  1746. .exportoptions p,
  1747. .importoptions p {
  1748. margin: 5px;
  1749. float: none;
  1750. }
  1751. #csv_options label.desc,
  1752. #ldi_options label.desc,
  1753. #latex_options label.desc,
  1754. #output label.desc {
  1755. float: <?php echo $left; ?>;
  1756. width: 15em;
  1757. }
  1758. .exportoptions,
  1759. .importoptions {
  1760. margin: 20px 30px 30px;
  1761. margin-<?php echo $left; ?>: 10px;
  1762. }
  1763. .exportoptions #buttonGo,
  1764. .importoptions #buttonGo {
  1765. font-weight: bold;
  1766. margin-<?php echo $left; ?>: 14px;
  1767. border: 1px solid #aaa;
  1768. padding: 5px 12px;
  1769. color: #111;
  1770. text-decoration: none;
  1771. border-radius: 12px;
  1772. -webkit-border-radius: 12px;
  1773. -moz-border-radius: 12px;
  1774. text-shadow: 0 1px 0 #fff;
  1775. <?php echo $theme->getCssGradient('ffffff', 'cccccc'); ?>
  1776. cursor: pointer;
  1777. }
  1778. .format_specific_options h3 {
  1779. margin: 10px 0 0;
  1780. margin-<?php echo $left; ?>: 10px;
  1781. border: 0;
  1782. }
  1783. .format_specific_options {
  1784. border: 1px solid #999;
  1785. margin: 7px 0;
  1786. padding: 3px;
  1787. }
  1788. p.desc {
  1789. margin: 5px;
  1790. }
  1791. /**
  1792. * Export styles only
  1793. */
  1794. select#db_select,
  1795. select#table_select {
  1796. width: 400px;
  1797. }
  1798. .export_sub_options {
  1799. margin: 20px 0 0;
  1800. margin-<?php echo $left; ?>: 30px;
  1801. }
  1802. .export_sub_options h4 {
  1803. border-bottom: 1px #999 solid;
  1804. }
  1805. .export_sub_options li.subgroup {
  1806. display: inline-block;
  1807. margin-top: 0;
  1808. }
  1809. .export_sub_options li {
  1810. margin-bottom: 0;
  1811. }
  1812. #export_refresh_form {
  1813. margin-left: 20px;
  1814. }
  1815. #export_back_button {
  1816. display: inline;
  1817. }
  1818. #output_quick_export {
  1819. display: none;
  1820. }
  1821. /**
  1822. * Import styles only
  1823. */
  1824. .importoptions #import_notification {
  1825. margin: 10px 0;
  1826. font-style: italic;
  1827. }
  1828. input#input_import_file {
  1829. margin: 5px;
  1830. }
  1831. .formelementrow {
  1832. margin: 5px 0 5px 0;
  1833. }
  1834. #filterText {
  1835. vertical-align: baseline;
  1836. }
  1837. #popup_background {
  1838. display: none;
  1839. position: fixed;
  1840. _position: absolute; /* hack for IE6 */
  1841. width: 100%;
  1842. height: 100%;
  1843. top: 0;
  1844. <?php echo $left; ?>: 0;
  1845. background: #000;
  1846. z-index: 1000;
  1847. overflow: hidden;
  1848. }
  1849. /**
  1850. * Table structure styles
  1851. */
  1852. #fieldsForm ul.table-structure-actions {
  1853. margin: 0;
  1854. padding: 0;
  1855. list-style: none;
  1856. }
  1857. #fieldsForm ul.table-structure-actions li {
  1858. float: <?php echo $left; ?>;
  1859. margin-<?php echo $right; ?>: 0.3em; /* same as padding of "table td" */
  1860. }
  1861. #fieldsForm ul.table-structure-actions .submenu li {
  1862. padding: 0;
  1863. margin: 0;
  1864. }
  1865. #fieldsForm ul.table-structure-actions .submenu li span {
  1866. padding: 0.3em;
  1867. margin: 0.1em;
  1868. }
  1869. #structure-action-links a {
  1870. margin-<?php echo $right; ?>: 1em;
  1871. }
  1872. #addColumns input[type="radio"] {
  1873. margin: 3px 0 0;
  1874. margin-<?php echo $left; ?>: 1em;
  1875. }
  1876. /**
  1877. * Indexes
  1878. */
  1879. #index_frm .index_info input[type="text"],
  1880. #index_frm .index_info select {
  1881. width: 100%;
  1882. margin: 0;
  1883. box-sizing: border-box;
  1884. -ms-box-sizing: border-box;
  1885. -moz-box-sizing: border-box;
  1886. -webkit-box-sizing: border-box;
  1887. }
  1888. #index_frm .index_info div {
  1889. padding: .2em 0;
  1890. }
  1891. #index_frm .index_info .label {
  1892. float: <?php echo $left; ?>;
  1893. min-width: 12em;
  1894. }
  1895. #index_frm .slider {
  1896. width: 10em;
  1897. margin: .6em;
  1898. float: <?php echo $left; ?>;
  1899. }
  1900. #index_frm .add_fields {
  1901. float: <?php echo $left; ?>;
  1902. }
  1903. #index_frm .add_fields input {
  1904. margin-<?php echo $left; ?>: 1em;
  1905. }
  1906. #index_frm input {
  1907. margin: 0;
  1908. }
  1909. #index_frm td {
  1910. vertical-align: middle;
  1911. }
  1912. table#index_columns {
  1913. width: 100%;
  1914. }
  1915. table#index_columns select {
  1916. width: 85%;
  1917. float: <?php echo $left; ?>;
  1918. }
  1919. #move_columns_dialog div {
  1920. padding: 1em;
  1921. }
  1922. #move_columns_dialog ul {
  1923. list-style: none;
  1924. margin: 0;
  1925. padding: 0;
  1926. }
  1927. #move_columns_dialog li {
  1928. background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
  1929. border: 1px solid #aaa;
  1930. color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
  1931. font-weight: bold;
  1932. margin: .4em;
  1933. padding: .2em;
  1934. -webkit-border-radius: 2px;
  1935. -moz-border-radius: 2px;
  1936. border-radius: 2px;
  1937. }
  1938. /* config forms */
  1939. .config-form ul.tabs {
  1940. margin: 1.1em .2em 0;
  1941. padding: 0 0 .3em 0;
  1942. list-style: none;
  1943. font-weight: bold;
  1944. }
  1945. .config-form ul.tabs li {
  1946. float: <?php echo $left; ?>;
  1947. margin-bottom: -1px;
  1948. }
  1949. .config-form ul.tabs li a {
  1950. display: block;
  1951. margin: .1em .2em 0;
  1952. white-space: nowrap;
  1953. text-decoration: none;
  1954. border: 1px solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
  1955. border-bottom: 1px solid #aaa;
  1956. }
  1957. .config-form ul.tabs li a {
  1958. padding: 7px 10px;
  1959. -webkit-border-radius: 5px 5px 0 0;
  1960. -moz-border-radius: 5px 5px 0 0;
  1961. border-radius: 5px 5px 0 0;
  1962. background: #f2f2f2;
  1963. color: #555;
  1964. text-shadow: 0 1px 0 #fff;
  1965. }
  1966. .config-form ul.tabs li a:hover,
  1967. .config-form ul.tabs li a:active {
  1968. background: #e5e5e5;
  1969. }
  1970. .config-form ul.tabs li.active a {
  1971. background-color: #fff;
  1972. margin-top: 1px;
  1973. color: #000;
  1974. text-shadow: none;
  1975. border-color: #aaa;
  1976. border-bottom: 1px solid #fff;
  1977. }
  1978. .config-form fieldset {
  1979. margin-top: 0;
  1980. padding: 0;
  1981. clear: both;
  1982. -webkit-border-radius: 0;
  1983. -moz-border-radius: 0;
  1984. border-radius: 0;
  1985. }
  1986. .config-form legend {
  1987. display: none;
  1988. }
  1989. .config-form fieldset p {
  1990. margin: 0;
  1991. padding: .5em;
  1992. background: #fff;
  1993. border-top: 0;
  1994. }
  1995. .config-form fieldset .errors { /* form error list */
  1996. margin: 0 -2px 1em;
  1997. padding: .5em 1.5em;
  1998. background: #FBEAD9;
  1999. border: 0 #C83838 solid;
  2000. border-width: 1px 0;
  2001. list-style: none;
  2002. font-family: sans-serif;
  2003. font-size: small;
  2004. }
  2005. .config-form fieldset .inline_errors { /* field error list */
  2006. margin: .3em .3em .3em;
  2007. margin-<?php echo $left; ?>: 0;
  2008. padding: 0;
  2009. list-style: none;
  2010. color: #9A0000;
  2011. font-size: small;
  2012. }
  2013. .config-form fieldset th {
  2014. padding: .3em .3em .3em;
  2015. padding-<?php echo $left; ?>: .5em;
  2016. text-align: <?php echo $left; ?>;
  2017. vertical-align: top;
  2018. width: 40%;
  2019. background: transparent;
  2020. filter: none;
  2021. }
  2022. .config-form fieldset .doc,
  2023. .config-form fieldset .disabled-notice {
  2024. margin-<?php echo $left; ?>: 1em;
  2025. }
  2026. .config-form fieldset .disabled-notice {
  2027. font-size: 80%;
  2028. text-transform: uppercase;
  2029. color: #E00;
  2030. cursor: help;
  2031. }
  2032. .config-form fieldset td {
  2033. padding-top: .3em;
  2034. padding-bottom: .3em;
  2035. vertical-align: top;
  2036. }
  2037. .config-form fieldset th small {
  2038. display: block;
  2039. font-weight: normal;
  2040. font-family: sans-serif;
  2041. font-size: x-small;
  2042. color: #444;
  2043. }
  2044. .config-form fieldset th,
  2045. .config-form fieldset td {
  2046. border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid;
  2047. border-<?php echo $right; ?>: none;
  2048. }
  2049. fieldset .group-header th {
  2050. background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
  2051. }
  2052. fieldset .group-header + tr th {
  2053. padding-top: .6em;
  2054. }
  2055. fieldset .group-field-1 th,
  2056. fieldset .group-header-2 th {
  2057. padding-<?php echo $left; ?>: 1.5em;
  2058. }
  2059. fieldset .group-field-2 th,
  2060. fieldset .group-header-3 th {
  2061. padding-<?php echo $left; ?>: 3em;
  2062. }
  2063. fieldset .group-field-3 th {
  2064. padding-<?php echo $left; ?>: 4.5em;
  2065. }
  2066. fieldset .disabled-field th,
  2067. fieldset .disabled-field th small,
  2068. fieldset .disabled-field td {
  2069. color: #666;
  2070. background-color: #ddd;
  2071. }
  2072. .config-form .lastrow {
  2073. border-top: 1px #000 solid;
  2074. }
  2075. .config-form .lastrow {
  2076. background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
  2077. padding: .5em;
  2078. text-align: center;
  2079. }
  2080. .config-form .lastrow input {
  2081. font-weight: bold;
  2082. }
  2083. /* form elements */
  2084. .config-form span.checkbox {
  2085. padding: 2px;
  2086. display: inline-block;
  2087. }
  2088. .config-form .custom { /* customized field */
  2089. background: #FFC;
  2090. }
  2091. .config-form span.checkbox.custom {
  2092. padding: 1px;
  2093. border: 1px #EDEC90 solid;
  2094. background: #FFC;
  2095. }
  2096. .config-form .field-error {
  2097. border-color: #A11 !important;
  2098. }
  2099. .config-form input[type="text"],
  2100. .config-form input[type="password"],
  2101. .config-form input[type="number"],
  2102. .config-form select,
  2103. .config-form textarea {
  2104. border: 1px #A7A6AA solid;
  2105. height: auto;
  2106. }
  2107. .config-form input[type="text"]:focus,
  2108. .config-form input[type="password"]:focus,
  2109. .config-form input[type="number"]:focus,
  2110. .config-form select:focus,
  2111. .config-form textarea:focus {
  2112. border: 1px #6676FF solid;
  2113. background: #F7FBFF;
  2114. }
  2115. .config-form .field-comment-mark {
  2116. font-family: serif;
  2117. color: #007;
  2118. cursor: help;
  2119. padding: 0 .2em;
  2120. font-weight: bold;
  2121. font-style: italic;
  2122. }
  2123. .config-form .field-comment-warning {
  2124. color: #A00;
  2125. }
  2126. /* error list */
  2127. .config-form dd {
  2128. margin-<?php echo $left; ?>: .5em;
  2129. }
  2130. .config-form dd:before {
  2131. content: "\25B8 ";
  2132. }
  2133. .click-hide-message {
  2134. cursor: pointer;
  2135. }
  2136. .prefsmanage_opts {
  2137. margin-<?php echo $left; ?>: 2em;
  2138. }
  2139. #prefs_autoload {
  2140. margin-bottom: .5em;
  2141. margin-left: .5em;
  2142. }
  2143. #placeholder .button {
  2144. position: absolute;
  2145. cursor: pointer;
  2146. }
  2147. #placeholder div.button {
  2148. font-size: smaller;
  2149. color: #999;
  2150. background-color: #eee;
  2151. padding: 2px;
  2152. }
  2153. .wrapper {
  2154. float: <?php echo $left; ?>;
  2155. margin-bottom: 1.5em;
  2156. }
  2157. .toggleButton {
  2158. position: relative;
  2159. cursor: pointer;
  2160. font-size: .8em;
  2161. text-align: center;
  2162. line-height: 1.4em;
  2163. height: 1.55em;
  2164. overflow: hidden;
  2165. border-right: .1em solid #888;
  2166. border-left: .1em solid #888;
  2167. -webkit-border-radius: .3em;
  2168. -moz-border-radius: .3em;
  2169. border-radius: .3em;
  2170. }
  2171. .toggleButton table,
  2172. .toggleButton td,
  2173. .toggleButton img {
  2174. padding: 0;
  2175. position: relative;
  2176. }
  2177. .toggleButton .container {
  2178. position: absolute;
  2179. }
  2180. .toggleButton .container td,
  2181. .toggleButton .container tr {
  2182. background-image: none;
  2183. background: none !important;
  2184. }
  2185. .toggleButton .toggleOn {
  2186. color: #fff;
  2187. padding: 0 1em;
  2188. text-shadow: 0 0 .2em #000;
  2189. }
  2190. .toggleButton .toggleOff {
  2191. padding: 0 1em;
  2192. }
  2193. .doubleFieldset fieldset {
  2194. width: 48%;
  2195. float: <?php echo $left; ?>;
  2196. padding: 0;
  2197. }
  2198. .doubleFieldset fieldset.left {
  2199. margin-<?php echo $right; ?>: 1%;
  2200. }
  2201. .doubleFieldset fieldset.right {
  2202. margin-<?php echo $left; ?>: 1%;
  2203. }
  2204. .doubleFieldset legend {
  2205. margin-<?php echo $left; ?>: 1.5em;
  2206. }
  2207. .doubleFieldset div.wrap {
  2208. padding: 1.5em;
  2209. }
  2210. #table_name_col_no_outer {
  2211. margin-top: 45px;
  2212. }
  2213. #table_name_col_no {
  2214. position: fixed;
  2215. top: 55px;
  2216. width: 100%;
  2217. background: #ffffff;
  2218. }
  2219. #table_columns input[type="text"],
  2220. #table_columns input[type="password"],
  2221. #table_columns input[type="number"],
  2222. #table_columns select {
  2223. width: 10em;
  2224. box-sizing: border-box;
  2225. -ms-box-sizing: border-box;
  2226. -moz-box-sizing: border-box;
  2227. -webkit-box-sizing: border-box;
  2228. }
  2229. #placeholder {
  2230. position: relative;
  2231. border: 1px solid #aaa;
  2232. float: <?php echo $right; ?>;
  2233. overflow: hidden;
  2234. width: 450px;
  2235. height: 300px;
  2236. }
  2237. #openlayersmap{
  2238. width: 450px;
  2239. height: 300px;
  2240. }
  2241. .placeholderDrag {
  2242. cursor: move;
  2243. }
  2244. #placeholder .button {
  2245. position: absolute;
  2246. }
  2247. #left_arrow {
  2248. left: 8px;
  2249. top: 26px;
  2250. }
  2251. #right_arrow {
  2252. left: 26px;
  2253. top: 26px;
  2254. }
  2255. #up_arrow {
  2256. left: 17px;
  2257. top: 8px;
  2258. }
  2259. #down_arrow {
  2260. left: 17px;
  2261. top: 44px;
  2262. }
  2263. #zoom_in {
  2264. left: 17px;
  2265. top: 67px;
  2266. }
  2267. #zoom_world {
  2268. left: 17px;
  2269. top: 85px;
  2270. }
  2271. #zoom_out {
  2272. left: 17px;
  2273. top: 103px;
  2274. }
  2275. .colborder {
  2276. cursor: col-resize;
  2277. height: 100%;
  2278. margin-<?php echo $left; ?>: -6px;
  2279. position: absolute;
  2280. width: 5px;
  2281. }
  2282. .colborder_active {
  2283. border-<?php echo $right; ?>: 2px solid #a44;
  2284. }
  2285. .pma_table td {
  2286. position: static;
  2287. }
  2288. .pma_table th.draggable span,
  2289. .pma_table tbody td span {
  2290. display: block;
  2291. overflow: hidden;
  2292. }
  2293. .pma_table tbody td span code span {
  2294. display: inline;
  2295. }
  2296. .pma_table th.draggable.right span {
  2297. margin-<?php echo $right; ?>: 0px;
  2298. }
  2299. .pma_table th.draggable span {
  2300. margin-<?php echo $right; ?>: 10px;
  2301. }
  2302. .modal-copy input {
  2303. display: block;
  2304. width: 100%;
  2305. margin-top: 1.5em;
  2306. padding: .3em 0;
  2307. }
  2308. .cRsz {
  2309. position: absolute;
  2310. }
  2311. .cCpy {
  2312. background: #333;
  2313. color: #FFF;
  2314. font-weight: bold;
  2315. margin: .1em;
  2316. padding: .3em;
  2317. position: absolute;
  2318. text-shadow: -1px -1px #000;
  2319. -moz-box-shadow: 0 0 .7em #000;
  2320. -webkit-box-shadow: 0 0 .7em #000;
  2321. box-shadow: 0 0 .7em #000;
  2322. -moz-border-radius: .3em;
  2323. -webkit-border-radius: .3em;
  2324. border-radius: .3em;
  2325. }
  2326. .cPointer {
  2327. background: url(<?php echo $theme->getImgPath('col_pointer.png');?>);
  2328. height: 20px;
  2329. margin-<?php echo $left; ?>: -5px; /* must be minus half of its width */
  2330. margin-top: -10px;
  2331. position: absolute;
  2332. width: 10px;
  2333. }
  2334. .tooltip {
  2335. background: #333 !important;
  2336. opacity: .8 !important;
  2337. border: 1px solid #000 !important;
  2338. -moz-border-radius: .3em !important;
  2339. -webkit-border-radius: .3em !important;
  2340. border-radius: .3em !important;
  2341. text-shadow: -1px -1px #000 !important;
  2342. font-size: .8em !important;
  2343. font-weight: bold !important;
  2344. padding: 1px 3px !important;
  2345. }
  2346. .tooltip * {
  2347. background: none !important;
  2348. color: #FFF !important;
  2349. }
  2350. .cDrop {
  2351. left: 0;
  2352. position: absolute;
  2353. top: 0;
  2354. }
  2355. .coldrop {
  2356. background: url(<?php echo $theme->getImgPath('col_drop.png');?>);
  2357. cursor: pointer;
  2358. height: 16px;
  2359. margin-<?php echo $left; ?>: .3em;
  2360. margin-top: .3em;
  2361. position: absolute;
  2362. width: 16px;
  2363. }
  2364. .coldrop:hover,
  2365. .coldrop-hover {
  2366. background-color: #999;
  2367. }
  2368. .cList {
  2369. background: #EEE;
  2370. border: solid 1px #999;
  2371. position: absolute;
  2372. -moz-box-shadow: 0 .2em .5em #333;
  2373. -webkit-box-shadow: 0 .2em .5em #333;
  2374. box-shadow: 0 .2em .5em #333;
  2375. }
  2376. .cList .lDiv div {
  2377. padding: .2em .5em .2em;
  2378. padding-<?php echo $left; ?>: .2em;
  2379. }
  2380. .cList .lDiv div:hover {
  2381. background: #DDD;
  2382. cursor: pointer;
  2383. }
  2384. .cList .lDiv div input {
  2385. cursor: pointer;
  2386. }
  2387. .showAllColBtn {
  2388. border-bottom: solid 1px #999;
  2389. border-top: solid 1px #999;
  2390. cursor: pointer;
  2391. font-size: .9em;
  2392. font-weight: bold;
  2393. padding: .35em 1em;
  2394. text-align: center;
  2395. }
  2396. .showAllColBtn:hover {
  2397. background: #DDD;
  2398. }
  2399. .turnOffSelect {
  2400. -moz-user-select: none;
  2401. -khtml-user-select: none;
  2402. -webkit-user-select: none;
  2403. user-select: none;
  2404. }
  2405. .navigation {
  2406. margin: .8em 0;
  2407. border-radius: 5px;
  2408. -webkit-border-radius: 5px;
  2409. -moz-border-radius: 5px;
  2410. <?php echo $theme->getCssGradient('eeeeee', 'cccccc'); ?>
  2411. }
  2412. .navigation td {
  2413. margin: 0;
  2414. padding: 0;
  2415. vertical-align: middle;
  2416. white-space: nowrap;
  2417. }
  2418. .navigation_separator {
  2419. color: #999;
  2420. display: inline-block;
  2421. font-size: 1.5em;
  2422. text-align: center;
  2423. height: 1.4em;
  2424. width: 1.2em;
  2425. text-shadow: 1px 0 #FFF;
  2426. }
  2427. .navigation input[type=submit] {
  2428. background: none;
  2429. border: 0;
  2430. filter: none;
  2431. margin: 0;
  2432. padding: .8em .5em;
  2433. border-radius: 0;
  2434. -webkit-border-radius: 0;
  2435. -moz-border-radius: 0;
  2436. }
  2437. .navigation input[type=submit]:hover,
  2438. .navigation input.edit_mode_active {
  2439. color: #fff;
  2440. cursor: pointer;
  2441. text-shadow: none;
  2442. <?php echo $theme->getCssGradient('333333', '555555'); ?>
  2443. }
  2444. .navigation select {
  2445. margin: 0 .8em;
  2446. }
  2447. .cEdit {
  2448. margin: 0;
  2449. padding: 0;
  2450. position: absolute;
  2451. }
  2452. .cEdit input[type=text] {
  2453. background: #FFF;
  2454. height: 100%;
  2455. margin: 0;
  2456. padding: 0;
  2457. }
  2458. .cEdit .edit_area {
  2459. background: #FFF;
  2460. border: 1px solid #999;
  2461. min-width: 10em;
  2462. padding: .3em .5em;
  2463. }
  2464. .cEdit .edit_area select,
  2465. .cEdit .edit_area textarea {
  2466. width: 97%;
  2467. }
  2468. .cEdit .cell_edit_hint {
  2469. color: #555;
  2470. font-size: .8em;
  2471. margin: .3em .2em;
  2472. }
  2473. .cEdit .edit_box {
  2474. overflow-x: hidden;
  2475. overflow-y: scroll;
  2476. padding: 0;
  2477. margin: 0;
  2478. }
  2479. .cEdit .edit_box_posting {
  2480. background: #FFF url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>) no-repeat right center;
  2481. padding-<?php echo $right; ?>: 1.5em;
  2482. }
  2483. .cEdit .edit_area_loading {
  2484. background: #FFF url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>) no-repeat center;
  2485. height: 10em;
  2486. }
  2487. .cEdit .goto_link {
  2488. background: #EEE;
  2489. color: #555;
  2490. padding: .2em .3em;
  2491. }
  2492. .saving_edited_data {
  2493. background: url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>) no-repeat left;
  2494. padding-<?php echo $left; ?>: 20px;
  2495. }
  2496. .relationalTable td {
  2497. vertical-align: top;
  2498. }
  2499. .relationalTable select {
  2500. width: 125px;
  2501. margin-right: 5px;
  2502. }
  2503. /* css for timepicker */
  2504. .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
  2505. .ui-timepicker-div dl { text-align: <?php echo $left; ?>; }
  2506. .ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
  2507. .ui-timepicker-div dl dd { margin: 0 10px 10px 85px; }
  2508. .ui-timepicker-div td { font-size: 90%; }
  2509. .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
  2510. .ui-timepicker-rtl { direction: rtl; }
  2511. .ui-timepicker-rtl dl { text-align: right; }
  2512. .ui-timepicker-rtl dl dd { margin: 0 65px 10px 10px; }
  2513. input.btn {
  2514. color: #333;
  2515. background-color: #D0DCE0;
  2516. }
  2517. body .ui-widget {
  2518. font-size: 1em;
  2519. }
  2520. .ui-dialog fieldset legend a {
  2521. color: #235A81;
  2522. }
  2523. .ui-draggable {
  2524. z-index: 801;
  2525. }
  2526. /* over-riding jqplot-yaxis class */
  2527. .jqplot-yaxis {
  2528. left:0 !important;
  2529. min-width:25px;
  2530. width:auto;
  2531. }
  2532. .jqplot-axis {
  2533. overflow:hidden;
  2534. }
  2535. .report-data {
  2536. height:13em;
  2537. overflow:scroll;
  2538. width:570px;
  2539. border: solid 1px;
  2540. background: white;
  2541. padding: 2px;
  2542. }
  2543. .report-description {
  2544. height:10em;
  2545. width:570px;
  2546. }
  2547. div#page_content div#tableslistcontainer table.data {
  2548. border-top: 0.1px solid #EEEEEE;
  2549. }
  2550. div#page_content div#tableslistcontainer, div#page_content div.notice, div#page_content div.result_query {
  2551. margin-top: 1em;
  2552. }
  2553. table.show_create {
  2554. margin-top: 1em;
  2555. }
  2556. table.show_create td {
  2557. border-right: 1px solid #bbb;
  2558. }
  2559. #alias_modal table {
  2560. width: 100%;
  2561. }
  2562. #alias_modal label {
  2563. font-weight: bold;
  2564. }
  2565. .ui-dialog {
  2566. position: fixed;
  2567. }
  2568. .small_font {
  2569. font-size: smaller;
  2570. }
  2571. /* Console styles */
  2572. #pma_console_container {
  2573. width: 100%;
  2574. position: fixed;
  2575. bottom: 0;
  2576. <?php echo $left; ?>: 0;
  2577. z-index: 100;
  2578. }
  2579. #pma_console {
  2580. position: relative;
  2581. margin-<?php echo $left; ?>: 240px;
  2582. }
  2583. #pma_console .templates {
  2584. display: none;
  2585. }
  2586. #pma_console .mid_text,
  2587. #pma_console .toolbar span {
  2588. vertical-align: middle;
  2589. }
  2590. #pma_console .toolbar {
  2591. position: relative;
  2592. background: #ccc;
  2593. border-top: solid 1px #aaa;
  2594. cursor: n-resize;
  2595. }
  2596. #pma_console .toolbar.collapsed:not(:hover) {
  2597. display: inline-block;
  2598. border-top-<?php echo $right; ?>-radius: 3px;
  2599. border-<?php echo $right; ?>: solid 1px #aaa;
  2600. }
  2601. #pma_console .toolbar.collapsed {
  2602. cursor: default;
  2603. }
  2604. #pma_console .toolbar.collapsed>.button {
  2605. display: none;
  2606. }
  2607. #pma_console .message span.text,
  2608. #pma_console .message span.action,
  2609. #pma_console .toolbar .button,
  2610. #pma_console .toolbar .text,
  2611. #pma_console .switch_button {
  2612. padding: 0 3px;
  2613. display: inline-block;
  2614. }
  2615. #pma_console .message span.action,
  2616. #pma_console .toolbar .button,
  2617. #pma_console .switch_button {
  2618. cursor: pointer;
  2619. }
  2620. #pma_console .message span.action:hover,
  2621. #pma_console .toolbar .button:hover,
  2622. #pma_console .switch_button:hover,
  2623. #pma_console .toolbar .button.active {
  2624. background: #ddd;
  2625. }
  2626. #pma_console .toolbar .text {
  2627. font-weight: bold;
  2628. }
  2629. #pma_console .toolbar .button,
  2630. #pma_console .toolbar .text {
  2631. margin-<?php echo $right; ?>: .4em;
  2632. }
  2633. #pma_console .toolbar .button,
  2634. #pma_console .toolbar .text {
  2635. float: <?php echo $right; ?>;
  2636. }
  2637. #pma_console .content {
  2638. overflow-x: hidden;
  2639. overflow-y: auto;
  2640. margin-bottom: -65px;
  2641. border-top: solid 1px #aaa;
  2642. background: #fff;
  2643. padding-top: .4em;
  2644. }
  2645. #pma_console .content.console_dark_theme {
  2646. background: #000;
  2647. color: #fff;
  2648. }
  2649. #pma_console .content.console_dark_theme .CodeMirror-wrap {
  2650. background: #000;
  2651. color: #fff;
  2652. }
  2653. #pma_console .content.console_dark_theme .action_content {
  2654. color: #000;
  2655. }
  2656. #pma_console .content.console_dark_theme .message {
  2657. border-color: #373B41;
  2658. }
  2659. #pma_console .content.console_dark_theme .CodeMirror-cursor {
  2660. border-color: #fff;
  2661. }
  2662. #pma_console .content.console_dark_theme .cm-keyword {
  2663. color: #de935f;
  2664. }
  2665. #pma_console .message,
  2666. #pma_console .query_input {
  2667. position: relative;
  2668. font-family: Monaco, Consolas, monospace;
  2669. cursor: text;
  2670. margin: 0 10px .2em 1.4em;
  2671. }
  2672. #pma_console .message {
  2673. border-bottom: solid 1px #ccc;
  2674. padding-bottom: .2em;
  2675. }
  2676. #pma_console .message.expanded>.action_content {
  2677. position: relative;
  2678. }
  2679. #pma_console .message:before,
  2680. #pma_console .query_input:before {
  2681. left: -0.7em;
  2682. position: absolute;
  2683. content: ">";
  2684. }
  2685. #pma_console .query_input:before {
  2686. top: -2px;
  2687. }
  2688. #pma_console .query_input textarea {
  2689. width: 100%;
  2690. height: 4em;
  2691. resize: vertical;
  2692. }
  2693. #pma_console .message:hover:before {
  2694. color: #7cf;
  2695. font-weight: bold;
  2696. }
  2697. #pma_console .message.expanded:before {
  2698. content: "]";
  2699. }
  2700. #pma_console .message.welcome:before {
  2701. display: none;
  2702. }
  2703. #pma_console .message.failed:before,
  2704. #pma_console .message.failed.expanded:before,
  2705. #pma_console .message.failed:hover:before {
  2706. content: "=";
  2707. color: #944;
  2708. }
  2709. #pma_console .message.pending:before {
  2710. opacity: .3;
  2711. }
  2712. #pma_console .message.collapsed>.query {
  2713. white-space: nowrap;
  2714. text-overflow: ellipsis;
  2715. overflow: hidden;
  2716. }
  2717. #pma_console .message.expanded>.query {
  2718. display: block;
  2719. white-space: pre;
  2720. word-wrap: break-word;
  2721. }
  2722. #pma_console .message .text.targetdb,
  2723. #pma_console .message.collapsed .action.collapse,
  2724. #pma_console .message.expanded .action.expand,
  2725. #pma_console .message .action.requery,
  2726. #pma_console .message .action.profiling,
  2727. #pma_console .message .action.explain,
  2728. #pma_console .message .action.bookmark {
  2729. display: none;
  2730. }
  2731. #pma_console .message.select .action.profiling,
  2732. #pma_console .message.select .action.explain,
  2733. #pma_console .message.history .text.targetdb,
  2734. #pma_console .message.successed .text.targetdb,
  2735. #pma_console .message.history .action.requery,
  2736. #pma_console .message.history .action.bookmark,
  2737. #pma_console .message.bookmark .action.requery,
  2738. #pma_console .message.bookmark .action.bookmark,
  2739. #pma_console .message.successed .action.requery,
  2740. #pma_console .message.successed .action.bookmark {
  2741. display: inline-block;
  2742. }
  2743. #pma_console .message .action_content {
  2744. position: absolute;
  2745. bottom: 100%;
  2746. background: #ccc;
  2747. border: solid 1px #aaa;
  2748. border-top-<?php echo $left; ?>-radius: 3px;
  2749. }
  2750. html.ie8 #pma_console .message .action_content {
  2751. position: relative!important;
  2752. }
  2753. #pma_console .message.bookmark .text.targetdb,
  2754. #pma_console .message .text.query_time {
  2755. margin: 0;
  2756. display: inline-block;
  2757. }
  2758. #pma_console .message.failed .text.query_time,
  2759. #pma_console .message .text.failed {
  2760. display: none;
  2761. }
  2762. #pma_console .message.failed .text.failed {
  2763. display: inline-block;
  2764. }
  2765. #pma_console .message .text {
  2766. background: #fff;
  2767. }
  2768. #pma_console .message.collapsed>.action_content {
  2769. display: none;
  2770. }
  2771. #pma_console .message.collapsed:hover>.action_content {
  2772. display: block;
  2773. }
  2774. #pma_console .message .bookmark_label {
  2775. padding: 0 4px;
  2776. top: 0;
  2777. background: #369;
  2778. color: #fff;
  2779. border-radius: 3px;
  2780. }
  2781. #pma_console .message .bookmark_label.shared {
  2782. background: #396;
  2783. }
  2784. #pma_console .message.expanded .bookmark_label {
  2785. border-top-left-radius: 0;
  2786. border-top-right-radius: 0;
  2787. }
  2788. #pma_console .query_input {
  2789. position: relative;
  2790. }
  2791. #pma_console .mid_layer {
  2792. height: 100%;
  2793. width: 100%;
  2794. position: absolute;
  2795. top: 0;
  2796. /* For support IE8, this layer doesn't use filter:opacity or opacity,
  2797. js code will fade this layer opacity to 0.18(using animation) */
  2798. background: #666;
  2799. display: none;
  2800. cursor: pointer;
  2801. z-index: 200;
  2802. }
  2803. #pma_console .card {
  2804. position: absolute;
  2805. width: 94%;
  2806. height: 100%;
  2807. min-height: 48px;
  2808. <?php echo $left; ?>: 100%;
  2809. top: 0;
  2810. border-<?php echo $left; ?>: solid 1px #999;
  2811. z-index: 300;
  2812. transition: <?php echo $left; ?> 0.2s;
  2813. -ms-transition: <?php echo $left; ?> 0.2s;
  2814. -webkit-transition: <?php echo $left; ?> 0.2s;
  2815. -moz-transition: <?php echo $left; ?> 0.2s;
  2816. }
  2817. #pma_console .card.show {
  2818. <?php echo $left; ?>: 6%;
  2819. box-shadow: -2px 1px 4px -1px #999;
  2820. }
  2821. html.ie7 #pma_console .query_input {
  2822. display: none;
  2823. }
  2824. #pma_bookmarks .content.add_bookmark,
  2825. #pma_console_options .content {
  2826. padding: 4px 6px;
  2827. }
  2828. #pma_bookmarks .content.add_bookmark .options {
  2829. margin-<?php echo $left; ?>: 1.4em;
  2830. padding-bottom: .4em;
  2831. margin-bottom: .4em;
  2832. border-bottom: solid 1px #ccc;
  2833. }
  2834. #pma_bookmarks .content.add_bookmark .options button {
  2835. margin: 0 7px;
  2836. vertical-align: bottom;
  2837. }
  2838. #pma_bookmarks .content.add_bookmark input[type=text] {
  2839. margin: 0;
  2840. padding: 2px 4px;
  2841. }
  2842. #pma_console .button.hide,
  2843. #pma_console .message span.text.hide {
  2844. display: none;
  2845. }
  2846. #debug_console.grouped .ungroup_queries,
  2847. #debug_console.ungrouped .group_queries {
  2848. display: inline-block;
  2849. }
  2850. #debug_console.ungrouped .ungroup_queries,
  2851. #debug_console.ungrouped .sort_count,
  2852. #debug_console.grouped .group_queries {
  2853. display: none;
  2854. }
  2855. #debug_console .count {
  2856. margin-right: 8px;
  2857. }
  2858. #debug_console .show_trace .trace,
  2859. #debug_console .show_args .args {
  2860. display: block;
  2861. }
  2862. #debug_console .hide_trace .trace,
  2863. #debug_console .hide_args .args,
  2864. #debug_console .show_trace .action.dbg_show_trace,
  2865. #debug_console .hide_trace .action.dbg_hide_trace,
  2866. #debug_console .traceStep.hide_args .action.dbg_hide_args,
  2867. #debug_console .traceStep.show_args .action.dbg_show_args {
  2868. display: none;
  2869. }
  2870. #debug_console .traceStep:after,
  2871. #debug_console .trace.welcome:after,
  2872. #debug_console .debug>.welcome:after {
  2873. content: "";
  2874. display: table;
  2875. clear: both;
  2876. }
  2877. #debug_console .debug_summary {
  2878. float: left;
  2879. }
  2880. #debug_console .trace.welcome .time {
  2881. float: right;
  2882. }
  2883. #debug_console .traceStep .file,
  2884. #debug_console .script_name {
  2885. float: right;
  2886. }
  2887. #debug_console .traceStep .args pre {
  2888. margin: 0;
  2889. }
  2890. /* Code mirror console style*/
  2891. .cm-s-pma .CodeMirror-code pre,
  2892. .cm-s-pma .CodeMirror-code {
  2893. font-family: Monaco, Consolas, monospace;
  2894. }
  2895. .cm-s-pma .CodeMirror-measure>pre,
  2896. .cm-s-pma .CodeMirror-code>pre,
  2897. .cm-s-pma .CodeMirror-lines {
  2898. padding: 0;
  2899. }
  2900. .cm-s-pma.CodeMirror {
  2901. resize: none;
  2902. height: auto;
  2903. width: 100%;
  2904. min-height: initial;
  2905. max-height: initial;
  2906. }
  2907. .cm-s-pma .CodeMirror-scroll {
  2908. cursor: text;
  2909. }
  2910. /* PMA drop-improt style */
  2911. .pma_drop_handler {
  2912. display: none;
  2913. position: fixed;
  2914. top: 0;
  2915. left: 0;
  2916. width: 100%;
  2917. background: rgba(0, 0, 0, 0.6);
  2918. height: 100%;
  2919. z-index: 999;
  2920. color: white;
  2921. font-size: 30pt;
  2922. text-align: center;
  2923. padding-top: 20%;
  2924. }
  2925. .pma_sql_import_status {
  2926. display: none;
  2927. position: fixed;
  2928. bottom: 0;
  2929. right: 25px;
  2930. width: 400px;
  2931. border: 1px solid #999;
  2932. background: #f3f3f3;
  2933. -moz-border-radius: 4px;
  2934. -webkit-border-radius: 4px;
  2935. border-radius: 4px;
  2936. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 5px #ccc;
  2937. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 5px #ccc;
  2938. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>2px 2px 5px #ccc;
  2939. }
  2940. .pma_sql_import_status h2,
  2941. .pma_drop_result h2 {
  2942. background-color: #bbb;
  2943. padding: .1em .3em;
  2944. margin-top: 0;
  2945. margin-bottom: 0;
  2946. color: #fff;
  2947. font-size: 1.6em;
  2948. font-weight: normal;
  2949. text-shadow: 0 1px 0 #777;
  2950. -moz-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 15px #999 inset;
  2951. -webkit-box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 15px #999 inset;
  2952. box-shadow: <?php echo $GLOBALS['text_dir'] === 'rtl' ? '-' : ''; ?>1px 1px 15px #999 inset;
  2953. }
  2954. .pma_sql_import_status div {
  2955. height: 270px;
  2956. overflow-y:auto;
  2957. overflow-x:hidden;
  2958. list-style-type: none;
  2959. }
  2960. .pma_sql_import_status div li {
  2961. padding: 8px 10px;
  2962. border-bottom: 1px solid #bbb;
  2963. color: rgb(148, 14, 14);
  2964. background: white;
  2965. }
  2966. .pma_sql_import_status div li .filesize {
  2967. float: right;
  2968. }
  2969. .pma_sql_import_status h2 .minimize {
  2970. float: right;
  2971. margin-right: 5px;
  2972. padding: 0 10px;
  2973. }
  2974. .pma_sql_import_status h2 .close {
  2975. float: right;
  2976. margin-right: 5px;
  2977. padding: 0 10px;
  2978. display: none;
  2979. }
  2980. .pma_sql_import_status h2 .minimize:hover,
  2981. .pma_sql_import_status h2 .close:hover,
  2982. .pma_drop_result h2 .close:hover {
  2983. background: rgba(155, 149, 149, 0.78);
  2984. cursor: pointer;
  2985. }
  2986. .pma_drop_file_status {
  2987. color: #235a81;
  2988. }
  2989. .pma_drop_file_status span.underline:hover {
  2990. cursor: pointer;
  2991. text-decoration: underline;
  2992. }
  2993. .pma_drop_result {
  2994. position: fixed;
  2995. top: 10%;
  2996. left: 20%;
  2997. width: 60%;
  2998. background: white;
  2999. min-height: 300px;
  3000. z-index: 800;
  3001. -webkit-box-shadow: 0 0 15px #999;
  3002. border-radius: 10px;
  3003. cursor: move;
  3004. }
  3005. .pma_drop_result h2 .close {
  3006. float: right;
  3007. margin-right: 5px;
  3008. padding: 0 10px;
  3009. }
  3010. .dependencies_box {
  3011. background-color: white;
  3012. border: 3px ridge black;
  3013. }
  3014. #composite_index_list {
  3015. list-style-type: none;
  3016. list-style-position: inside;
  3017. }
  3018. span.drag_icon {
  3019. display: inline-block;
  3020. background-image: url('<?php echo $theme->getImgPath('s_sortable.png');?>');
  3021. background-position: center center;
  3022. background-repeat: no-repeat;
  3023. width: 1em;
  3024. height: 3em;
  3025. cursor: move;
  3026. }
  3027. .topmargin {
  3028. margin-top: 1em;
  3029. }
  3030. meter[value="1"]::-webkit-meter-optimum-value {
  3031. background: linear-gradient(white 3%, #E32929 5%, transparent 10%, #E32929);
  3032. }
  3033. meter[value="2"]::-webkit-meter-optimum-value {
  3034. background: linear-gradient(white 3%, #FF6600 5%, transparent 10%, #FF6600);
  3035. }
  3036. meter[value="3"]::-webkit-meter-optimum-value {
  3037. background: linear-gradient(white 3%, #FFD700 5%, transparent 10%, #FFD700);
  3038. }
  3039. /* styles for sortable tables created with tablesorter jquery plugin */
  3040. th.header {
  3041. cursor: pointer;
  3042. color: #235a81;
  3043. }
  3044. th.header:hover {
  3045. text-decoration: underline;
  3046. }
  3047. th.header .sorticon {
  3048. width: 16px;
  3049. height: 16px;
  3050. background-repeat: no-repeat;
  3051. background-position: right center;
  3052. display: inline-table;
  3053. vertical-align: middle;
  3054. float: right;
  3055. }
  3056. th.headerSortUp .sorticon, th.headerSortDown:hover .sorticon {
  3057. background-image: url(<?php echo $theme->getImgPath('s_desc.png');?>);
  3058. }
  3059. th.headerSortDown .sorticon, th.headerSortUp:hover .sorticon {
  3060. background-image: url(<?php echo $theme->getImgPath('s_asc.png');?>);
  3061. }
  3062. /* end of styles of sortable tables */
  3063. /* styles for jQuery-ui to support rtl languages */
  3064. body .ui-dialog .ui-dialog-titlebar-close {
  3065. <?php echo $right; ?>: .3em;
  3066. <?php echo $left; ?>: initial;
  3067. }
  3068. body .ui-dialog .ui-dialog-title {
  3069. float: <?php echo $left; ?>;
  3070. }
  3071. body .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  3072. float: <?php echo $right; ?>;
  3073. }
  3074. /* end of styles for jQuery-ui to support rtl languages */
  3075. @media only screen and (max-width: 768px) {
  3076. /* For mobile phones: */
  3077. #main_pane_left {
  3078. width: 100%;
  3079. }
  3080. #main_pane_right {
  3081. padding-top: 0;
  3082. padding-<?php echo $left; ?>: 1px;
  3083. padding-<?php echo $right; ?>: 1px;
  3084. }
  3085. ul#topmenu,
  3086. ul.tabs {
  3087. display: flex;
  3088. }
  3089. .navigationbar {
  3090. display: inline-flex;
  3091. margin: 0 !important;
  3092. border-radius: 0 !important;
  3093. overflow: auto;
  3094. }
  3095. .scrollindicator {
  3096. padding: 5px;
  3097. cursor: pointer;
  3098. display: inline;
  3099. }
  3100. .responsivetable {
  3101. overflow-x: auto;
  3102. }
  3103. body#loginform div.container {
  3104. width: 100%;
  3105. }
  3106. .largescreenonly {
  3107. display: none;
  3108. }
  3109. .width100, .desktop50 {
  3110. width: 100%;
  3111. }
  3112. .width96 {
  3113. width: 96% !important;
  3114. }
  3115. #page_nav_icons {
  3116. display: none;
  3117. }
  3118. table#serverstatusconnections {
  3119. margin-left: 0;
  3120. }
  3121. #table_name_col_no {
  3122. top: 62px
  3123. }
  3124. .tdblock tr td {
  3125. display: block;
  3126. }
  3127. #table_columns {
  3128. margin-top: 60px;
  3129. }
  3130. #table_columns .tablesorter {
  3131. min-width: 100%;
  3132. }
  3133. .doubleFieldset fieldset {
  3134. width: 98%;
  3135. }
  3136. div#serverstatusquerieschart {
  3137. width: 100%;
  3138. height: 450px;
  3139. }
  3140. .ui-dialog {
  3141. margin: 1%;
  3142. width: 95% !important;
  3143. }
  3144. }
  3145. /* templates/database/designer */
  3146. /* side menu */
  3147. #name-panel {
  3148. overflow:hidden;
  3149. }