This commit is contained in:
Marc Delisle
2006-09-16 20:03:30 +00:00
parent 18bd1a069e
commit c825c227c1
131 changed files with 926 additions and 0 deletions

View File

@@ -0,0 +1,241 @@
/************************************************************************************
* LEFT FRAME
************************************************************************************/
/**
* Add styles for positioned layers
**/
/*
<?php
if (isset($num_dbs) && $num_dbs == '0') {
?>
*/
/* No layer effects neccessary */
div{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.heada{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.parent{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #fffaef;
text-decoration: none;
}
.item, .tblItem, .item:active, .item:hover, .tblItem, .tblItem:active{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
text-decoration: none;
}
.tblItem:hover{
color: #b36448;
text-decoration: none;
}
/*
<?php
} else {
if (isset($js_capable) && $js_capable != '0') {
// Brian Birtles : This is not the ideal method of doing this
// but under the 7th June '00 Mozilla build (and many before
// it) Mozilla did not treat text between <style> tags as
// style information unless it was written with the one call
// to write().
if (isset($js_isDOM) && $js_isDOM != '0') {
?>
*/
/* Layer effects neccessary: capable && is_DOM is set. We found a recent CSS-Browser */
div{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.heada{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.headaCnt{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.parent{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #fffaef;
text-decoration: none;
display: block;
}
.child{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
text-decoration: none;
display: none;
}
.item, .item:active, .item:hover, .tblItem, .tblItem:active{
font-size: 11px;
color: #fffaef;
text-decoration: none;
}
.tblItem:hover{
color: #b36448;
text-decoration: none;
}
/*
<?php
} else {
?>
*/
/* Layer effeccts neccessary: capable, but no is_DOM. We found an older CSS-Browser */
div{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
}
.heada{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.headaCnt{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
/*
<?php
if (isset($js_isIE4) && $js_isIE4 != '0') {
?>
*/
/* Additional effects for IE4 */
.parent{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #fffaef;
text-decoration: none;
display: block;
}
.child{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
text-decoration: none;
display: none;
}
.item, .item:active, .item:hover, .tblItem, .tblItem:active{
font-size: 11px;
color: #fffaef;
text-decoration: none;
}
.tblItem:hover{
color: #b36448;
text-decoration: none;
}
/*
<?php
} else {
?>
*/
/* Additional effects for NON-IE4 */
.parent{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #fffaef;
text-decoration: none;
position: absolute; /* don't edit! */
visibility: hidden; /* don't edit! */
}
.child{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
position: absolute; /* don't edit! */
visibility: hidden; /* don't edit! */
}
.item, .tblItem{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
text-decoration: none;
}
/*
<?php
}
}
} else {
?>
*/
/* Additional effects for left frame not required or not possible because of lacking CSS-capability. */
div{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.heada{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.headaCnt{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
}
.parent{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #fffaef;
text-decoration: none;
}
.child{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #fffaef;
text-decoration: none;
}
.item, .item:active, .item:hover, .tblItem, .tblItem:active{
font-size: 11px;
color: #fffaef;
text-decoration: none;
}
.tblItem:hover{
color: #b36448;
text-decoration: none;
}
/*
<?php
}
}
?>
*/
/* Always enabled stylesheets (left frame) */
body{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
background-image: url(../themes/graphivore/img/bgmenu.gif);
margin: 0px;
padding: 2px 2px 2px 2px;
}
input{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
select{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
background-color: #fffaef;
color: #000000;
width: 150px;
}
hr{
color: #fffaef;
background-color: #fffaef;
border: 0;
height: 1px;
}
img, input, select, button {
vertical-align: middle;
}

View File

@@ -0,0 +1,41 @@
/* For printview */
body{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
background-color: #ffe7b3;
}
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;
}

View File

@@ -0,0 +1,586 @@
/************************************************************************************
* RIGHT FRAME
************************************************************************************/
/* Always enabled stylesheets (right frame) */
body{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
<?php
if ($GLOBALS['cfg']['RightBgImage'] != '') {
echo ' background-image: url(' . $GLOBALS['cfg']['RightBgImage'] . ');' . "\n";
}
?>
background-color: #FFE7B3;
margin: 5px;
scrollbar-face-color: #AB9C72;
scrollbar-shadow-color: #FFE7B3;
scrollbar-highlight-color: #FFE7B3;
scrollbar-3dlight-color: #FFE7B3;
scrollbar-darkshadow-color: #FFE7B3;
scrollbar-track-color: #FFE7B3;
scrollbar-arrow-color: #FFE7B3;
}
pre, tt, code{
font-size: 11px;
}
a:link, a:visited, a:active{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
text-decoration: none;
color: #AB9C72;
}
a:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
text-decoration: none;
color: #b36448;
}
th{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #FFF3DB;
background-color: #ff9900;
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/tbl_th.png);
background-repeat: repeat-x;
background-position: top;
<?php } ?>
height: 18px;
}
th a:link, th a:active, th a:visited{
color: #FFFAEF;
text-decoration: none;
}
th a:hover{
color: #B36448;
text-decoration: none;
}
.tblcomment{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: normal;
color: #64583c;
}
th.td{
font-weight: normal;
color: transparent;
background-color: transparent;
background-image: none;
}
td{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
form{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
}
select, textarea, input {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
select, textarea{
color: #8A7A52;
background-color: #FFFAEF;
}
input.textfield{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #8A7A52;
background-color: #FFFAEF;
border-color: #AB9C72;
border-width: 1px;
border-style: solid;
}
h1{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
}
h2{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
}
h3{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
}
a.h1:link, a.h1:active, a.h1:visited{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
color: #000000;
}
a.h1:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
color: #cc0000;
}
a.h2:link, a.h2:active, a.h2:visited{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: #000000;
}
a.h2:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: #cc0000;
}
a.drop:link, a.drop:visited, a.drop:active{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #cc0000;
}
a.drop:hover{
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #fffaef;
background-color: #cc0000;
text-decoration: none;
}
dfn{
font-style: normal;
}
dfn:hover{
font-style: normal;
cursor: help;
}
.warning{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #cc0000;
}
td.topline{
font-size: 1px;
}
td.tab{
border-top: 1px solid #999;
border-right: 1px solid #666;
border-left: 1px solid #999;
border-bottom: none;
border-radius: 2px;
-moz-border-radius: 2px;
}
table.tabs {
border-top: none;
border-right: none;
border-left: none;
border-bottom: 1px solid #666;
}
fieldset {
border: #286860 solid 1px;
padding: 0.5em;
}
fieldset fieldset {
margin: 0.8em;
}
legend {
font-family: Verdana, Arial, Helvetica, sans-serif;
size: 10px;
color: #286860;
font-weight: bold;
background-color: #fffaef;
padding: 2px 2px 2px 2px;
}
button.mult_submit {
border: none;
background-color: transparent;
}
.pdflayout {
overflow: hidden;
clip: inherit;
background-color: #fffaef;
display: none;
border: 1px solid #000000;
position: relative;
}
.pdflayout_table {
background: #ff9900;
color: #000000;
overflow: hidden;
clip: inherit;
z-index: 2;
display: inline;
visibility: inherit;
cursor: move;
position: absolute;
font-size: 11px;
border: 1px dashed #000000;
}
/* Warning showing div with right border and optional icon */
div.warning {
border: 1px solid #cc0000;
/*
<?php if($cfg['ErrorIconic'] && isset($js_isDOM) && $js_isDOM != '0') { ?>
*/
background-image: url(../themes/graphivore/img/s_warn.png);
background-repeat: no-repeat;
background-position: 10px 10px;
padding: 10px 10px 10px 36px;
margin: 0px;
/*
<?php } ?>
*/
width: 90%;
}
div.error {
width: 100%;
border: 1px solid #cc0000;
background-color: #fff3db;
padding: 0px;
}
div.error div.text {
padding: 5px;
}
div.error div.head {
background-color: #cc0000;
font-weight: bold;
color: #fffaef;
/*
<?php if ($cfg['ErrorIconic'] && isset($js_isDOM) && $js_isDOM != '0') { ?>
*/
background-image: url(../themes/graphivore/img/s_error.png);
background-repeat: no-repeat;
background-position: 2px 50%;
padding: 2px 2px 2px 30px;
/*
<?php } ?>
*/
margin: 0px;
}
.print{font-family:arial;font-size:8pt;}
/* MySQL Parser */
.syntax {font-family: sans-serif; font-size: 10px;}
.syntax_comment { padding-left: 4pt; padding-right: 4pt;}
.syntax_digit {}
.syntax_digit_hex {}
.syntax_digit_integer {}
.syntax_digit_float {}
.syntax_punct {}
.syntax_alpha {}
.syntax_alpha_columnType {text-transform: uppercase;}
.syntax_alpha_columnAttrib {text-transform: uppercase;}
.syntax_alpha_reservedWord {text-transform: uppercase; font-weight: bold;}
.syntax_alpha_functionName {text-transform: uppercase;}
.syntax_alpha_identifier {}
.syntax_alpha_charset {}
.syntax_alpha_variable {}
.syntax_quote {white-space: pre;}
.syntax_quote_backtick {}
/* some new styles added 20047-05-05 by Michael Keck (mkkeck) */
/* tables */
.tblError {
border: 1px solid #cc0000;
background-color: #fff3db;
}
.tblWarn, div.tblWarn {
border: 1px solid #cc0000;
background-color: #fffaef;
}
div.tblWarn {
padding: 5px 5px 5px 5px;
margin: 2px 0px 2px 0px;
width: 100%;
}
.tblHeaders{
font-weight: bold;
color: #fff3db;
background-color: #286860;
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/tbl_header.png);
background-repeat: repeat-x;
background-position: top;
<?php } ?>
height: 18px;
}
.tblHeaders a:link, .tblHeaders a:visited, .tblHeaders a:active, .tblFooters a:link, tblFooters a:visited, tblFooters a:active{
color: #fff3db;
text-decoration: underline;
}
.tblFooters{
font-weight: normal;
color: #fff3db;
background-color: #286860;
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/tbl_header.png);
background-repeat: repeat-x;
background-position: top;
<?php } ?>
}
.tblHeaders a:hover, tblFooters a:hover{
text-decoration: none;
color: #fff3db;
}
.tblHeadError {
font-weight: bold;
color: #fff3db;
background-color: #cc0000;
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/tbl_error.png);
background-repeat: repeat-x;
background-position: top;
<?php } ?>
height: 18px;
}
div.errorhead {
font-weight: bold;
color: #fff3db;
text-align: left;
<?php if ($cfg['ErrorIconic'] && isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/s_error.png);
background-repeat: no-repeat;
background-position: 2px 50%;
padding: 2px 2px 2px 20px;
<?php } ?>
margin: 0px;
}
.tblHeadWarn {
background-color: #ffcc00;
font-weight: bold;
color: #000000;
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/tbl_th.png);
background-repeat: repeat-x;
background-position: top;
<?php } ?>
height: 18px;
}
div.warnhead {
font-weight: bold;
color: #fff3db;
text-align: left;
<?php if ($cfg['ErrorIconic'] && isset($js_isDOM) && $js_isDOM != '0') { ?>
background-image: url(../themes/graphivore/img/s_warn.png);
background-repeat: no-repeat;
background-position: 2px 50%;
padding: 2px 2px 2px 20px;
<?php } ?>
margin: 0px;
}
/* forbidden, no privilegs */
.noPrivileges{
color: #cc0000;
font-weight: bold;
}
/* Heading for server links*/
#serverinfo {
font-weight: bold;
margin-bottom: 0.5em;
}
#serverinfo .item {
white-space: nowrap;
}
#span_table_comment {
font-weight: normal;
font-style: italic;
white-space: nowrap;
}
#serverinfo img {
margin: 0 0.1em 0 0.1em;
}
hr{
color: #AB9C72; background-color: #FFE7B3; border: 0; height: 1px;
}
/* topmenu */
#topmenu {
font-weight: bold;
}
/* default tab styles */
.tab, .tabcaution, .tabactive {
margin-right: 0.1em;
margin-left: 0.1em;
}
/* disabled tabs */
span.tab {
color: #666666;
}
/* disabled drop/empty tabs */
span.tabcaution {
color: #ff6666;
}
/* enabled drop/empty tabs */
a.tabcaution {
color: #F3E3D6;
}
a.tabcaution:hover {
color: #fff3db;
background-color: #FF0000;
}
a.tab {
color: #fff3db;
}
<?php if ( $GLOBALS['cfg']['LightTabs'] ) { ?>
/* active tab */
a.tabactive {
border-bottom: 0.1em solid black;
color: black;
}
<?php } else { ?>
#topmenu {
margin-top: 0.5em;
border-bottom: 0.1em solid black;
padding: 0.1em 0.3em 0.1em 0.3em;
}
/* default tab styles */
.tab, .tabcaution {
background-image: url(../themes/graphivore/img/tbl_header.png); background-repeat: repeat-x;
background-position: top;
background-color: #676767;
border: 0.1em solid silver;
border-bottom: 0.1em solid black;
border-radius-topleft: 0.5em;
border-radius-topright: 0.5em;
-moz-border-radius-topleft: 0.5em;
-moz-border-radius-topright: 0.5em;
height: 16px;
padding: 2px 5px 2px 5px;
}
.tabactive {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #000000;
background-image: url(../themes/graphivore/img/tbl_th2.png); background-repeat: repeat-x;
background-position: top;
background-color: #ffaa44;
height: 16px;
padding: 2px 5px 2px 5px;
}
/* enabled hover/active tabs */
a.tab:hover, .tabactive {
font-weight: bold;
margin-right: 0;
margin-left: 0;
padding: 0.3em 0.3em 0.1em 0.3em;
background-image: url(../themes/graphivore/img/tbl_th2.png); background-repeat: repeat-x;
background-position: top;
background-color: #ffaa44;
height: 16px;
padding: 2px 5px 2px 5px;
color: #fff3db;
}
a.tabcaution:hover {
background-color: #ff0000;
background-image: url(../themes/graphivore/img/tbl_error2.png); background-repeat: repeat-x;
}
/* disabled drop/empty tabs */
span.tab, span.tabcaution {
cursor: url(themes/original/img/error.ico), default;
}
<?php } ?>
/* end topmenu */
img, input, select, button {
vertical-align: middle;
}
/* disabled text */
.disabled, .disabled a:link, disabled a:active, .disabled a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
}
.disabled a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #666666;
text-decoration: none;
}
td.disabled {
background-color: #cccccc;
}
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
/* some styles for IDs: */
#buttonNo{
color: #cc0000;
font-size: 10px;
font-weight: bold;
padding: 0px 10px 0px 10px;
}
#buttonYes{
color: #AB9C72;
font-size: 10px;
font-weight: bold;
padding: 0px 10px 0px 10px;
}
#buttonGo{
color: #AB9C72;
font-size: 10px;
font-weight: bold;
padding: 0px 10px 0px 10px;
}
#listTable{
width: 260px;
}
#textSqlquery{
width: 450px;
}
#textSQLDUMP {
width: 95%;
height: 95%;
font-family: "Courier New", Courier, mono;
font-size: 11px;
}
<?php } ?>
#TooltipContainer {
position: absolute;
z-index: 99;
width: 250px;
height: 50px;
overflow: auto;
visibility: hidden;
background-color: #fff3db;
color: #006600;
border: 1px solid #006600;
padding: 5px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

