_common.scss 56 KB

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