Merge pull request #11 from madhuracj/update
Update metro theme to be compatible with 4.6.0
@@ -1,177 +1,177 @@
|
||||
@media print {
|
||||
|
||||
/* For removing element from Print View */
|
||||
.print_ignore {
|
||||
#back_button_print_view, #print_button_print_view {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Standard CSS */
|
||||
body, table, th, td {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* To remove link text decoration */
|
||||
a:link {
|
||||
color:#000;
|
||||
text-decoration:none
|
||||
}
|
||||
|
||||
/* To remove any image borders */
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* Table specific */
|
||||
table, th, td {
|
||||
border: .1em solid #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0.2em;
|
||||
}
|
||||
|
||||
thead {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0.2em;
|
||||
border: .1em solid #000;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
||||
thead th {
|
||||
font-weight: bold;
|
||||
background-color: #e5e5e5;
|
||||
border: .1em solid #000;
|
||||
}
|
||||
|
||||
th.vtop, td.vtop {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
th.vbottom, td.vbottom {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
th.column_heading, th.column_action {
|
||||
border: .1em solid #000;
|
||||
}
|
||||
|
||||
table tr.odd, table tr.even {
|
||||
border-left: .1em solid #000;
|
||||
}
|
||||
|
||||
table tr.odd th, table tr.even th, table.data th {
|
||||
border-bottom: .1em solid #000;
|
||||
}
|
||||
|
||||
/* Common Elements not to be included */
|
||||
/* Hide Navigation and Top Menu bar */
|
||||
#pma_navigation, #floating_menubar {
|
||||
display: none;
|
||||
}
|
||||
/* Hide console */
|
||||
#pma_console_container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide Navigation items (like Goto Top) */
|
||||
#page_nav_icons {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide the Create Table form */
|
||||
#create_table_form_minimal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide the Page Settings Modal box */
|
||||
#page_settings_modal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide footer, Demo notice, errors div */
|
||||
#pma_footer, #pma_demo, #pma_errors {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide the #selflink div */
|
||||
#selflink {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Position the main content */
|
||||
#page_content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 95%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
/* Specific Class for overriding while Print */
|
||||
.print {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
/* For the Success message div */
|
||||
div.success {
|
||||
width: 80%;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.sqlOuter {
|
||||
color: black;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
/* For hiding 'Open a New phpMyAdmin Window' button */
|
||||
.ic_window-new, .ic_s_cog {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sticky_columns tr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#structure-action-links, #addColumns {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide extra menu on tbl_structure.php */
|
||||
#topmenu2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cDrop, .cEdit, .cList, .cCpy, .cPointer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* For Odd-Even contrast */
|
||||
table tr.odd th,
|
||||
table tr.odd td,
|
||||
.odd {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
table tr.even th,
|
||||
table tr.even td,
|
||||
.even {
|
||||
background: #dfdfdf;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* For removing element from Print View */
|
||||
.print_ignore {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Standard CSS */
|
||||
body, table, th, td {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* To remove link text decoration */
|
||||
a:link {
|
||||
color:#000;
|
||||
text-decoration:none
|
||||
}
|
||||
|
||||
/* To remove any image borders */
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/* Table specific */
|
||||
table, th, td {
|
||||
border: .1em solid #000;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0.2em;
|
||||
}
|
||||
|
||||
thead {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0.2em;
|
||||
border: .1em solid #000;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
||||
thead th {
|
||||
font-weight: bold;
|
||||
background-color: #e5e5e5;
|
||||
border: .1em solid #000;
|
||||
}
|
||||
|
||||
th.vtop, td.vtop {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
th.vbottom, td.vbottom {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
th.column_heading, th.column_action {
|
||||
border: .1em solid #000;
|
||||
}
|
||||
|
||||
table tr.odd, table tr.even {
|
||||
border-left: .1em solid #000;
|
||||
}
|
||||
|
||||
table tr.odd th, table tr.even th, table.data th {
|
||||
border-bottom: .1em solid #000;
|
||||
}
|
||||
|
||||
/* Common Elements not to be included */
|
||||
/* Hide Navigation and Top Menu bar */
|
||||
#pma_navigation, #floating_menubar {
|
||||
display: none;
|
||||
}
|
||||
/* Hide console */
|
||||
#pma_console_container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide Navigation items (like Goto Top) */
|
||||
#page_nav_icons {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide the Create Table form */
|
||||
#create_table_form_minimal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide the Page Settings Modal box */
|
||||
#page_settings_modal {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide footer, Demo notice, errors div */
|
||||
#pma_footer, #pma_demo, #pma_errors {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide the #selflink div */
|
||||
#selflink {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Position the main content */
|
||||
#page_content {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 95%;
|
||||
float: none;
|
||||
}
|
||||
|
||||
/* Specific Class for overriding while Print */
|
||||
.print {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
/* For the Success message div */
|
||||
.sqlOuter {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/* For hiding 'Open a New phpMyAdmin Window' button */
|
||||
.ic_window-new, .ic_s_cog {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sticky_columns tr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#structure-action-links, #addColumns {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Hide extra menu on tbl_structure.php */
|
||||
#topmenu2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cDrop, .cEdit, .cList, .cCpy, .cPointer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* For Odd-Even contrast */
|
||||
table tr.odd th,
|
||||
table tr.odd td,
|
||||
.odd {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
table tr.even th,
|
||||
table tr.even td,
|
||||
.even {
|
||||
background: #dfdfdf;
|
||||
}
|
||||
|
||||
.column_attribute {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 251 B |
|
Before Width: | Height: | Size: 247 B |
|
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 155 B |
|
Before Width: | Height: | Size: 246 B After Width: | Height: | Size: 116 B |
|
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 183 B |
|
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 176 B |
|
Before Width: | Height: | Size: 371 B After Width: | Height: | Size: 179 B |
|
Before Width: | Height: | Size: 319 B After Width: | Height: | Size: 113 B |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.2 KiB |
@@ -1,8 +1,8 @@
|
||||
/*! jQuery UI - v1.11.2 - 2014-10-16
|
||||
/*! jQuery UI - v1.11.4 - 2016-01-08
|
||||
* http://jqueryui.com
|
||||
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
|
||||
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
|
||||
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
||||
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
|
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||
|
||||
/* Layout helpers
|
||||
----------------------------------*/
|
||||
@@ -86,6 +86,93 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-draggable-handle {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-resizable {
|
||||
position: relative;
|
||||
}
|
||||
.ui-resizable-handle {
|
||||
position: absolute;
|
||||
font-size: 0.1px;
|
||||
display: block;
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-resizable-disabled .ui-resizable-handle,
|
||||
.ui-resizable-autohide .ui-resizable-handle {
|
||||
display: none;
|
||||
}
|
||||
.ui-resizable-n {
|
||||
cursor: n-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
top: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-s {
|
||||
cursor: s-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-e {
|
||||
cursor: e-resize;
|
||||
width: 7px;
|
||||
right: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-resizable-w {
|
||||
cursor: w-resize;
|
||||
width: 7px;
|
||||
left: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-resizable-se {
|
||||
cursor: se-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 1px;
|
||||
bottom: 1px;
|
||||
}
|
||||
.ui-resizable-sw {
|
||||
cursor: sw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
bottom: -5px;
|
||||
}
|
||||
.ui-resizable-nw {
|
||||
cursor: nw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
.ui-resizable-ne {
|
||||
cursor: ne-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
right: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
.ui-selectable {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-selectable-helper {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
border: 1px dotted black;
|
||||
}
|
||||
.ui-sortable-handle {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-accordion .ui-accordion-header {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
@@ -447,10 +534,6 @@ button.ui-button::-moz-focus-inner {
|
||||
.ui-draggable .ui-dialog-titlebar {
|
||||
cursor: move;
|
||||
}
|
||||
.ui-draggable-handle {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-menu {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
@@ -522,85 +605,6 @@ button.ui-button::-moz-focus-inner {
|
||||
.ui-progressbar-indeterminate .ui-progressbar-value {
|
||||
background-image: none;
|
||||
}
|
||||
.ui-resizable {
|
||||
position: relative;
|
||||
}
|
||||
.ui-resizable-handle {
|
||||
position: absolute;
|
||||
font-size: 0.1px;
|
||||
display: block;
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-resizable-disabled .ui-resizable-handle,
|
||||
.ui-resizable-autohide .ui-resizable-handle {
|
||||
display: none;
|
||||
}
|
||||
.ui-resizable-n {
|
||||
cursor: n-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
top: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-s {
|
||||
cursor: s-resize;
|
||||
height: 7px;
|
||||
width: 100%;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
}
|
||||
.ui-resizable-e {
|
||||
cursor: e-resize;
|
||||
width: 7px;
|
||||
right: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-resizable-w {
|
||||
cursor: w-resize;
|
||||
width: 7px;
|
||||
left: -5px;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-resizable-se {
|
||||
cursor: se-resize;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
right: 1px;
|
||||
bottom: 1px;
|
||||
}
|
||||
.ui-resizable-sw {
|
||||
cursor: sw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
bottom: -5px;
|
||||
}
|
||||
.ui-resizable-nw {
|
||||
cursor: nw-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
left: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
.ui-resizable-ne {
|
||||
cursor: ne-resize;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
right: -5px;
|
||||
top: -5px;
|
||||
}
|
||||
.ui-selectable {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-selectable-helper {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
border: 1px dotted black;
|
||||
}
|
||||
.ui-selectmenu-menu {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@@ -715,10 +719,6 @@ button.ui-button::-moz-focus-inner {
|
||||
.ui-slider-vertical .ui-slider-range-max {
|
||||
top: 0;
|
||||
}
|
||||
.ui-sortable-handle {
|
||||
-ms-touch-action: none;
|
||||
touch-action: none;
|
||||
}
|
||||
.ui-spinner {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
@@ -845,7 +845,7 @@ body .ui-tooltip {
|
||||
}
|
||||
.ui-widget-content {
|
||||
border: 1px solid #aaaaaa;
|
||||
background: #ffffff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
|
||||
background: #ffffff;
|
||||
color: #222222;
|
||||
}
|
||||
.ui-widget-content a {
|
||||
@@ -1211,14 +1211,14 @@ body .ui-tooltip {
|
||||
|
||||
/* Overlays */
|
||||
.ui-widget-overlay {
|
||||
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
||||
background: #aaaaaa;
|
||||
opacity: .3;
|
||||
filter: Alpha(Opacity=30); /* support: IE8 */
|
||||
}
|
||||
.ui-widget-shadow {
|
||||
margin: -8px 0 0 -8px;
|
||||
padding: 8px;
|
||||
background: #aaaaaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
|
||||
background: #aaaaaa;
|
||||
opacity: .3;
|
||||
filter: Alpha(Opacity=30); /* support: IE8 */
|
||||
border-radius: 8px;
|
||||