BIN
graphivore/img/b_browse.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

BIN
graphivore/img/b_deltbl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

BIN
graphivore/img/b_docs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

BIN
graphivore/img/b_docsql.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

BIN
graphivore/img/b_drop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 B

BIN
graphivore/img/b_edit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

BIN
graphivore/img/b_empty.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

BIN
graphivore/img/b_engine.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

BIN
graphivore/img/b_export.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

BIN
graphivore/img/b_ftext.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

BIN
graphivore/img/b_help.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 B

BIN
graphivore/img/b_home.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 B

BIN
graphivore/img/b_import.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 B

BIN
graphivore/img/b_index.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 B

BIN
graphivore/img/b_info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

BIN
graphivore/img/b_insrow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

BIN
graphivore/img/b_minus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

BIN
graphivore/img/b_newdb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

BIN
graphivore/img/b_newtbl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

BIN
graphivore/img/b_pdfdoc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 B

BIN
graphivore/img/b_plus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

BIN
graphivore/img/b_print.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

BIN
graphivore/img/b_props.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

BIN
graphivore/img/b_save.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

BIN
graphivore/img/b_sdb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 B

BIN
graphivore/img/b_search.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

BIN
graphivore/img/b_select.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

BIN
graphivore/img/b_sql.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

BIN
graphivore/img/b_sqldoc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

BIN
graphivore/img/b_tblops.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

BIN
graphivore/img/b_tipp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

BIN
graphivore/img/b_unique.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

BIN
graphivore/img/b_usradd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 B

BIN
graphivore/img/b_view.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

BIN
graphivore/img/b_views.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

BIN
graphivore/img/bd_drop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

BIN
graphivore/img/bd_empty.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

BIN
graphivore/img/bd_ftext.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

BIN
graphivore/img/bd_index.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

BIN
graphivore/img/bgmenu.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

BIN
graphivore/img/dot_blue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

BIN
graphivore/img/dot_red.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

BIN
graphivore/img/error.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

BIN
graphivore/img/item.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

BIN
graphivore/img/item_ltr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

BIN
graphivore/img/item_rtl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
graphivore/img/php_sym.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
graphivore/img/s_asc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 B

BIN
graphivore/img/s_asci.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

BIN
graphivore/img/s_cancel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

BIN
graphivore/img/s_db.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

BIN
graphivore/img/s_desc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Some files were not shown because too many files have changed in this diff Show More