From 0e065edddee55b48bdd0c8bb63dc50cda1128f91 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Thu, 20 Dec 2007 11:50:27 +0000 Subject: [PATCH] updated --- aqua_brushed/css/theme_left.css.php | 123 +++++++++-- aqua_brushed/css/theme_print.css.php | 51 ----- aqua_brushed/css/theme_right.css.php | 294 +++++++++++++++++---------- aqua_brushed/img/arrow_ltr.png | Bin 0 -> 277 bytes aqua_brushed/img/arrow_rtl.png | Bin 0 -> 278 bytes aqua_brushed/img/error.ico | Bin 0 -> 318 bytes aqua_brushed/img/s_notice.png | Bin 0 -> 1377 bytes aqua_brushed/img/s_success.png | Bin 0 -> 612 bytes aqua_brushed/img/window-new.png | Bin 0 -> 583 bytes 9 files changed, 286 insertions(+), 182 deletions(-) delete mode 100644 aqua_brushed/css/theme_print.css.php create mode 100644 aqua_brushed/img/arrow_ltr.png create mode 100644 aqua_brushed/img/arrow_rtl.png create mode 100644 aqua_brushed/img/error.ico create mode 100644 aqua_brushed/img/s_notice.png create mode 100644 aqua_brushed/img/s_success.png create mode 100644 aqua_brushed/img/window-new.png diff --git a/aqua_brushed/css/theme_left.css.php b/aqua_brushed/css/theme_left.css.php index 8b7d91c4b..e90e0fc98 100644 --- a/aqua_brushed/css/theme_left.css.php +++ b/aqua_brushed/css/theme_left.css.php @@ -8,27 +8,25 @@ * @subpackage Aqua_Brushed */ - // unplanned execution path - if (!defined('PMA_MINIMUM_COMMON')) { - exit(); - } +// unplanned execution path +if (!defined('PMA_MINIMUM_COMMON')) { + exit(); +} ?> /******************************************************************************/ /* general tags */ - -* { - font-family: ; +html { + font-size: get('fontsize'); ?>; } - -body, table, tbody, tr, td { - font-size: ; + +input, select, textarea { + font-size: 1em; } -select, input, textarea { - font-size: 0.7em; -} - body { + + font-family: ; + background: ; color: ; margin: 0; @@ -39,13 +37,25 @@ a img { border: 0; } +a:link, +a:visited, +a:active { + text-decoration: none; + color: #0000FF; +} + +ul { + margin:0; +} + form { margin: 0; padding: 0; display: inline; } -select { +select#select_server, +select#lightm_db { width: 100%; } @@ -66,10 +76,18 @@ button { margin-left: 0.3em; } +.navi_dbName { + font-weight: bold; + color: ; +} /******************************************************************************/ /* specific elements */ +div#pmalogo { + background-color: #D0DCE0; + padding:.3em; +} div#pmalogo, div#leftframelinks, div#databaseList { @@ -79,6 +97,32 @@ div#databaseList { padding-bottom: 0.5em; } +ul#databaseList { + margin-bottom: 0.5em; + padding-bottom: 0.5em; + padding-: 1.5em; +} + +ul#databaseList a { + display: block; +} + +div#navidbpageselector a, +ul#databaseList a { + background: ; + color: ; +} + +ul#databaseList a:hover { + background: ; + color: ; +} + +ul#databaseList li.selected a { + background: ; + color: ; +} + div#leftframelinks .icon { padding: 0; margin: 0; @@ -91,10 +135,25 @@ div#leftframelinks a img.icon { } div#leftframelinks a:hover { - background-color: ; + background: ; + color: ; +} + +/* serverlist */ +#body_leftFrame #list_server { + list-style-image: url(/original/img/s_host.png); + list-style-position: inside; + list-style-type: none; + margin: 0; + padding: 0; +} + +#body_leftFrame #list_server li { + margin: 0; + padding: 0; + font-size: 80%; } -/* leftdatabaselist */ div#left_tableList ul { list-style-type: none; list-style-position: outside; @@ -126,8 +185,18 @@ div#left_tableList li { white-space: nowrap; } - -div#left_tableList li:hover { + +/* marked items */ +div#left_tableList > ul li.marked > a, +div#left_tableList > ul li.marked { + background: ; + color: ; +} + + + +div#left_tableList > ul li:hover > a, +div#left_tableList > ul li:hover { background-color: ; color: #3E7BB6; } @@ -139,9 +208,19 @@ div#left_tableList img { } div#left_tableList ul ul { - margin-left: 0; - padding-left: 0.1em; - border-left: 0.1em solid ; + margin-: 0; + padding-: 0.1em; + border-: 0.1em solid ; padding-bottom: 0.1em; border-bottom: 0.1em solid ; } + +/* for the servers list in navi panel */ +#serverinfo .item { + white-space: nowrap; + color: ; +} +#serverinfo a:hover { + background: ; + color: ; +} diff --git a/aqua_brushed/css/theme_print.css.php b/aqua_brushed/css/theme_print.css.php deleted file mode 100644 index 17ec34833..000000000 --- a/aqua_brushed/css/theme_print.css.php +++ /dev/null @@ -1,51 +0,0 @@ - -/* For printview */ -body{ - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - color: #000000; - background-color: #ffffff; -} -h1{ - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 16px; - font-weight: bold; - color: #000000; -} -table{ - border-width: 1px; - border-color: #000000; - border-style: solid; - border-collapse: collapse; - border-spacing: 0; -} -th{ - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - font-weight: bold; - color: #000000; - background-color: #e5e5e5; - border-width: 1px; - border-color: #000000; - border-style: solid; - padding: 2px; -} -td{ - font-family: Verdana, Arial, Helvetica, sans-serif; - font-size: 10px; - color: #000000; - background-color: #ffffff; - border-width: 1px; - border-color: #000000; - border-style: solid; - padding: 2px; -} \ No newline at end of file diff --git a/aqua_brushed/css/theme_right.css.php b/aqua_brushed/css/theme_right.css.php index fa2023607..17eb3b590 100644 --- a/aqua_brushed/css/theme_right.css.php +++ b/aqua_brushed/css/theme_right.css.php @@ -8,37 +8,36 @@ * @subpackage Aqua_Brushed */ - // unplanned execution path - if (!defined('PMA_MINIMUM_COMMON')) { - exit(); - } +// unplanned execution path +if (!defined('PMA_MINIMUM_COMMON')) { + exit(); +} ?> /******************************************************************************/ /* general tags */ - -* { - font-family: ; +html { + font-size: get('fontsize'); ?>; } - -textarea { - font-family: ; + +input, select, textarea { + font-size: 1em; } - -body, table, tbody, tr, td { - font-size: ; -} -select, input, textarea { - font-size: 0.7em; -} - body { + + font-family: ; + padding: 0; margin: 0.5em; color: ; background: ; } + +textarea, tt, pre, code { + font-family: ; +} + h1 { font-size: 140%; font-weight: bold; @@ -54,7 +53,8 @@ h3 { } a:link, -a:visited { +a:visited, +a:active { text-decoration: none; color: #0000FF; } @@ -111,7 +111,7 @@ form { textarea { overflow: visible; - height: 8em; + height: em; } fieldset { @@ -153,10 +153,17 @@ button { /******************************************************************************/ /* classes */ +div.tools { + border: 1px solid #000000; + padding: 0.2em; +} +div.tools, fieldset.tblFooters { margin-top: 0; margin-bottom: 0.5em; + /* avoid a thick line since this should be used under another fieldset */ + border-top: 0; text-align: ; float: none; clear: both; @@ -179,43 +186,70 @@ button.mult_submit { background-color: transparent; } +/* odd items 1,3,5,7,... */ +table tr.odd th, +.odd { + background: ; +} + +/* even items 2,4,6,8,... */ +table tr.even th, +.even { + background: ; +} + /* odd table rows 1,3,5,7,... */ table tr.odd th, -table tr.odd { - background: ; - text-align: ; -} - -/* even table rows 2,4,6,8,... */ +table tr.odd, table tr.even th, table tr.even { - background: ; text-align: ; } -/* marked tbale rows */ + +/* marked table rows */ table tr.marked th, table tr.marked { - background-color: ; + background: ; + color: ; +} + + + +/* hovered items */ +.odd:hover, +.even:hover, +.hover { + background: ; + color: ; } /* hovered table rows */ -table tr.odd:hover, -table tr.even:hover, table tr.odd:hover th, table tr.even:hover th, -table tr.hover th, -table tr.hover { - background-color: ; +table tr.hover th { + background: ; + color: ; +} + + +/** + * marks table rows/cells if the db field is in a where condition + */ +tr.condition th, +tr.condition td, +td.condition, +th.condition { + border: 1px solid ; } table .value { text-align: ; - white-space: nowrap; + white-space: normal; } /* IE doesnt handles 'pre' right */ table [class=value] { - white-space: pre; + white-space: normal; } @@ -338,33 +372,64 @@ td .icon { } /* message boxes: warning, error, confirmation */ +.success h1, +.notice h1, +.warning h1, +div.error h1 { + border-bottom: 2px solid; + font-weight: bold; + text-align: ; + margin: 0 0 0.2em 0; +} + +div.success, +div.notice, +div.warning, +div.error { + margin: 0.3em 0 0 0; + border: 2px solid; + + background-repeat: no-repeat; + + background-position: 10px 50%; + padding: 0.1em 0.1em 0.1em 36px; + + background-position: 99% 50%; + padding: 10px 5% 10px 10px; + + + padding: 0.3em; + +} + +.success { + color: #000000; + background-color: #f0fff0; +} +h1.success, +div.success { + border-color: #00FF00; + + background-image: url(getImgPath(); ?>s_success.png); + +} +.success h1 { + border-color: #00FF00; +} + .notice { color: #000000; background-color: #FFFFDD; } h1.notice, div.notice { - margin: 0.5em 0 0.5em 0; - border: 0.1em solid #FFD700; - + border-color: #FFD700; + background-image: url(getImgPath(); ?>s_notice.png); - background-repeat: no-repeat; - - background-position: 10px 50%; - padding: 10px 10px 10px 36px; - - background-position: 99% 50%; - padding: 10px 5% 10px 10px; - - - padding: 0.5em; - + } .notice h1 { - border-bottom: 0.1em solid #FFD700; - font-weight: bold; - text-align: ; - margin: 0 0 0.2em 0; + border-color: #FFD700; } .warning { @@ -374,27 +439,13 @@ div.notice { p.warning, h1.warning, div.warning { - margin: 0.5em 0 0.5em 0; - border: 0.1em solid #CC0000; - + border-color: #CC0000; + background-image: url(getImgPath(); ?>s_warn.png); - background-repeat: no-repeat; - - background-position: 10px 50%; - padding: 10px 10px 10px 36px; - - background-position: 99% 50%; - padding: 10px 5% 10px 10px; - - - padding: 0.5em; - + } .warning h1 { - border-bottom: 0.1em solid #cc0000; - font-weight: bold; - text-align: ; - margin: 0 0 0.2em 0; + border-color: #cc0000; } .error { @@ -404,27 +455,13 @@ div.warning { h1.error, div.error { - margin: 0.5em 0 0.5em 0; - border: 0.1em solid #ff0000; - + border-color: #ff0000; + background-image: url(getImgPath(); ?>s_error.png); - background-repeat: no-repeat; - - background-position: 10px 50%; - padding: 10px 10px 10px 36px; - - background-position: 99% 50%; - padding: 10px 5% 10px 10px; - - - padding: 0.5em; - + } div.error h1 { - border-bottom: 0.1em solid #ff0000; - font-weight: bold; - text-align: ; - margin: 0 0 0.2em 0; + border-color: #ff0000; } .confirmation { @@ -437,27 +474,34 @@ fieldset.confirmation legend { border-left: 0.1em solid #FF0000; border-right: 0.1em solid #FF0000; font-weight: bold; - + background-image: url(getImgPath(); ?>s_really.png); background-repeat: no-repeat; - + background-position: 5px 50%; padding: 0.2em 0.2em 0.2em 25px; - + background-position: 97% 50%; padding: 0.2em 25px 0.2em 0.2em; - - + + } /* end messageboxes */ +.tblcomment { + font-size: 70%; + font-weight: normal; + color: #000099; +} + .tblHeaders { font-weight: bold; color: ; background: ; } +div.tools, .tblFooters { font-weight: normal; color: ; @@ -467,6 +511,9 @@ fieldset.confirmation legend { .tblHeaders a:link, .tblHeaders a:active, .tblHeaders a:visited, +div.tools a:link, +div.tools a:visited, +div.tools a:active, .tblFooters a:link, .tblFooters a:active, .tblFooters a:visited { @@ -474,6 +521,7 @@ fieldset.confirmation legend { } .tblHeaders a:hover, +div.tools a:hover, .tblFooters a:hover { color: #FF0000; } @@ -511,6 +559,16 @@ body.loginform a.logo { text-align: center; } +body.loginform { + text-align: center; +} + +body.loginform div.container { + text-align: ; + width: 30em; + margin: 0 auto; +} + form.login label { float: ; width: 10em; @@ -568,7 +626,7 @@ a.tabcaution:hover { background-color: #FF0000; } - + /* active tab */ a.tabactive { color: black; @@ -586,12 +644,10 @@ ul#topmenu li { /* default tab styles */ .tab, .tabcaution, .tabactive { background-color: #E5E5E5; - border: 0.1em solid silver; + border: 1pt solid silver; border-bottom: 0; - border-radius-topleft: 0.4em; - border-radius-topright: 0.4em; - -moz-border-radius-topleft: 0.4em; - -moz-border-radius-topright: 0.4em; + border-top-left-radius: 0.4em; + border-top-right-radius: 0.4em; background-color: #B5BDC7; background-image: url(getImgPath(); ?>tbl_header.png); background-repeat: repeat-x; @@ -613,9 +669,6 @@ a.tabcaution:hover, } a.tabcaution:hover { - margin: 0; - padding: 0.2em 0.4em 0.2em 0.4em; - text-decoration: none; background-color: #ff0000; background-image: none; } @@ -627,8 +680,14 @@ a.tab:hover, background-color: #8FBDE9; } +/* to be able to cancel the bottom border, use
  • */ +ul#topmenu li.active { + border-bottom: 1pt solid ; +} + /* disabled drop/empty tabs */ span.tab, +a.warning, span.tabcaution { cursor: url(getImgPath(); ?>error.ico), default; } @@ -789,7 +848,7 @@ div#tablestatistics table caption { float: none; } -#fieldset_user_priv div.item label{ +#fieldset_user_priv div.item label { white-space: nowrap; } @@ -901,7 +960,6 @@ div#queryboxcontainer div#bookmarkoptions { background-image: url(getImgPath(); ?>logo_right.png); background-position: bottom; background-repeat: no-repeat; - border-bottom: 1px solid silver; } #mysqlmaininformation, @@ -940,7 +998,8 @@ li#li_select_theme{ list-style-image: url(getImgPath(); ?>s_theme.png); } -li#li_server_info{ +li#li_server_info, +li#li_server_version{ list-style-image: url(getImgPath(); ?>s_host.png); } @@ -992,7 +1051,8 @@ li#li_log_out { list-style-image: url(getImgPath(); ?>s_loggoff.png); } -li#li_pma_docs { +li#li_pma_docs, +li#li_pma_wiki { list-style-image: url(getImgPath(); ?>b_docs.png); } @@ -1075,7 +1135,10 @@ li#li_flush_privileges { float: ; } -#div_table_copy { +#div_table_copy, +#div_partition_maintenance, +#div_referential_integrity, +#div_table_maintenance { min-width: 48%; float: ; } @@ -1098,3 +1161,16 @@ label.desc { width: 30em; float: ; } + +code.sql { + display: block; + padding: 0.3em; + margin-top: 0; + margin-bottom: 0; + border: solid 1px; + border-top: 0; + border-bottom: 0; + max-height: 10em; + overflow: auto; + background: ; +} diff --git a/aqua_brushed/img/arrow_ltr.png b/aqua_brushed/img/arrow_ltr.png new file mode 100644 index 0000000000000000000000000000000000000000..8cdb8ca172a3652f5470054bde0155184f5cb071 GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0y~yU{GUVU=ZVAW?*2LJyXt*fq{V~-O<;Pfnog#bJnhx z3=9mCC9V-A!TD(=<%vb942~)JNvR5+xryniL8*x;m4zo$Z5S9B*aCb)Tp7S%Y5LCd z3=9lRB|(0{{~4ZcH}GO$U}*PraSW-rm6V{u#lRxKTzHCssiV59<$MYa z5(29}tYqd;U{eXLxWdRHz`RN8&MO9{4i9|>7J-Q%^&Y7Vj4n%z8W@yYUWF*6&!ztk4vdkQ-Dgy?|EN1Sr91CxOT!g$T~0xzGQ7+PzsWCU=Uo%qtMV1!Y1J0qQ%Uipfr_{ zMPMSx9FJ56MwcZ<4Gc*RyhSDq;UE>u%(3b+V33}`%pGzuY&OWLp00i_>zopr0Gy;o AC;$Ke literal 0 HcmV?d00001 diff --git a/aqua_brushed/img/error.ico b/aqua_brushed/img/error.ico new file mode 100644 index 0000000000000000000000000000000000000000..41d26d6389e8152eabccc001a1dc0ac588e24ab9 GIT binary patch literal 318 zcmZQzU}Ruq5D*Yx009j~1_m((1_liV1_qFb0s}~%1ti6A08FA2XBZk98W{fn|Bo&~ z8J|gkfdPz_7#Ng5u2527QUV#tqy*+NFerh!a2h5KRR>ZGQV2E!q#vXg6aWAJ|NjH_ V|Njp#|Nq~>NE`;K1?d6l1pqJTHiiHI literal 0 HcmV?d00001 diff --git a/aqua_brushed/img/s_notice.png b/aqua_brushed/img/s_notice.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf8913bc7d1893474763d54c888aa221eff4b9e GIT binary patch literal 1377 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4rT@h1`S>QU3_aG+uV24;^Z46`?iVj!e0|sU>0R@)XU{&osecRt zH$S{=eEjIq!-o%FKdrlW|KYv6S8m<9_2f?Lh1;ht-ad8x`t{4#Z#=$J@c3ri!`np< zZWUg>eC__tqWd?BE?l^9`SOwr7xtb%ckcZ8Ew?VG-n^7@{X)XIv-7W=Pd<6##Oc$s zFP@D$eth+Xld)${#vM7{aPC;nxf8J$PdXhsR)79Pz|o^U*G{NjKB;#0SkURCS%(j7 zzi{06+%dnrubI071dvtd0sNb}8^~NomcI>F%y0v!e*5b9B z*00`PvU+>b;;r)*Z=JJyL&47VC7U;gZeLTdW^MoGb#ZIgW^Y`Tvwm&-x^-@=S0~Kh ztT$(i{>qiHE0-6qT^6%ymF3J0+Dn!c&043qVu|zOvn=M{!IDdi5qJ@eJ7RbzB zC^CPZ?(Bt%b7w`iEQp*u&v@=!k(qOhX3jR6In%LeZp8GN_Ooa6&6*`UYr6jQ>9(_G z@y(jWJ!=;0%vtO+W(v)m$vtx>`^=e4GiQj-m@YeG2J?*RBGab}&X_7bWs=E+{`hHA z1*c49n>aj|DTk+XM_;Dm|n6DIKWPUP+DG3@Cw?&lT#WF5NFDgtnEZ8*I&m`E_+|fzf$wAD?UdYK_ zP)b5jQi4xHoL5YgTSSykRD@kbgzfGH@mmZG3@=K8{DK+&j|`AE@AxMM1_sUokH}&M z2Cfev%;>bnWCjBRgKCLuL`iUdT1k0gQ7VIPVscS_ZfZ(qqJmpyQEGX9QFgI{Z-j!8 zfq_YT*_!hV42;sAE{-7;a~K5}-~VG^U}WL)-Foii(befvN5QvJ3lec>F(3JZu!%% zUz#b$(6H-3ZG75;=lA2H>W*An>%p*je`{iF@XcrU{K6xfubir8*uEjf%irbnlN%1M zp3w(SG%>925An7(EPuRL&(b|$((xvSuHG06Z6(P^$uipJq3u&k7_t{68OV$92nzB^ z=_X8>Y{g)-u-j3b_x8iv0z!6eGkW+LRLhoh_^4gDb5X~+YTA4=HU?>%mc_FhON)vs zC(N0fCBeeLsc4$ow`j$xWwYjW+ADA{F)*`>%4&vH)Ys&g$O^MDGxANz?)`D<{8|PE O1_n=8KbLh*2~7ZM92TDd literal 0 HcmV?d00001 diff --git a/aqua_brushed/img/s_success.png b/aqua_brushed/img/s_success.png new file mode 100644 index 0000000000000000000000000000000000000000..2f86f0ae6bb797bf29700cb1d0d93e5e30a4e72b GIT binary patch literal 612 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!tov^`xMLo9liPKxyiPLw$Q z|NXgpkIz~DwusIWbV)Ml`6lRft)u72E^ieL?w8D$c6A=$c(tm3cHX2HPF*M3%qF#T zP1N-+E?sz-Uq^GcS&2!@mNllO+xV@kcTaFRm2*{o-t6ZOzsLOfDR@lcpZco(tSwQC z{yk@3G}+_Rij}uZ0`g|Y8y&kO^^k4J)AT3*z8wrJJFs*5%Cd)w$vi4^`C77Fj9OCe zuRYwmt!0H|iaR#{6;@A-XLBo3*Am*xomgu-(WvchY<8+S8+}gl1dSc#xt}ea0Y=zL#CF+kN3&S@D3vIP6@wgsY{AAPGpPy}c zE?pN8w)!#KNm*s;CbfAREEo#9eAbCiwcxVnc;Bfb6*ytK|L;A_PdP5GDxR8tR{yar zM?wAqAHgry%#M2A8;`v|bCBVgm&hp-|IcOXZ)NFk`TTQN?}C>0Mk&J;dk%5jOZs)1 zXWrEk_Mg6<-al3dMcRXnEwjm2)0Wj@LHz=G^uosNCbrI?MgL*7wB<{!4k0&wu>U?@X(%l{q$jd8GwzRHj)nFfhoLxJHyX=jZ08=9Mrw z7o{eaq^2m8XO?6rgk+>DxO@5ryiZZhV_;xh?djqeVsU!vMB8kUK#{ij#>TrRm)`aD z5K&25ED_?u^sl+0by1mElTydjAMQG=f;y^8wr*JpRS$%dER%f{}KNd*NI*FEa2N*+g#@!Rlker!=tC4r4Kx+dz6;k zt!yltre^MuZTl-y+O*c}ZdJKHXTF%ePRyP9nr$pU#V1sD_!%a~Zrgr+z0}Bj z-sfnaZ5+7$9mj)nrw(T?zVKm@;~$xcwyK{@U9J^cpLza1eMU~%y&i_F8IpV*%tBWf z>X^R1K60k<`-hCav;Fp#mA?w@rZuh1;%Bj@HPcHInxB9HelEtt}{Fl$FcMTCP_ zi$igt()5Q{Ee@1ys1E41h;!U@<2%zG*-%;IcS}7VbTnAcxE