Merge branch 'visualbuilder'
This commit is contained in:
BIN
pmd/styles/default/images/minus.png
Normal file
BIN
pmd/styles/default/images/minus.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
pmd/styles/default/images/plus.png
Normal file
BIN
pmd/styles/default/images/plus.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
@@ -403,3 +403,96 @@ a.M_butt:hover {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.panel {
|
||||
position: fixed;
|
||||
top: 50px;
|
||||
right: 0;
|
||||
display: none;
|
||||
background: #000000;
|
||||
border:1px solid #111111;
|
||||
-moz-border-radius-topleft: 20px;
|
||||
-webkit-border-top-left-radius: 20px;
|
||||
-moz-border-radius-bottomleft: 20px;
|
||||
-webkit-border-bottom-left-radius: 20px;
|
||||
width: 330px;
|
||||
height: auto;
|
||||
padding: 30px 30px 30px 130px;
|
||||
filter: alpha(opacity=85);
|
||||
opacity: .85;
|
||||
color:#FFF;
|
||||
|
||||
}
|
||||
|
||||
.panel p{
|
||||
margin: 0 0 15px 0;
|
||||
padding: 0;
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
.panel a, .panel a:visited{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #9FC54E;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px solid #9FC54E;
|
||||
}
|
||||
|
||||
.panel a:hover, .panel a:visited:hover{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px solid #ffffff;
|
||||
}
|
||||
.panel tr {
|
||||
color:#CCC;
|
||||
background-color:#B9E24B;
|
||||
}
|
||||
|
||||
a.trigger{
|
||||
position: fixed;
|
||||
text-decoration: none;
|
||||
top: 80px; right: 0;
|
||||
font-size: 16px;
|
||||
letter-spacing:-1px;
|
||||
font-family: verdana, helvetica, arial, sans-serif;
|
||||
color:#fff;
|
||||
padding: 20px 40px 20px 15px;
|
||||
font-weight: 700;
|
||||
background:#333333 url(images/plus.png) 85% 55% no-repeat;
|
||||
border:1px solid #444444;
|
||||
-moz-border-radius-topleft: 20px;
|
||||
-webkit-border-top-left-radius: 20px;
|
||||
-moz-border-radius-bottomleft: 20px;
|
||||
-webkit-border-bottom-left-radius: 20px;
|
||||
-moz-border-radius-bottomright: 0px;
|
||||
-webkit-border-bottom-right-radius: 0px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
a.trigger:hover{
|
||||
position: fixed;
|
||||
text-decoration: none;
|
||||
top: 80px; right: 0;
|
||||
font-size: 16px;
|
||||
letter-spacing:-1px;
|
||||
font-family: verdana, helvetica, arial, sans-serif;
|
||||
color:#fff;
|
||||
padding: 20px 40px 20px 20px;
|
||||
font-weight: 700;
|
||||
background:#222222 url(images/plus.png) 85% 55% no-repeat;
|
||||
border:1px solid #444444;
|
||||
-moz-border-radius-topleft: 20px;
|
||||
-webkit-border-top-left-radius: 20px;
|
||||
-moz-border-radius-bottomleft: 20px;
|
||||
-webkit-border-bottom-left-radius: 20px;
|
||||
-moz-border-radius-bottomright: 0px;
|
||||
-webkit-border-bottom-right-radius: 0px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
a.active.trigger {
|
||||
background:#222222 url(images/minus.png) 85% 55% no-repeat;
|
||||
}
|
||||
a.test { font-weight: bold; color:#C06; }
|
||||
|
@@ -239,11 +239,13 @@ function get_script_tabs()
|
||||
$script_tabs =
|
||||
'<script type="text/javascript">' . "\n" .
|
||||
'// <![CDATA[' . "\n" .
|
||||
'var j_tabs = new Array();' . "\n";
|
||||
'var j_tabs = new Array();' . "\n" .
|
||||
'var h_tabs = new Array();' . "\n" ;
|
||||
for ($i = 0, $cnt = count($GLOBALS['PMD']['TABLE_NAME']); $i < $cnt; $i++) {
|
||||
$script_tabs .= "j_tabs['" . $GLOBALS['PMD_URL']['TABLE_NAME'][$i] . "'] = '"
|
||||
. (PMA_foreignkey_supported($GLOBALS['PMD']['TABLE_TYPE'][$i]) ? '1' : '0') . "';\n";
|
||||
}
|
||||
$script_tabs .="h_tabs['" . $GLOBALS['PMD_URL']['TABLE_NAME'][$i] . "'] = 1;"."\n" ;
|
||||
}
|
||||
$script_tabs .=
|
||||
'// ]]>' . "\n" .
|
||||
'</script>' . "\n";
|
||||
|
Reference in New Issue
Block a user