Initial commit
This commit is contained in:
96
#pma/themes/fallen/css/codemirror.css.php
Normal file
96
#pma/themes/fallen/css/codemirror.css.php
Normal file
@ -0,0 +1,96 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
.CodeMirror {
|
||||
border: 1px solid #ccc;
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed'] ?>!important;
|
||||
direction: ltr;
|
||||
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em
|
||||
}
|
||||
|
||||
.CodeMirror * {
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed'] ?>
|
||||
}
|
||||
|
||||
#inline_editor_outer .CodeMirror {
|
||||
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 0.4) ?>em;
|
||||
margin-bottom: 10px
|
||||
}
|
||||
|
||||
.insertRowTable .CodeMirror {
|
||||
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 0.6); ?>em;
|
||||
width: <?php echo ceil($GLOBALS['cfg']['TextareaCols'] * 0.6); ?>em
|
||||
}
|
||||
|
||||
#pma_console .CodeMirror {
|
||||
border: none
|
||||
}
|
||||
|
||||
#pma_console .CodeMirror-gutters {
|
||||
background-color: initial;
|
||||
border: none
|
||||
}
|
||||
|
||||
span.cm-keyword, span.cm-statement-verb {
|
||||
color: #909
|
||||
}
|
||||
|
||||
span.cm-variable {
|
||||
color: black
|
||||
}
|
||||
|
||||
span.cm-comment {
|
||||
color: #808000
|
||||
}
|
||||
|
||||
span.cm-mysql-string {
|
||||
color: #008000
|
||||
}
|
||||
|
||||
span.cm-operator {
|
||||
color: fuchsia
|
||||
}
|
||||
|
||||
span.cm-mysql-word {
|
||||
color: black
|
||||
}
|
||||
|
||||
span.cm-builtin {
|
||||
color: #f00
|
||||
}
|
||||
|
||||
span.cm-variable-2 {
|
||||
color: #f90
|
||||
}
|
||||
|
||||
span.cm-variable-3 {
|
||||
color: #00f
|
||||
}
|
||||
|
||||
span.cm-separator {
|
||||
color: fuchsia
|
||||
}
|
||||
|
||||
span.cm-number {
|
||||
color: teal
|
||||
}
|
||||
|
||||
.autocomplete-column-name {
|
||||
display: inline-block
|
||||
}
|
||||
|
||||
.autocomplete-column-hint {
|
||||
color: #666;
|
||||
display: inline-block;
|
||||
float: right;
|
||||
margin-left: 1em
|
||||
}
|
||||
|
||||
.CodeMirror-hints {
|
||||
z-index: 200
|
||||
}
|
136
#pma/themes/fallen/css/common.css.php
Normal file
136
#pma/themes/fallen/css/common.css.php
Normal file
@ -0,0 +1,136 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
}
|
||||
|
||||
# Set source folder for stylesheet
|
||||
|
||||
define('CSS_PATH', 'fallen');
|
||||
|
||||
# Set the Brand name, will be set for logo text. Display in menubar.
|
||||
|
||||
$brand = 'phpMyAdmin';
|
||||
|
||||
# Do not change!!!
|
||||
# Or the theme will be error!
|
||||
|
||||
$name = 'Fallen';
|
||||
$version = '0.2';
|
||||
$slug = 'fallen';
|
||||
$font_family_icon = 'Fallen' ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* <?php echo $name ?> v<?php echo $version ?> (phpMyAdmin Theme)
|
||||
* Copyright 2016 Frans Allen (https://www.fransallen.com)
|
||||
* Licensed under the GPLv2 or later
|
||||
*/
|
||||
|
||||
/* Fonts
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/bundle-fonts.min.css' ?>
|
||||
|
||||
/* Reset
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/reset.css.php' ?>
|
||||
|
||||
/* General
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/general.css.php' ?>
|
||||
|
||||
/* Login
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/login.css.php' ?>
|
||||
|
||||
/* Icons
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/icons.css.php' ?>
|
||||
|
||||
/* Typography
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/typography.css.php' ?>
|
||||
|
||||
/* Heading
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/heading.css.php' ?>
|
||||
|
||||
/* Globals
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/globals.css.php' ?>
|
||||
|
||||
/* Contents
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/content.css.php' ?>
|
||||
|
||||
/* Data
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/data.css.php' ?>
|
||||
|
||||
/* Tables & Columns
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/tables.css.php' ?>
|
||||
|
||||
/* Forms, Input & Textarea
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/forms.css.php' ?>
|
||||
|
||||
/* Buttons
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/buttons.css.php' ?>
|
||||
|
||||
/* Select
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/select.css.php' ?>
|
||||
|
||||
/* LTR
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {
|
||||
include CSS_PATH . '/common/ltr.css.php';
|
||||
} ?>
|
||||
|
||||
/* Alert
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/alert.css.php' ?>
|
||||
|
||||
/* Images
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/images.css.php' ?>
|
||||
|
||||
/* Layouts
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/layouts.css.php' ?>
|
||||
|
||||
/* Elements
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/elements.css.php' ?>
|
||||
|
||||
/* Navigations
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/nav.css.php' ?>
|
||||
|
||||
/* Responsive
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/responsive.css.php' ?>
|
75
#pma/themes/fallen/css/enum_editor.css.php
Normal file
75
#pma/themes/fallen/css/enum_editor.css.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* ENUM/SET editor styles
|
||||
*/
|
||||
|
||||
p.enum_notice {
|
||||
margin: 5px 2px;
|
||||
font-size: 80%
|
||||
}
|
||||
|
||||
#enum_editor p {
|
||||
margin-top: 0;
|
||||
font-style: italic
|
||||
}
|
||||
|
||||
#enum_editor .values, #enum_editor .add {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
#enum_editor .add td {
|
||||
vertical-align: middle;
|
||||
width: 50%;
|
||||
padding: 0;
|
||||
padding-left: 1em
|
||||
}
|
||||
|
||||
#enum_editor .values td.drop {
|
||||
width: 1.8em;
|
||||
cursor: pointer;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
#enum_editor .values input {
|
||||
margin: .1em 0;
|
||||
padding-right: 2em;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
#enum_editor .values img {
|
||||
width: 1.8em;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
#enum_editor input.add_value {
|
||||
margin: 0;
|
||||
margin-right: 0.4em
|
||||
}
|
||||
|
||||
#enum_editor_output textarea {
|
||||
width: 100%;
|
||||
float: right;
|
||||
margin: 1em 0 0 0
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ENUM/SET editor integration for the routines editor
|
||||
*/
|
||||
|
||||
.enum_hint {
|
||||
position: relative
|
||||
}
|
||||
|
||||
.enum_hint a {
|
||||
position: absolute;
|
||||
left: 81%;
|
||||
bottom: .35em
|
||||
}
|
43
#pma/themes/fallen/css/fallen/bundle-fonts.css
Normal file
43
#pma/themes/fallen/css/fallen/bundle-fonts.css
Normal file
@ -0,0 +1,43 @@
|
||||
@font-face {
|
||||
font-family: "Fallen";
|
||||
src: local("☺");
|
||||
src: url("./themes/fallen/fonts/fallen/fallen.eot");
|
||||
src: url("./themes/fallen/fonts/fallen/fallen.eot?#iefix") format("embedded-opentype"), url("./themes/fallen/fonts/fallen/fallen.svg#fallen") format("svg"), url("./themes/fallen/fonts/fallen/fallen.woff") format("woff"), url("./themes/fallen/fonts/fallen/fallen.ttf") format("truetype");
|
||||
font-weight: normal;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
src: local(Roboto Thin), url("./themes/fallen/fonts/roboto/Roboto-Thin.eot");
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("./themes/fallen/fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("./themes/fallen/fonts/roboto/Roboto-Thin.woff") format("woff"), url("./themes/fallen/fonts/roboto/Roboto-Thin.ttf") format("truetype");
|
||||
font-weight: 200
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
src: local(Roboto Light), url("./themes/fallen/fonts/roboto/Roboto-Light.eot");
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("./themes/fallen/fonts/roboto/Roboto-Light.woff2") format("woff2"), url("./themes/fallen/fonts/roboto/Roboto-Light.woff") format("woff"), url("./themes/fallen/fonts/roboto/Roboto-Light.ttf") format("truetype");
|
||||
font-weight: 300
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
src: local(Roboto Regular), url("./themes/fallen/fonts/roboto/Roboto-Regular.eot");
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("./themes/fallen/fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("./themes/fallen/fonts/roboto/Roboto-Regular.woff") format("woff"), url("./themes/fallen/fonts/roboto/Roboto-Regular.ttf") format("truetype");
|
||||
font-weight: 400
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Medium.eot");
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("./themes/fallen/fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("./themes/fallen/fonts/roboto/Roboto-Medium.woff") format("woff"), url("./themes/fallen/fonts/roboto/Roboto-Medium.ttf") format("truetype");
|
||||
font-weight: 500
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Roboto";
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Bold.eot");
|
||||
src: url("./themes/fallen/fonts/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("./themes/fallen/fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("./themes/fallen/fonts/roboto/Roboto-Bold.woff") format("woff"), url("./themes/fallen/fonts/roboto/Roboto-Bold.ttf") format("truetype");
|
||||
font-weight: 700
|
||||
}
|
1
#pma/themes/fallen/css/fallen/bundle-fonts.min.css
vendored
Normal file
1
#pma/themes/fallen/css/fallen/bundle-fonts.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
@font-face{font-family:"Fallen";src:local("☺");src:url("./themes/fallen/fonts/fallen/fallen.eot");src:url("./themes/fallen/fonts/fallen/fallen.eot?#iefix") format("embedded-opentype"),url("./themes/fallen/fonts/fallen/fallen.svg#fallen") format("svg"),url("./themes/fallen/fonts/fallen/fallen.woff") format("woff"),url("./themes/fallen/fonts/fallen/fallen.ttf") format("truetype");font-weight:normal;font-style:normal}@font-face{font-family:"Roboto";src:local(Roboto Thin),url("./themes/fallen/fonts/roboto/Roboto-Thin.eot");src:url("./themes/fallen/fonts/roboto/Roboto-Thin.eot?#iefix") format("embedded-opentype"),url("./themes/fallen/fonts/roboto/Roboto-Thin.woff2") format("woff2"),url("./themes/fallen/fonts/roboto/Roboto-Thin.woff") format("woff"),url("./themes/fallen/fonts/roboto/Roboto-Thin.ttf") format("truetype");font-weight:200}@font-face{font-family:"Roboto";src:local(Roboto Light),url("./themes/fallen/fonts/roboto/Roboto-Light.eot");src:url("./themes/fallen/fonts/roboto/Roboto-Light.eot?#iefix") format("embedded-opentype"),url("./themes/fallen/fonts/roboto/Roboto-Light.woff2") format("woff2"),url("./themes/fallen/fonts/roboto/Roboto-Light.woff") format("woff"),url("./themes/fallen/fonts/roboto/Roboto-Light.ttf") format("truetype");font-weight:300}@font-face{font-family:"Roboto";src:local(Roboto Regular),url("./themes/fallen/fonts/roboto/Roboto-Regular.eot");src:url("./themes/fallen/fonts/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"),url("./themes/fallen/fonts/roboto/Roboto-Regular.woff2") format("woff2"),url("./themes/fallen/fonts/roboto/Roboto-Regular.woff") format("woff"),url("./themes/fallen/fonts/roboto/Roboto-Regular.ttf") format("truetype");font-weight:400}@font-face{font-family:"Roboto";src:url("./themes/fallen/fonts/roboto/Roboto-Medium.eot");src:url("./themes/fallen/fonts/roboto/Roboto-Medium.eot?#iefix") format("embedded-opentype"),url("./themes/fallen/fonts/roboto/Roboto-Medium.woff2") format("woff2"),url("./themes/fallen/fonts/roboto/Roboto-Medium.woff") format("woff"),url("./themes/fallen/fonts/roboto/Roboto-Medium.ttf") format("truetype");font-weight:500}@font-face{font-family:"Roboto";src:url("./themes/fallen/fonts/roboto/Roboto-Bold.eot");src:url("./themes/fallen/fonts/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"),url("./themes/fallen/fonts/roboto/Roboto-Bold.woff2") format("woff2"),url("./themes/fallen/fonts/roboto/Roboto-Bold.woff") format("woff"),url("./themes/fallen/fonts/roboto/Roboto-Bold.ttf") format("truetype");font-weight:700}
|
161
#pma/themes/fallen/css/fallen/common/alert.css.php
Normal file
161
#pma/themes/fallen/css/fallen/common/alert.css.php
Normal file
@ -0,0 +1,161 @@
|
||||
.attention {
|
||||
color: red;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
.allfine {
|
||||
color: green
|
||||
}
|
||||
|
||||
/* Message Boxes: Error, Confirmation */
|
||||
|
||||
#pma_errors, #pma_demo, #pma_footer {
|
||||
padding: 20px
|
||||
}
|
||||
|
||||
#pma_errors #pma_errors {
|
||||
padding: 0
|
||||
}
|
||||
|
||||
.success h1, .notice h1, div.error h1 {
|
||||
text-align: left;
|
||||
margin: 0 0 0.2em 0;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor'] ?>
|
||||
}
|
||||
|
||||
div.success, div.notice, div.error, div.footnotes {
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
margin: 20px 0 20px;
|
||||
border: 1px solid;
|
||||
background-repeat: no-repeat;
|
||||
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
|
||||
background-position: 10px 50%;
|
||||
padding: 10px
|
||||
<?php } else { ?>
|
||||
background-position: 99% 50%;
|
||||
padding: 10px 35px 10px 10px
|
||||
<?php } ?>
|
||||
}
|
||||
|
||||
.ajax_notification .error {
|
||||
margin-top: 0;
|
||||
padding: 3px
|
||||
}
|
||||
|
||||
div.success {
|
||||
margin: 0 0 1em 0;
|
||||
border: none
|
||||
}
|
||||
|
||||
.success a, .notice a, .error a {
|
||||
text-decoration: underline;
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>
|
||||
}
|
||||
|
||||
.success {
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
background-color: <?php echo $GLOBALS['cfg']['BrowseSuccessColor'] ?>
|
||||
}
|
||||
|
||||
h1.success, div.success {
|
||||
border-color: <?php echo $GLOBALS['cfg']['BrowseSuccessColor'] ?>
|
||||
}
|
||||
|
||||
.notice, .footnotes {
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
background-color: <?php echo $GLOBALS['cfg']['BlueHeader'] ?>
|
||||
}
|
||||
|
||||
h1.notice, div.notice, div.footnotes {
|
||||
border-color: <?php echo $GLOBALS['cfg']['BlueHeader'] ?>
|
||||
}
|
||||
|
||||
.notice a {
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>
|
||||
}
|
||||
|
||||
.error {
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>!important;
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
background-color: <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>
|
||||
}
|
||||
|
||||
h1.error, div.error {
|
||||
border-color: <?php echo $GLOBALS['cfg']['MainColor'] ?>
|
||||
}
|
||||
|
||||
.confirmation {
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
background-color: <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>
|
||||
}
|
||||
|
||||
fieldset.confirmation legend {
|
||||
background-color: #d03912
|
||||
}
|
||||
|
||||
/* End Message Boxes */
|
||||
|
||||
/* Forbidden, No Privileges */
|
||||
|
||||
.noPrivileges {
|
||||
color: #ff0000;
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* End Forbidden */
|
||||
|
||||
fieldset.caution {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>
|
||||
}
|
||||
|
||||
fieldset.caution legend {
|
||||
background-color: #fff
|
||||
}
|
||||
|
||||
fieldset.caution a {
|
||||
text-transform: uppercase;
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
fieldset.caution ul, #tbl_maintenance {
|
||||
padding: 0
|
||||
}
|
||||
|
||||
fieldset.caution li, #tbl_maintenance li {
|
||||
display: block
|
||||
}
|
||||
|
||||
fieldset.caution li:before {
|
||||
font-family: "<?php echo $font_family_icon ?>";
|
||||
content: "";
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
margin-right: 10px
|
||||
}
|
||||
|
||||
fieldset.caution li a:nth-child(2) img {
|
||||
background: url("./themes/<?php echo $slug ?>/img/s_info.png")!important
|
||||
}
|
||||
|
||||
p.notice {
|
||||
margin: 1.5em 0;
|
||||
border: 1px solid #000;
|
||||
background-repeat: no-repeat;
|
||||
background: #555;
|
||||
color: #d4fb6a
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
padding: 10px 10px 10px 25px
|
||||
<?php } else { ?>
|
||||
background-position: 99% 50%;
|
||||
padding: 25px 10px 10px 10px
|
||||
<?php } ?>
|
||||
}
|
||||
|
||||
p.notice a {
|
||||
color: #fff;
|
||||
text-decoration: underline
|
||||
}
|
28
#pma/themes/fallen/css/fallen/common/buttons.css.php
Normal file
28
#pma/themes/fallen/css/fallen/common/buttons.css.php
Normal file
@ -0,0 +1,28 @@
|
||||
button {
|
||||
background-color: <?php echo $GLOBALS['cfg']['ButtonBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
margin-left: 14px;
|
||||
padding: 4px;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.sqlbutton, #tablefieldinsertbuttoncontainer input[type=button] {
|
||||
margin-top: 1em;
|
||||
margin-left: 0!important;
|
||||
margin-right: 14px!important
|
||||
}
|
||||
|
||||
button {
|
||||
display: inline
|
||||
}
|
||||
|
||||
button, img {
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
button.mult_submit {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor'] ?>;
|
||||
margin: 0
|
||||
}
|
10
#pma/themes/fallen/css/fallen/common/content.css.php
Normal file
10
#pma/themes/fallen/css/fallen/common/content.css.php
Normal file
@ -0,0 +1,10 @@
|
||||
#page_content {
|
||||
margin: 20px!important
|
||||
}
|
||||
|
||||
.turnOffSelect {
|
||||
user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none
|
||||
}
|
24
#pma/themes/fallen/css/fallen/common/data.css.php
Normal file
24
#pma/themes/fallen/css/fallen/common/data.css.php
Normal file
@ -0,0 +1,24 @@
|
||||
.data, .data_full_width {
|
||||
margin: 10px 0
|
||||
}
|
||||
|
||||
.data_full_width {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.data th {
|
||||
border-bottom: 1px solid <?php echo $GLOBALS['cfg']['BorderColor'] ?>
|
||||
}
|
||||
|
||||
.data th a:hover {
|
||||
color: #999!important
|
||||
}
|
||||
|
||||
div#dataDisplay input, div#dataDisplay select {
|
||||
margin: 0;
|
||||
margin-right: .5em
|
||||
}
|
||||
|
||||
div#dataDisplay th {
|
||||
line-height: 2em
|
||||
}
|
1410
#pma/themes/fallen/css/fallen/common/elements.css.php
Normal file
1410
#pma/themes/fallen/css/fallen/common/elements.css.php
Normal file
File diff suppressed because it is too large
Load Diff
293
#pma/themes/fallen/css/fallen/common/forms.css.php
Normal file
293
#pma/themes/fallen/css/fallen/common/forms.css.php
Normal file
@ -0,0 +1,293 @@
|
||||
form {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
input[type="checkbox" i] {
|
||||
margin-top: .2px!important
|
||||
}
|
||||
|
||||
input[type=text], input[type=password], input[type=number] {
|
||||
background-color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseGrayColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamily'] ?>;
|
||||
margin: 6px;
|
||||
padding: 5px
|
||||
}
|
||||
|
||||
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['NaviHoverBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['MainColor'] ?>
|
||||
}
|
||||
|
||||
input[type=submit], input[type=reset], input[type=button] {
|
||||
background-color: <?php echo $GLOBALS['cfg']['ButtonBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['ButtonBackground'] ?>;
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 1px 1px <?php echo $GLOBALS['cfg']['BrowseGrayColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamily'] ?>;
|
||||
margin-left: 5px;
|
||||
padding: 4px;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
fieldset.confirmation input[type=submit], input[type=reset], input[type=button] {
|
||||
box-shadow: 0 1px 1px <?php echo $GLOBALS['cfg']['ThColor'] ?>
|
||||
}
|
||||
|
||||
input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover {
|
||||
background-color: <?php echo $GLOBALS['cfg']['ButtonHover'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['ButtonHover'] ?>;
|
||||
cursor: pointer;
|
||||
position: relative
|
||||
}
|
||||
|
||||
input[type=submit]:active, input[type=reset]:active, input[type=button]:active {
|
||||
background-color: #333;
|
||||
border: 1px solid #333;
|
||||
position: relative
|
||||
}
|
||||
|
||||
textarea {
|
||||
background-color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseGrayColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
overflow: visible
|
||||
}
|
||||
|
||||
fieldset {
|
||||
background-color: <?php echo $GLOBALS['cfg']['ThBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BorderColor'] ?>;
|
||||
margin-top: 15px;
|
||||
padding: 20px
|
||||
}
|
||||
|
||||
#boxContainer fieldset {
|
||||
margin: 5px
|
||||
}
|
||||
|
||||
fieldset fieldset {
|
||||
background-color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
border: none;
|
||||
margin: 20px;
|
||||
margin-bottom: 0
|
||||
}
|
||||
|
||||
tr.noclick td:first-child:before {
|
||||
content: ""
|
||||
}
|
||||
|
||||
fieldset.tblFooters {
|
||||
border-top: 0;
|
||||
clear: both;
|
||||
float: none;
|
||||
margin-top: -1px;
|
||||
text-align: right
|
||||
}
|
||||
|
||||
fieldset .formelement {
|
||||
float: left;
|
||||
margin-right: 0.5em
|
||||
}
|
||||
|
||||
fieldset div[class=formelement] {
|
||||
white-space: normal
|
||||
}
|
||||
|
||||
.chrome input[type="checkbox"] {
|
||||
left: -9999px;
|
||||
position: relative
|
||||
}
|
||||
|
||||
.chrome input[type="checkbox"]:before {
|
||||
font-family: "<?php echo $font_family_icon ?>";
|
||||
content: "";
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
cursor: default;
|
||||
position: absolute;
|
||||
padding: 4px;
|
||||
top: 0;
|
||||
left: 9995px
|
||||
}
|
||||
|
||||
.chrome input[type="checkbox"]:indeterminate:before {
|
||||
content: ""
|
||||
}
|
||||
|
||||
.chrome input[type="checkbox"]:checked:before {
|
||||
content: ""
|
||||
}
|
||||
|
||||
.chrome .navigation input[type="checkbox"]:before {
|
||||
color: #fff
|
||||
}
|
||||
|
||||
.chrome input[type="radio"] {
|
||||
left: -9999px;
|
||||
position: relative
|
||||
}
|
||||
|
||||
.chrome input[type="radio"]:before {
|
||||
font-family: "<?php echo $font_family_icon ?>";
|
||||
content: "";
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
cursor: default;
|
||||
position: absolute;
|
||||
padding: 4px;
|
||||
top: 0;
|
||||
left: 9995px
|
||||
}
|
||||
|
||||
.chrome input[type="radio"]:checked:before {
|
||||
content: ""
|
||||
}
|
||||
|
||||
fieldset .group-header th {
|
||||
background: <?php echo $GLOBALS['cfg']['BgTwo'] ?>;
|
||||
}
|
||||
|
||||
fieldset .group-header+tr th {
|
||||
padding-top: .6em
|
||||
}
|
||||
|
||||
fieldset .group-field-1 th, fieldset .group-header-2 th {
|
||||
padding-left: 1.5em
|
||||
}
|
||||
|
||||
fieldset .group-field-2 th, fieldset .group-header-3 th {
|
||||
padding-left: 3em
|
||||
}
|
||||
|
||||
fieldset .group-field-3 th {
|
||||
padding-left: 4.5em
|
||||
}
|
||||
|
||||
fieldset .disabled-field th, fieldset .disabled-field th small, fieldset .disabled-field td {
|
||||
color: #666;
|
||||
background-color: #ddd
|
||||
}
|
||||
|
||||
form.create_table_form fieldset.tblFooters, form#multi_edit_central_columns fieldset.tblFooters {
|
||||
background: none;
|
||||
border: none
|
||||
}
|
||||
|
||||
form#tableOptionsForm input[name="comment"], form#tableOptionsForm select[name="tbl_collation"] {
|
||||
width: 130px
|
||||
}
|
||||
|
||||
form#formDatabaseComment .tblFooters, form#create_table_form_minimal .tblFooters, form#rename_db_form .tblFooters, form#copy_db_form .tblFooters, form#change_db_charset_form .tblFooters, form#alterTableOrderby .tblFooters, form#moveTableForm .tblFooters, form#copyTable .tblFooters, form#tableOptionsForm .tblFooters {
|
||||
margin-top: -40px
|
||||
}
|
||||
|
||||
fieldset#tableFilter {
|
||||
margin-bottom: 1em
|
||||
}
|
||||
|
||||
fieldset#tableFilter input[type=submit] {
|
||||
margin-top: -1px
|
||||
}
|
||||
|
||||
/* Table structure styles */
|
||||
|
||||
#fieldsForm ul.table-structure-actions {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none
|
||||
}
|
||||
|
||||
#fieldsForm ul.table-structure-actions li {
|
||||
float: left;
|
||||
margin-right: 0.3em
|
||||
/* same as padding of "table td" */
|
||||
}
|
||||
|
||||
#fieldsForm ul.table-structure-actions .submenu li {
|
||||
padding: 0;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
#fieldsForm ul.table-structure-actions .submenu li span {
|
||||
padding: 0.3em;
|
||||
margin: 0.1em
|
||||
}
|
||||
|
||||
#fieldset_zoom_search table th, #fieldset_zoom_search table td {
|
||||
line-height: 35px
|
||||
}
|
||||
|
||||
#fieldset_table_qbe table th, #fieldset_table_qbe table td {
|
||||
line-height: 35px
|
||||
}
|
||||
|
||||
form.append_fields_form .tblFooters {
|
||||
background: none;
|
||||
border: none
|
||||
}
|
||||
|
||||
#table_columns input[type="text"], #table_columns input[type="password"], #table_columns input[type="number"], #table_columns input[type="date"], #table_columns select {
|
||||
width: 10em;
|
||||
box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box
|
||||
}
|
||||
|
||||
#table_columns select {
|
||||
margin: 6px
|
||||
}
|
||||
|
||||
#placeholder {
|
||||
position: relative;
|
||||
border: 1px solid #aaa;
|
||||
float: right;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.placeholderDrag {
|
||||
cursor: move
|
||||
}
|
||||
|
||||
#placeholder .button {
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.doubleFieldset fieldset {
|
||||
width: 48%;
|
||||
float: left;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
.doubleFieldset fieldset.left {
|
||||
margin-right: 1%
|
||||
}
|
||||
|
||||
.doubleFieldset fieldset.right {
|
||||
margin-left: 1%
|
||||
}
|
||||
|
||||
.doubleFieldset legend {
|
||||
margin-left: 1.5em
|
||||
}
|
||||
|
||||
.doubleFieldset div.wrap {
|
||||
padding: 1.5em
|
||||
}
|
||||
|
||||
.modal-copy input {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-top: 1.5em;
|
||||
padding: .3em 0
|
||||
}
|
||||
|
||||
fieldset#fieldset_delete_user_footer {
|
||||
margin-top: -30px
|
||||
}
|
||||
|
||||
#parameterized {
|
||||
margin: 20px 5px 20px 0!important
|
||||
}
|
45
#pma/themes/fallen/css/fallen/common/general.css.php
Normal file
45
#pma/themes/fallen/css/fallen/common/general.css.php
Normal file
@ -0,0 +1,45 @@
|
||||
html {
|
||||
font-size: 100%
|
||||
}
|
||||
|
||||
input, select, textarea {
|
||||
font-size: 1em
|
||||
}
|
||||
|
||||
body {
|
||||
background: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['MainColor'] ?>;
|
||||
<?php if ( !empty($GLOBALS['cfg']['FontFamily']) ) { ?>
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamily'] ?>;
|
||||
<?php } ?>
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
margin-left: 250px;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
a, a:link, a:visited, a:active, button.mult_submit, .checkall_box+label {
|
||||
text-decoration: none;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
cursor: pointer;
|
||||
outline: none
|
||||
}
|
||||
|
||||
a:hover, button.mult_submit:hover, button.mult_submit:focus, .checkall_box+label:hover {
|
||||
text-decoration: underline;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor'] ?>
|
||||
}
|
||||
|
||||
font[color=red], span[style="color: #ff0000"] {
|
||||
color: <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>!important
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
<?php if ( !empty($GLOBALS['cfg']['FontFamilyFixed']) ) { ?>
|
||||
code, pre, textarea, tt {
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed'] ?>!important
|
||||
}
|
||||
<?php } ?>
|
1082
#pma/themes/fallen/css/fallen/common/globals.css.php
Normal file
1082
#pma/themes/fallen/css/fallen/common/globals.css.php
Normal file
File diff suppressed because it is too large
Load Diff
7
#pma/themes/fallen/css/fallen/common/heading.css.php
Normal file
7
#pma/themes/fallen/css/fallen/common/heading.css.php
Normal file
@ -0,0 +1,7 @@
|
||||
h2 img {
|
||||
display: none
|
||||
}
|
||||
|
||||
h2 a img {
|
||||
display: inline
|
||||
}
|
17
#pma/themes/fallen/css/fallen/common/icons.css.php
Normal file
17
#pma/themes/fallen/css/fallen/common/icons.css.php
Normal file
@ -0,0 +1,17 @@
|
||||
#page_nav_icons {
|
||||
position: fixed;
|
||||
top: 8px;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
padding: .25em 10px 0 0
|
||||
}
|
||||
|
||||
#goto_pagetop, #lock_page_icon, #page_settings_icon {
|
||||
padding: .25em
|
||||
}
|
||||
|
||||
#page_settings_icon {
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
margin-right: 6px!important
|
||||
}
|
3
#pma/themes/fallen/css/fallen/common/images.css.php
Normal file
3
#pma/themes/fallen/css/fallen/common/images.css.php
Normal file
@ -0,0 +1,3 @@
|
||||
img.lightbulb {
|
||||
cursor: pointer
|
||||
}
|
22
#pma/themes/fallen/css/fallen/common/layouts.css.php
Normal file
22
#pma/themes/fallen/css/fallen/common/layouts.css.php
Normal file
@ -0,0 +1,22 @@
|
||||
.pdflayout {
|
||||
overflow: hidden;
|
||||
clip: inherit;
|
||||
background-color: #fff;
|
||||
display: none;
|
||||
border: 1px solid #000;
|
||||
position: relative
|
||||
}
|
||||
|
||||
.pdflayout_table {
|
||||
background: #d3dce3;
|
||||
color: #000;
|
||||
overflow: hidden;
|
||||
clip: inherit;
|
||||
z-index: 2;
|
||||
display: inline;
|
||||
visibility: inherit;
|
||||
cursor: move;
|
||||
position: absolute;
|
||||
font-size: 80%;
|
||||
border: 1px dashed #000
|
||||
}
|
151
#pma/themes/fallen/css/fallen/common/login.css.php
Normal file
151
#pma/themes/fallen/css/fallen/common/login.css.php
Normal file
@ -0,0 +1,151 @@
|
||||
body#loginform {
|
||||
background-color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
body#loginform #page_content {
|
||||
background-color: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
height: 220px;
|
||||
margin: 0!important;
|
||||
margin-top: 10%!important;
|
||||
padding: 35px 20px 20px
|
||||
}
|
||||
|
||||
body#loginform div.container {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: left;
|
||||
width: 48em
|
||||
}
|
||||
|
||||
body#loginform div.container:before {
|
||||
background-color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 4px 2px rgba(14, 14, 14, 0.29);
|
||||
color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
content: "a";
|
||||
float: left;
|
||||
font-family: "<?php echo $font_family_icon ?>";
|
||||
font-size: 235px;
|
||||
height: 220px;
|
||||
line-height: 1;
|
||||
margin-right: 20px;
|
||||
margin-top: -10px;
|
||||
overflow: hidden;
|
||||
width: 230px
|
||||
}
|
||||
|
||||
/* IE Setting for 'body#loginform div.container:before' */
|
||||
|
||||
.ie body#loginform div.container:before {
|
||||
border-radius: 0;
|
||||
box-shadow: 0 1px 1px rgba(14, 14, 14, 0.29);
|
||||
}
|
||||
|
||||
body#loginform h1 {
|
||||
color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
display: inline-block;
|
||||
font-size: 2.5em;
|
||||
line-height: 2;
|
||||
margin-right: -50%;
|
||||
padding-top: 0;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
body#loginform a.logo {
|
||||
display: none
|
||||
}
|
||||
|
||||
body#loginform fieldset legend {
|
||||
display: none
|
||||
}
|
||||
|
||||
body#loginform .item {
|
||||
margin-bottom: 10px
|
||||
}
|
||||
|
||||
body#loginform input.textfield {
|
||||
background: <?php echo $GLOBALS['cfg']['NaviColor'] ?>;
|
||||
border: 1px solid #fff;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
margin: 0;
|
||||
width: 100%
|
||||
}
|
||||
|
||||
body#loginform input.textfield:hover, body#loginform input.textfield:focus {
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
color: #333;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
body#loginform input[type=submit] {
|
||||
background-color: #fff;
|
||||
border: none;
|
||||
box-shadow: 0 1px 1px <?php echo $GLOBALS['cfg']['MainColor'] ?>;
|
||||
color: #444;
|
||||
margin: 0;
|
||||
padding: 7px
|
||||
}
|
||||
|
||||
body#loginform input[type=submit]:hover {
|
||||
background-color: #eee
|
||||
}
|
||||
|
||||
body#loginform input[type=submit]:focus {
|
||||
background-color: #ddd;
|
||||
box-shadow: none
|
||||
}
|
||||
|
||||
body#loginform select {
|
||||
background: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
border: 1px solid #fff;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor'] ?>;
|
||||
margin: 0!important;
|
||||
min-width: 100%;
|
||||
padding-left: 0!important
|
||||
}
|
||||
|
||||
body#loginform select:hover {
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['NaviColor'] ?>;
|
||||
}
|
||||
|
||||
body#loginform br {
|
||||
display: none
|
||||
}
|
||||
|
||||
body#loginform fieldset {
|
||||
background: none;
|
||||
border: none;
|
||||
margin-top: 0;
|
||||
margin-bottom: 10px;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
body#loginform fieldset:first-child {
|
||||
border-bottom: none;
|
||||
margin: 0;
|
||||
margin-bottom: 0
|
||||
}
|
||||
|
||||
body#loginform fieldset.tblFooters {
|
||||
border: none;
|
||||
clear: none;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
body#loginform .error {
|
||||
box-shadow: 0 1px 1px #666;
|
||||
float: left;
|
||||
margin-top: -280px;
|
||||
width: 48em
|
||||
}
|
||||
|
||||
body#loginform form.login label {
|
||||
display: none
|
||||
}
|
1
#pma/themes/fallen/css/fallen/common/ltr.css.php
Normal file
1
#pma/themes/fallen/css/fallen/common/ltr.css.php
Normal file
@ -0,0 +1 @@
|
||||
/* LTR Mode */
|
54
#pma/themes/fallen/css/fallen/common/nav.css.php
Normal file
54
#pma/themes/fallen/css/fallen/common/nav.css.php
Normal file
@ -0,0 +1,54 @@
|
||||
.navigation {
|
||||
width: 100%;
|
||||
background-color: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor'] ?>
|
||||
}
|
||||
|
||||
.navigation td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
padding-left: 2px!important;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
.navigation_separator {
|
||||
color: #eee;
|
||||
display: inline-block;
|
||||
font-size: 1.5em;
|
||||
text-align: center;
|
||||
height: 1.4em
|
||||
}
|
||||
|
||||
.navigation input[type=submit] {
|
||||
background: #fff;
|
||||
border: none;
|
||||
box-shadow: 0 1px 1px <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
filter: none;
|
||||
margin: 5px;
|
||||
padding: 0.4em
|
||||
}
|
||||
|
||||
.navigation input[type=submit]:hover, .navigation input.edit_mode_active {
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
cursor: pointer;
|
||||
background-color: <?php echo $GLOBALS['cfg']['NaviColor'] ?>
|
||||
}
|
||||
|
||||
.navigation input[type=submit]:focus {
|
||||
box-shadow: none
|
||||
}
|
||||
|
||||
.navigation select {
|
||||
margin: 0 0.8em;
|
||||
border: none
|
||||
}
|
||||
|
||||
.navigation input[type=text] {
|
||||
border: none
|
||||
}
|
||||
|
||||
.navigation_goto {
|
||||
width: 100%
|
||||
}
|
35
#pma/themes/fallen/css/fallen/common/reset.css.php
Normal file
35
#pma/themes/fallen/css/fallen/common/reset.css.php
Normal file
@ -0,0 +1,35 @@
|
||||
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
|
||||
display: block
|
||||
}
|
||||
|
||||
ol, ul {
|
||||
list-style: none
|
||||
}
|
||||
|
||||
blockquote, q {
|
||||
quotes: none
|
||||
}
|
||||
|
||||
blockquote:before, blockquote:after, q:before, q:after {
|
||||
content: '';
|
||||
content: none
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0
|
||||
}
|
||||
|
||||
*:focus {
|
||||
outline: none
|
||||
}
|
||||
|
||||
#li_select_fontsize {
|
||||
display: none
|
||||
}
|
14
#pma/themes/fallen/css/fallen/common/responsive.css.php
Normal file
14
#pma/themes/fallen/css/fallen/common/responsive.css.php
Normal file
@ -0,0 +1,14 @@
|
||||
@media (min-width: 768px) {
|
||||
#tbl_search_form fieldset, #zoom_search_form fieldset, #find_replace_form fieldset {
|
||||
margin-top: 5px
|
||||
}
|
||||
|
||||
fieldset#tableFilter {
|
||||
margin-top: 0
|
||||
}
|
||||
|
||||
.tabLinks {
|
||||
margin-top: -5px;
|
||||
margin-bottom: 5px
|
||||
}
|
||||
}
|
19
#pma/themes/fallen/css/fallen/common/select.css.php
Normal file
19
#pma/themes/fallen/css/fallen/common/select.css.php
Normal file
@ -0,0 +1,19 @@
|
||||
select {
|
||||
background-color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseGrayColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamily'] ?>;
|
||||
margin: 5px;
|
||||
max-width: 17em;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['NaviHoverBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['MainColor'] ?>
|
||||
}
|
||||
|
||||
.selectallarrow {
|
||||
margin-left: .6em;
|
||||
margin-right: .3em
|
||||
}
|
288
#pma/themes/fallen/css/fallen/common/tables.css.php
Normal file
288
#pma/themes/fallen/css/fallen/common/tables.css.php
Normal file
@ -0,0 +1,288 @@
|
||||
table {
|
||||
border-collapse: collapse
|
||||
}
|
||||
|
||||
table caption, table th, table td {
|
||||
padding: 0.6em
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left
|
||||
}
|
||||
|
||||
th, th a {
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>!important;
|
||||
font-weight: 500;
|
||||
padding-top: 10px!important;
|
||||
padding-bottom: 10px!important
|
||||
}
|
||||
|
||||
table.nospacing {
|
||||
border-spacing: 0
|
||||
}
|
||||
|
||||
table.nopadding tr th, table.nopadding tr td {
|
||||
padding: 0
|
||||
}
|
||||
|
||||
th.left, td.left {
|
||||
text-align: left
|
||||
}
|
||||
|
||||
th.center, td.center {
|
||||
text-align: center
|
||||
}
|
||||
|
||||
th.right, td.right {
|
||||
text-align: right;
|
||||
padding-right: 1em
|
||||
}
|
||||
|
||||
tr.vtop th, tr.vtop td, th.vtop, td.vtop {
|
||||
vertical-align: top
|
||||
}
|
||||
|
||||
tr.vmiddle th, tr.vmiddle td, th.vmiddle, td.vmiddle {
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
tr.vbottom th, tr.vbottom td, th.vbottom, td.vbottom {
|
||||
vertical-align: bottom
|
||||
}
|
||||
|
||||
#initials_table {
|
||||
background: <?php echo $GLOBALS['cfg']['ThBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BorderColor'] ?>;
|
||||
margin-bottom: 10px
|
||||
}
|
||||
|
||||
#initials_table a {
|
||||
background: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BorderColor'] ?>;
|
||||
padding: 4px 8px
|
||||
}
|
||||
|
||||
#initials_table td {
|
||||
padding: 8px!important
|
||||
}
|
||||
|
||||
.column_heading, .column_action {
|
||||
background-color: #f6f6f6;
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BorderColor'] ?>
|
||||
}
|
||||
|
||||
table tr.odd th, .odd {
|
||||
background: <?php echo $GLOBALS['cfg']['BgTwo'] ?>;
|
||||
border-bottom: none
|
||||
}
|
||||
|
||||
table tr.even th, .even {
|
||||
background: <?php echo $GLOBALS['cfg']['BgOne'] ?>;
|
||||
border-bottom: none
|
||||
}
|
||||
|
||||
table tr.odd th, table tr.odd, table tr.even th, table tr.even {
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #eee
|
||||
}
|
||||
|
||||
table tr.odd, table tr.even {
|
||||
border-left: 3px solid transparent;
|
||||
line-height: 1em
|
||||
}
|
||||
|
||||
td.marked:not(.nomarker), table tr.marked:not(.nomarker) td, table tr.marked:not(.nomarker) th, table tr.marked:not(.nomarker) {
|
||||
color: <?php echo $GLOBALS['cfg']['MainColor'] ?>
|
||||
}
|
||||
|
||||
td.marked:not(.nomarker) {
|
||||
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground'] ?>
|
||||
}
|
||||
|
||||
table tr.marked:not(.nomarker) {
|
||||
border-left: 3px solid #4285f4
|
||||
}
|
||||
|
||||
table tr.odd:not(.nopointer):hover th, table tr.even:not(.nopointer):hover th, table tr.hover:not(.nopointer) th {
|
||||
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ThPointerColor'] ?>
|
||||
}
|
||||
|
||||
th.condition, th.condition a {
|
||||
border: 1px solid <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>;
|
||||
background: <?php echo $GLOBALS['cfg']['BrowseWarningColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>!important
|
||||
}
|
||||
|
||||
td.condition {
|
||||
border: 1px solid
|
||||
}
|
||||
|
||||
td.null {
|
||||
font-style: italic;
|
||||
text-align: right
|
||||
}
|
||||
|
||||
table .valueHeader {
|
||||
text-align: right;
|
||||
white-space: normal
|
||||
}
|
||||
|
||||
table .value {
|
||||
text-align: left;
|
||||
white-space: normal
|
||||
}
|
||||
|
||||
/* IE doesnt handles 'pre' right */
|
||||
|
||||
table [class=value] {
|
||||
white-space: normal
|
||||
}
|
||||
|
||||
/* End IE */
|
||||
|
||||
td .icon {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
.tblcomment {
|
||||
font-size: 70%;
|
||||
font-weight: normal;
|
||||
color: #000099
|
||||
}
|
||||
|
||||
.tblHeaders {
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>;
|
||||
background: <?php echo $GLOBALS['cfg']['ThBackground'] ?>;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
.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 {
|
||||
color: #0000ff
|
||||
}
|
||||
|
||||
.tblHeaders a:hover, div.tools a:hover, .tblFooters a:hover {
|
||||
color: #ff0000
|
||||
}
|
||||
|
||||
#tbl_maintenance li a {
|
||||
text-transform: uppercase;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
#tbl_maintenance li:before {
|
||||
font-family: "<?php echo $font_family_icon ?>";
|
||||
content: "%";
|
||||
margin-right: 10px
|
||||
}
|
||||
|
||||
table#tableFieldsId {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
/* Table stats */
|
||||
|
||||
div#tablestatistics table {
|
||||
float: left;
|
||||
margin-bottom: .5em;
|
||||
margin-right: 1.5em;
|
||||
margin-top: .5em;
|
||||
min-width: 16em
|
||||
}
|
||||
|
||||
/* End table stats */
|
||||
|
||||
/* Server Privileges */
|
||||
|
||||
#tableuserrights td, #tablespecificuserrights td, #tabledatabases td {
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
/* End server privileges */
|
||||
|
||||
#structure-action-links a {
|
||||
margin-right: 1em
|
||||
}
|
||||
|
||||
#create_table_form_minimal {
|
||||
display: block
|
||||
}
|
||||
|
||||
#db_or_table_specific_priv .tblFooters {
|
||||
margin-top: -68px
|
||||
}
|
||||
|
||||
.pma_table td {
|
||||
position: static
|
||||
}
|
||||
|
||||
.pma_table th.draggable span, .pma_table tbody td span {
|
||||
display: block;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.pma_table tbody td span code span {
|
||||
display: inline
|
||||
}
|
||||
|
||||
.insertRowTable td, .insertRowTable th {
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
table.show_create {
|
||||
margin-top: 1em
|
||||
}
|
||||
|
||||
table.show_create td {
|
||||
border-right: 1px solid #bbb
|
||||
}
|
||||
|
||||
#alias_modal table th {
|
||||
vertical-align: middle;
|
||||
padding-left: 1em
|
||||
}
|
||||
|
||||
#alias_modal label.col-2 {
|
||||
min-width: 20%;
|
||||
display: inline-block
|
||||
}
|
||||
|
||||
#alias_modal select {
|
||||
width: 25%;
|
||||
margin-right: 2em
|
||||
}
|
||||
|
||||
#alias_modal label {
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
/* styles for sortable tables created with tablesorter jquery plugin */
|
||||
th.header {
|
||||
cursor: pointer;
|
||||
color: #235a81
|
||||
}
|
||||
|
||||
th.header:hover {
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
th.header .sorticon {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right center;
|
||||
display: inline-table;
|
||||
vertical-align: middle;
|
||||
float: right
|
||||
}
|
||||
|
||||
th.headerSortUp .sorticon, th.headerSortDown:hover .sorticon {
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('s_desc.png');
|
||||
?>)
|
||||
}
|
||||
|
||||
th.headerSortDown .sorticon, th.headerSortUp:hover .sorticon {
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('s_asc.png');
|
||||
?>)
|
||||
}
|
||||
/* end of styles of sortable tables */
|
23
#pma/themes/fallen/css/fallen/common/typography.css.php
Normal file
23
#pma/themes/fallen/css/fallen/common/typography.css.php
Normal file
@ -0,0 +1,23 @@
|
||||
h1, h2 {
|
||||
color: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamilyLight'] ?>
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3em;
|
||||
letter-spacing: -1px;
|
||||
line-height: 1;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 3.6em;
|
||||
margin: 10px 0 15px;
|
||||
line-height: 1;
|
||||
letter-spacing: -1px
|
||||
}
|
||||
|
||||
h3 {
|
||||
text-transform: uppercase;
|
||||
font-weight: normal
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
#pma_navigation div.pageselector {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
margin-left: 0.75em;
|
||||
border-left: 1px solid #666
|
||||
}
|
422
#pma/themes/fallen/css/fallen/navigation/globals.css.php
Normal file
422
#pma/themes/fallen/css/fallen/navigation/globals.css.php
Normal file
@ -0,0 +1,422 @@
|
||||
#pma_navigation #recentTableList {
|
||||
text-align: center;
|
||||
padding: 10px
|
||||
}
|
||||
|
||||
#pma_navigation #recentTableList select {
|
||||
min-width: 100%
|
||||
}
|
||||
|
||||
#pma_navigation #databaseList {
|
||||
text-align: center;
|
||||
margin: 10px
|
||||
}
|
||||
|
||||
#pma_navigation #navipanellinks {
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
padding-left: 7px;
|
||||
text-align: left;
|
||||
background-color: <?php echo $GLOBALS['cfg']['BorderColor'] ?>
|
||||
}
|
||||
|
||||
div#left_tableList li a:first-child:before {
|
||||
color: <?php echo $GLOBALS['cfg']['NaviPointerColor'] ?>;
|
||||
font-family: "<?php echo $font_family_icon ?>";
|
||||
content: "";
|
||||
margin: 10px
|
||||
}
|
||||
|
||||
div#left_tableList li:hover a:first-child:before {
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>
|
||||
}
|
||||
|
||||
#navipanellinks a {
|
||||
display: inline-block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
color: <?php echo $GLOBALS['cfg']['MainColor'] ?>;
|
||||
margin-right: 10px;
|
||||
padding: 5px;
|
||||
font-size: 15px
|
||||
}
|
||||
|
||||
#navipanellinks a:hover {
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>
|
||||
}
|
||||
|
||||
#pma_navigation #serverChoice, #pma_navigation #databaseList, #pma_navigation div.pageselector.dbselector {
|
||||
text-align: center;
|
||||
padding: 5px 10px 0;
|
||||
border: 0
|
||||
}
|
||||
|
||||
#pma_navigation_content>img.throbber {
|
||||
display: none;
|
||||
margin: .3em auto 0
|
||||
}
|
||||
|
||||
/* Navigation tree*/
|
||||
#pma_navigation_tree {
|
||||
margin: 0;
|
||||
margin-left: 10px;
|
||||
overflow: hidden;
|
||||
height: 74%;
|
||||
position: relative
|
||||
}
|
||||
|
||||
#pma_navigation_select_database {
|
||||
text-align: left;
|
||||
padding: 0 0 0;
|
||||
border: 0;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
#pma_navigation_db_select {
|
||||
margin-top: 0.5em;
|
||||
margin-left: 0.75em
|
||||
}
|
||||
|
||||
#pma_navigation_db_select select {
|
||||
border: 1px solid #bbb;
|
||||
border-top: 1px solid #bbb;
|
||||
color: #333;
|
||||
padding: 4px 6px;
|
||||
margin: 0 0 0;
|
||||
width: 92%
|
||||
}
|
||||
|
||||
#pma_navigation_tree_content {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
position: absolute;
|
||||
height: 100%
|
||||
}
|
||||
|
||||
#pma_navigation_tree li .dbItemControls {
|
||||
padding-left: 4px
|
||||
}
|
||||
|
||||
#pma_navigation_tree li .navItemControls {
|
||||
display: none;
|
||||
padding-left: 4px
|
||||
}
|
||||
|
||||
#pma_navigation_tree li.activePointer .navItemControls {
|
||||
display: inline;
|
||||
opacity: 0.5
|
||||
}
|
||||
|
||||
#pma_navigation_tree li.activePointer .navItemControls:hover {
|
||||
display: inline;
|
||||
opacity: 1.0
|
||||
}
|
||||
|
||||
#pma_navigation_tree_content a.hover_show_full {
|
||||
position: relative;
|
||||
z-index: 100
|
||||
}
|
||||
|
||||
#pma_navigation_tree a {
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor'] ?>
|
||||
}
|
||||
|
||||
#pma_navigation_tree a:hover {
|
||||
text-decoration: none;
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>
|
||||
}
|
||||
|
||||
#pma_navigation_tree li.activePointer {
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>
|
||||
}
|
||||
|
||||
#pma_navigation_tree li.selected {
|
||||
color: <?php echo $GLOBALS['cfg']['ThColor'] ?>
|
||||
}
|
||||
|
||||
#pma_navigation_tree ul {
|
||||
clear: both;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
margin: 5px 0 0 0
|
||||
}
|
||||
|
||||
#pma_navigation_tree ul ul {
|
||||
position: relative
|
||||
}
|
||||
|
||||
#pma_navigation_tree li {
|
||||
white-space: nowrap;
|
||||
clear: both;
|
||||
min-height: 25px
|
||||
}
|
||||
|
||||
#pma_navigation_tree img {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
#pma_navigation_tree i {
|
||||
display: block
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block {
|
||||
position: relative;
|
||||
width: 1.5em;
|
||||
height: 2em;
|
||||
min-width: 16px;
|
||||
min-height: 16px;
|
||||
float: left
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block.double {
|
||||
width: 2.5em
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block i, #pma_navigation_tree div.block b {
|
||||
width: 1.5em;
|
||||
height: 2em;
|
||||
min-width: 16px;
|
||||
min-height: 8px;
|
||||
position: absolute;
|
||||
bottom: 0.7em;
|
||||
left: 0.75em;
|
||||
z-index: 0;
|
||||
margin-top: -4px
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block i {
|
||||
/* Top and right segments for the tree element connections */
|
||||
display: block;
|
||||
border-left: 1px solid #616161;
|
||||
border-bottom: 1px solid #616161;
|
||||
position: relative;
|
||||
z-index: 0
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block i.first {
|
||||
/* Removes top segment */
|
||||
border-left: 0
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block b {
|
||||
/* Bottom segment for the tree element connections */
|
||||
display: block;
|
||||
height: 0.75em;
|
||||
bottom: 0;
|
||||
left: 0.75em;
|
||||
border-left: 1px solid #616161
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block a, #pma_navigation_tree div.block u {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
z-index: 10
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block a+a {
|
||||
left: 100%
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block.double a, #pma_navigation_tree div.block.double u {
|
||||
left: 33%
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block.double a+a {
|
||||
left: 85%
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.block img {
|
||||
position: relative;
|
||||
top: -0.6em;
|
||||
left: 0;
|
||||
margin-left: -7px
|
||||
}
|
||||
|
||||
#pma_navigation_tree div.throbber img {
|
||||
top: 2px;
|
||||
left: 2px
|
||||
}
|
||||
|
||||
#pma_navigation_tree li.last>ul {
|
||||
background: none
|
||||
}
|
||||
|
||||
#pma_navigation_tree li>a, #pma_navigation_tree li>i {
|
||||
line-height: 1.5em;
|
||||
height: 1.5em;
|
||||
padding-left: 0.3em
|
||||
}
|
||||
|
||||
#pma_navigation_tree .list_container {
|
||||
border-left: 1px solid #616161;
|
||||
margin-left: 0.75em;
|
||||
padding-left: 0.75em
|
||||
}
|
||||
|
||||
#pma_navigation_tree .last>.list_container {
|
||||
border-left: 0 solid #616161
|
||||
}
|
||||
|
||||
/* Fast filter */
|
||||
li.fast_filter {
|
||||
padding-left: 0.75em;
|
||||
margin-left: 0.75em;
|
||||
padding-right: 15px;
|
||||
border-left: 1px solid #616161
|
||||
}
|
||||
|
||||
li.fast_filter input {
|
||||
width: 100%;
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
color: #666666;
|
||||
font-family: "Roboto", "Segoe UI";
|
||||
padding: 2px
|
||||
}
|
||||
|
||||
li.fast_filter span {
|
||||
position: relative;
|
||||
right: 1.5em;
|
||||
padding: 0.2em;
|
||||
top: 1px;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
color: #800
|
||||
}
|
||||
|
||||
li.fast_filter.db_fast_filter {
|
||||
border: 0;
|
||||
margin-left: 0;
|
||||
margin-right: 10px
|
||||
}
|
||||
|
||||
#navigation_controls_outer {
|
||||
min-height: 21px !important;
|
||||
margin-top: 18px!important
|
||||
}
|
||||
|
||||
#pma_navigation_collapse {
|
||||
padding-right: 2px
|
||||
}
|
||||
|
||||
#navigation_controls_outer.activePointer {
|
||||
background-color: transparent !important
|
||||
}
|
||||
|
||||
#navigation_controls {
|
||||
float: left;
|
||||
padding-left: 7.1px
|
||||
}
|
||||
|
||||
/* Resize handler */
|
||||
#pma_navigation_resizer {
|
||||
width: 1px;
|
||||
height: 100%;
|
||||
background-color: #aaa;
|
||||
cursor: col-resize;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 250px;
|
||||
z-index: 801
|
||||
}
|
||||
|
||||
#pma_navigation_collapser {
|
||||
width: 20px;
|
||||
padding-top: 4px;
|
||||
padding-bottom: 12px;
|
||||
background: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
border-bottom: 1px solid <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
line-height: 22px;
|
||||
color: #fff;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: <?php echo $GLOBALS['cfg']['NaviWidth'] ?>px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
z-index: 801
|
||||
}
|
||||
|
||||
/* Quick warp links */
|
||||
.pma_quick_warp {
|
||||
margin-top: 20px;
|
||||
margin-left: 4px;
|
||||
position: relative
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list {
|
||||
float: left;
|
||||
margin-left: 3px;
|
||||
padding: 2px 0
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_button {
|
||||
padding: .5em .9em;
|
||||
border: 1px solid #4285f4;
|
||||
background: #4285f4;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
box-shadow: 0 1px 1px #bbb;
|
||||
transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), background-color .2s cubic-bezier(.4, 0, .2, 1);
|
||||
-webkit-transition: box-shadow .2s cubic-bezier(.4, 0, .2, 1), background-color .2s cubic-bezier(.4, 0, .2, 1);
|
||||
border-radius: 2px
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list:hover .drop_button {
|
||||
background: #2171f5
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list ul {
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
list-style: none;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
top: 100%;
|
||||
left: 3px;
|
||||
right: 0;
|
||||
display: none;
|
||||
z-index: 802
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list:hover ul {
|
||||
display: block
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list li {
|
||||
white-space: nowrap;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list li img {
|
||||
vertical-align: sub
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list li:hover {
|
||||
background: #f2f2f2
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list a {
|
||||
display: block;
|
||||
padding: .2em .3em
|
||||
}
|
||||
|
||||
.pma_quick_warp .drop_list a.favorite_table_anchor {
|
||||
clear: left;
|
||||
float: left;
|
||||
padding: .1em .3em 0
|
||||
}
|
||||
|
||||
li.warp_link {
|
||||
padding: 7px 0 0 0!important
|
||||
}
|
||||
|
||||
/* Table Sticky */
|
||||
|
||||
table.sticky_columns {
|
||||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2)
|
||||
}
|
25
#pma/themes/fallen/css/fallen/navigation/logos.css.php
Normal file
25
#pma/themes/fallen/css/fallen/navigation/logos.css.php
Normal file
@ -0,0 +1,25 @@
|
||||
#pmalogo a img {
|
||||
margin-top: -8px
|
||||
}
|
||||
|
||||
#pma_navigation #imgpmalogo {
|
||||
display: none
|
||||
}
|
||||
|
||||
#pma_navigation #pmalogo:after {
|
||||
content: "<?php echo $brand ?>";
|
||||
font-size: 30px;
|
||||
font-weight: 300;
|
||||
margin-left: 5px
|
||||
}
|
||||
|
||||
#pma_navigation #pmalogo {
|
||||
margin: 0;
|
||||
padding: 12px;
|
||||
background: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
|
||||
font-size: 14px;
|
||||
cursor: default;
|
||||
height: 15px;
|
||||
line-height: 100%
|
||||
}
|
54
#pma/themes/fallen/css/fallen/navigation/nav.css.php
Normal file
54
#pma/themes/fallen/css/fallen/navigation/nav.css.php
Normal file
@ -0,0 +1,54 @@
|
||||
#pma_navigation {
|
||||
width: <?php echo $GLOBALS['cfg']['NaviWidth'] ?>px;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
background: <?php echo $GLOBALS['cfg']['NaviColor'] ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['MainColor'] ?>;
|
||||
z-index: 800
|
||||
}
|
||||
|
||||
#pma_navigation input[type=text] {
|
||||
background-color: <?php echo $GLOBALS['cfg']['MainBackground'] ?>;
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamily'] ?>;
|
||||
padding: 5px 1px
|
||||
}
|
||||
|
||||
#pma_navigation a img {
|
||||
border: 0
|
||||
}
|
||||
|
||||
#pma_navigation a:link, #pma_navigation a:visited, #pma_navigation a:active {
|
||||
text-decoration: none;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviPointerColor'] ?>
|
||||
}
|
||||
|
||||
#pma_navigation select#select_server, #pma_navigation select#lightm_db {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||
this breaks design */
|
||||
#pma_navigation button {
|
||||
display: inline
|
||||
}
|
||||
|
||||
#pma_navigation_content {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0
|
||||
}
|
||||
|
||||
#pma_navigation ul {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
#pma_navigation form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline
|
||||
}
|
47
#pma/themes/fallen/css/gis.css.php
Normal file
47
#pma/themes/fallen/css/gis.css.php
Normal file
@ -0,0 +1,47 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* GIS data editor styles
|
||||
*/
|
||||
|
||||
a.close_gis_editor {
|
||||
float: right
|
||||
}
|
||||
|
||||
#gis_editor {
|
||||
display: none;
|
||||
position: fixed;
|
||||
_position: absolute;
|
||||
/* hack for IE */
|
||||
z-index: 1001;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden
|
||||
}
|
||||
|
||||
#gis_data {
|
||||
min-height: 230px
|
||||
}
|
||||
|
||||
#gis_data_textarea {
|
||||
height: 6em
|
||||
}
|
||||
|
||||
#gis_data_editor {
|
||||
background: #D0DCE0;
|
||||
padding: 15px;
|
||||
min-height: 500px
|
||||
}
|
||||
|
||||
#gis_data_editor .choice {
|
||||
display: none
|
||||
}
|
||||
|
||||
#gis_data_editor input[type="text"] {
|
||||
width: 75px
|
||||
}
|
267
#pma/themes/fallen/css/jqplot.css.php
Normal file
267
#pma/themes/fallen/css/jqplot.css.php
Normal file
@ -0,0 +1,267 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
/* jqPlot */
|
||||
|
||||
/* rules for the plot target div. These will be cascaded down to all plot elements according to css rules */
|
||||
.jqplot-target {
|
||||
position: relative;
|
||||
color: #222222;
|
||||
font-family: "Roboto", "Segoe UI";
|
||||
font-size: 1em;
|
||||
/* height: 300px;
|
||||
width: 590px;*/
|
||||
}
|
||||
|
||||
/* rules applied to all axes */
|
||||
.jqplot-axis {
|
||||
font-size: 0.75em
|
||||
}
|
||||
|
||||
.jqplot-xaxis {
|
||||
margin-top: 10px
|
||||
}
|
||||
|
||||
.jqplot-x2axis {
|
||||
margin-bottom: 10px
|
||||
}
|
||||
|
||||
.jqplot-yaxis {
|
||||
margin-right: 10px
|
||||
}
|
||||
|
||||
.jqplot-y2axis, .jqplot-y3axis, .jqplot-y4axis, .jqplot-y5axis, .jqplot-y6axis, .jqplot-y7axis, .jqplot-y8axis, .jqplot-y9axis, .jqplot-yMidAxis {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px
|
||||
}
|
||||
|
||||
/* rules applied to all axis tick divs */
|
||||
.jqplot-axis-tick, .jqplot-xaxis-tick, .jqplot-yaxis-tick, .jqplot-x2axis-tick, .jqplot-y2axis-tick, .jqplot-y3axis-tick, .jqplot-y4axis-tick, .jqplot-y5axis-tick, .jqplot-y6axis-tick, .jqplot-y7axis-tick, .jqplot-y8axis-tick, .jqplot-y9axis-tick, .jqplot-yMidAxis-tick {
|
||||
position: absolute;
|
||||
white-space: pre
|
||||
}
|
||||
|
||||
.jqplot-xaxis-tick {
|
||||
top: 0;
|
||||
/* initial position untill tick is drawn in proper place */
|
||||
left: 15px;
|
||||
/* padding-top: 10px;*/
|
||||
vertical-align: top
|
||||
}
|
||||
|
||||
.jqplot-x2axis-tick {
|
||||
bottom: 0;
|
||||
/* initial position untill tick is drawn in proper place */
|
||||
left: 15px;
|
||||
/* padding-bottom: 10px; */
|
||||
vertical-align: bottom
|
||||
}
|
||||
|
||||
.jqplot-yaxis-tick {
|
||||
right: 0;
|
||||
/* initial position untill tick is drawn in proper place */
|
||||
top: 15px;
|
||||
/* padding-right: 10px; */
|
||||
text-align: right
|
||||
}
|
||||
|
||||
.jqplot-yaxis-tick.jqplot-breakTick {
|
||||
right: -20px;
|
||||
margin-right: 0;
|
||||
padding: 1px 5px 1px;
|
||||
/* background-color: white;*/
|
||||
z-index: 2;
|
||||
font-size: 1.5em
|
||||
}
|
||||
|
||||
.jqplot-y2axis-tick, .jqplot-y3axis-tick, .jqplot-y4axis-tick, .jqplot-y5axis-tick, .jqplot-y6axis-tick, .jqplot-y7axis-tick, .jqplot-y8axis-tick, .jqplot-y9axis-tick {
|
||||
left: 0;
|
||||
/* initial position untill tick is drawn in proper place */
|
||||
top: 15px;
|
||||
/* padding-left: 10px; */
|
||||
/* padding-right: 15px; */
|
||||
text-align: left
|
||||
}
|
||||
|
||||
.jqplot-yMidAxis-tick {
|
||||
text-align: center;
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
.jqplot-xaxis-label {
|
||||
margin-top: 10px;
|
||||
font-size: 11pt;
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.jqplot-x2axis-label {
|
||||
margin-bottom: 10px;
|
||||
font-size: 11pt;
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.jqplot-yaxis-label {
|
||||
margin-right: 10px;
|
||||
/* text-align: center;*/
|
||||
font-size: 11pt;
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.jqplot-yMidAxis-label {
|
||||
font-size: 11pt;
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.jqplot-y2axis-label, .jqplot-y3axis-label, .jqplot-y4axis-label, .jqplot-y5axis-label, .jqplot-y6axis-label, .jqplot-y7axis-label, .jqplot-y8axis-label, .jqplot-y9axis-label {
|
||||
/* text-align: center; */
|
||||
font-size: 11pt;
|
||||
margin-left: 10px;
|
||||
position: absolute
|
||||
}
|
||||
|
||||
.jqplot-meterGauge-tick {
|
||||
font-size: 0.75em;
|
||||
color: #999
|
||||
}
|
||||
|
||||
.jqplot-meterGauge-label {
|
||||
font-size: 1em;
|
||||
color: #999
|
||||
}
|
||||
|
||||
table.jqplot-table-legend {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 12px;
|
||||
margin-left: 12px;
|
||||
margin-right: 12px
|
||||
}
|
||||
|
||||
table.jqplot-table-legend, table.jqplot-cursor-legend {
|
||||
background-color: rgba(255, 255, 255, 0.6);
|
||||
border: 1px solid #ccc;
|
||||
position: absolute;
|
||||
font-size: 0.75em
|
||||
}
|
||||
|
||||
td.jqplot-table-legend {
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
/*
|
||||
These rules could be used instead of assigning
|
||||
element styles and relying on js object properties.
|
||||
*/
|
||||
|
||||
/*
|
||||
td.jqplot-table-legend-swatch {
|
||||
padding-top: 0.5em;
|
||||
text-align: center
|
||||
}
|
||||
|
||||
tr.jqplot-table-legend:first td.jqplot-table-legend-swatch {
|
||||
padding-top: 0
|
||||
}
|
||||
*/
|
||||
|
||||
td.jqplot-seriesToggle:hover, td.jqplot-seriesToggle:active {
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
.jqplot-table-legend .jqplot-series-hidden {
|
||||
text-decoration: line-through
|
||||
}
|
||||
|
||||
div.jqplot-table-legend-swatch-outline {
|
||||
border: 1px solid #ccc;
|
||||
padding: 1px
|
||||
}
|
||||
|
||||
div.jqplot-table-legend-swatch {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-top-width: 5px;
|
||||
border-bottom-width: 5px;
|
||||
border-left-width: 6px;
|
||||
border-right-width: 6px;
|
||||
border-top-style: solid;
|
||||
border-bottom-style: solid;
|
||||
border-left-style: solid;
|
||||
border-right-style: solid
|
||||
}
|
||||
|
||||
.jqplot-title {
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding-bottom: 0.5em;
|
||||
font-size: 1.2em
|
||||
}
|
||||
|
||||
table.jqplot-cursor-tooltip {
|
||||
border: 1px solid #ccc;
|
||||
font-size: 0.75em
|
||||
}
|
||||
|
||||
.jqplot-cursor-tooltip {
|
||||
border: 1px solid #ccc;
|
||||
font-size: 0.75em;
|
||||
white-space: nowrap;
|
||||
background: rgba(208, 208, 208, 0.5);
|
||||
padding: 1px
|
||||
}
|
||||
|
||||
.jqplot-highlighter-tooltip, .jqplot-canvasOverlay-tooltip {
|
||||
border: 1px solid #ccc;
|
||||
font-size: 0.75em;
|
||||
white-space: nowrap;
|
||||
background: rgba(208, 208, 208, 0.5);
|
||||
padding: 1px
|
||||
}
|
||||
|
||||
.jqplot-point-label {
|
||||
font-size: 0.75em;
|
||||
z-index: 2
|
||||
}
|
||||
|
||||
td.jqplot-cursor-legend-swatch {
|
||||
vertical-align: middle;
|
||||
text-align: center
|
||||
}
|
||||
|
||||
div.jqplot-cursor-legend-swatch {
|
||||
width: 1.2em;
|
||||
height: 0.7em
|
||||
}
|
||||
|
||||
.jqplot-error {
|
||||
/* Styles added to the plot target container when there is an error go here. */
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.jqplot-error-message {
|
||||
/* Styling of the custom error message div goes here. */
|
||||
position: relative;
|
||||
top: 46%;
|
||||
display: inline-block
|
||||
}
|
||||
|
||||
div.jqplot-bubble-label {
|
||||
font-size: 0.8em;
|
||||
/* background: rgba(90%, 90%, 90%, 0.15); */
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
color: rgb(20%, 20%, 20%)
|
||||
}
|
||||
|
||||
div.jqplot-bubble-label.jqplot-bubble-label-highlight {
|
||||
background: rgba(90%, 90%, 90%, 0.7)
|
||||
}
|
||||
|
||||
div.jqplot-noData-container {
|
||||
text-align: center;
|
||||
background-color: rgba(96%, 96%, 96%, 0.3)
|
||||
}
|
27
#pma/themes/fallen/css/navigation.css.php
Normal file
27
#pma/themes/fallen/css/navigation.css.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
/* Navigation
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/navigation/nav.css.php' ?>
|
||||
|
||||
/* Logos
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/navigation/logos.css.php' ?>
|
||||
|
||||
/* Elements
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/navigation/elements.css.php' ?>
|
||||
|
||||
/* Globals
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/navigation/globals.css.php' ?>
|
468
#pma/themes/fallen/css/pmd.css.php
Normal file
468
#pma/themes/fallen/css/pmd.css.php
Normal file
@ -0,0 +1,468 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
/* Designer */
|
||||
|
||||
.input_tab {
|
||||
background-color: #efefef;
|
||||
color: #000;
|
||||
border: 1px solid #ccc
|
||||
}
|
||||
|
||||
.content_fullscreen {
|
||||
position: relative;
|
||||
overflow: auto
|
||||
}
|
||||
|
||||
#canvas_outer {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: block
|
||||
}
|
||||
|
||||
#canvas {
|
||||
background-color: #fff;
|
||||
color: #000
|
||||
}
|
||||
|
||||
canvas.pmd {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
canvas.pmd * {
|
||||
behavior: url(#default#VML)
|
||||
}
|
||||
|
||||
.pmd_tab {
|
||||
color: #333;
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #ccc;
|
||||
z-index: 1;
|
||||
-moz-user-select: none
|
||||
}
|
||||
|
||||
.pmd_tab .header {
|
||||
background-color: #f6f6f6
|
||||
}
|
||||
|
||||
.tab_zag {
|
||||
text-align: center;
|
||||
cursor: move;
|
||||
padding: 1px;
|
||||
font-weight: bold;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
.tab_zag_2 {
|
||||
text-align: center;
|
||||
cursor: move;
|
||||
padding: 1px;
|
||||
font-weight: bold;
|
||||
background-color: #f6f6f6;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
.tab_field {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
cursor: default
|
||||
}
|
||||
|
||||
.tab_field_2 {
|
||||
background-color: #CCFFCC;
|
||||
color: #000;
|
||||
background-repeat: repeat-x;
|
||||
cursor: default
|
||||
}
|
||||
|
||||
.tab_field_3 {
|
||||
background-color: #FFE6E6;
|
||||
/*#DDEEFF*/
|
||||
color: #000;
|
||||
cursor: default
|
||||
}
|
||||
|
||||
#pmd_hint {
|
||||
white-space: nowrap;
|
||||
position: absolute;
|
||||
background-color: #99ff99;
|
||||
color: #000;
|
||||
z-index: 3;
|
||||
border: #00CC66 solid 1px;
|
||||
display: none
|
||||
}
|
||||
|
||||
.scroll_tab {
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
height: 500px
|
||||
}
|
||||
|
||||
.pmd_Tabs {
|
||||
cursor: default;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
text-decoration: none;
|
||||
text-indent: 3px;
|
||||
margin-left: 2px;
|
||||
text-align: left;
|
||||
border: #ccc solid 0
|
||||
}
|
||||
|
||||
.pmd_Tabs2 {
|
||||
cursor: default;
|
||||
color: #666;
|
||||
background: #eee;
|
||||
text-indent: 3px;
|
||||
white-space: nowrap;
|
||||
text-decoration: none;
|
||||
border: #eee solid 0;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
.owner {
|
||||
font-weight: normal;
|
||||
color: #888
|
||||
}
|
||||
|
||||
.option_tab {
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
width: 5px
|
||||
}
|
||||
|
||||
.select_all {
|
||||
vertical-align: top;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
cursor: default;
|
||||
width: 1px;
|
||||
color: #000;
|
||||
background-repeat: repeat-x
|
||||
}
|
||||
|
||||
.small_tab {
|
||||
vertical-align: top;
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
cursor: default;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
width: 1px;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.small_tab2 {
|
||||
vertical-align: top;
|
||||
color: #fff;
|
||||
background-color: #ff9966;
|
||||
cursor: default;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
width: 1px;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.small_tab_pref {
|
||||
background-color: #f6f6f6;
|
||||
text-align: center;
|
||||
width: 1px
|
||||
}
|
||||
|
||||
.small_tab_pref2 {
|
||||
vertical-align: top;
|
||||
color: #fff;
|
||||
background-color: #ff9966;
|
||||
cursor: default;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
width: 1px;
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.L_butt2_1 {
|
||||
padding-left: 5px;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
cursor: default
|
||||
}
|
||||
|
||||
.L_butt2_2 {
|
||||
padding-left: 5px;
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
vertical-align: middle;
|
||||
cursor: default
|
||||
}
|
||||
/* ---------------------------------------------------------------------------*/
|
||||
|
||||
.bor {
|
||||
width: 10px;
|
||||
height: 10px
|
||||
}
|
||||
|
||||
#osn_tab {
|
||||
position: absolute;
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.pmd_header {
|
||||
background-color: #f6f6f6;
|
||||
border-top: 20px solid #fff;
|
||||
color: #333;
|
||||
display: block;
|
||||
height: 28px;
|
||||
margin-left: -20px;
|
||||
margin-top: -60px;
|
||||
padding: 5px 20px;
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
z-index: 101
|
||||
}
|
||||
|
||||
.pmd_header a {
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 3px 1px 4px;
|
||||
height: 20px
|
||||
}
|
||||
|
||||
.pmd_header .M_bord {
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
height: 20px;
|
||||
width: 2px
|
||||
}
|
||||
|
||||
.pmd_header a.first {
|
||||
margin-right: 1em
|
||||
}
|
||||
|
||||
.pmd_header a.last {
|
||||
margin-left: 1em
|
||||
}
|
||||
|
||||
a.M_butt_Selected_down_IE, a.M_butt_Selected_down {
|
||||
background-color: #eee;
|
||||
color: #000
|
||||
}
|
||||
|
||||
a.M_butt_Selected_down_IE:hover, a.M_butt_Selected_down:hover, a.M_butt:hover {
|
||||
background-color: #eee;
|
||||
color: #000
|
||||
}
|
||||
|
||||
#layer_menu {
|
||||
z-index: 98;
|
||||
position: relative;
|
||||
float: right;
|
||||
;
|
||||
background-color: #f6f6f6;
|
||||
border: #ccc solid 1px;
|
||||
border-top: 0;
|
||||
margin-right: -20px
|
||||
}
|
||||
|
||||
.content_fullscreen #layer_menu {
|
||||
margin-right: 0
|
||||
}
|
||||
|
||||
#layer_menu.left {
|
||||
float: left;
|
||||
margin-left: -20px
|
||||
}
|
||||
|
||||
.content_fullscreen #layer_menu.left {
|
||||
margin-left: 0
|
||||
}
|
||||
|
||||
#layer_upd_relation {
|
||||
position: absolute;
|
||||
left: 637px;
|
||||
top: 224px;
|
||||
z-index: 100
|
||||
}
|
||||
|
||||
#layer_new_relation {
|
||||
position: absolute;
|
||||
left: 636px;
|
||||
top: 85px;
|
||||
z-index: 100;
|
||||
width: 153px
|
||||
}
|
||||
|
||||
#pmd_optionse {
|
||||
position: absolute;
|
||||
left: 636px;
|
||||
top: 85px;
|
||||
z-index: 100;
|
||||
width: 153px
|
||||
}
|
||||
|
||||
#layer_menu_sizer {
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/resize.png') ?>);
|
||||
cursor: ew-resize
|
||||
}
|
||||
|
||||
#layer_menu_sizer .icon {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
.panel {
|
||||
position: fixed;
|
||||
top: 90px;
|
||||
right: 0;
|
||||
width: 350px;
|
||||
max-height: 500px;
|
||||
display: none;
|
||||
overflow: auto;
|
||||
padding-top: 34px;
|
||||
z-index: 102
|
||||
}
|
||||
|
||||
a.trigger {
|
||||
position: fixed;
|
||||
text-decoration: none;
|
||||
top: 90px;
|
||||
right: 0;
|
||||
color: #fff;
|
||||
padding: 10px 40px 10px 15px;
|
||||
background: #333 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/plus.png') ?>) 85% 55% no-repeat;
|
||||
border: 1px solid #444;
|
||||
display: block;
|
||||
z-index: 102
|
||||
}
|
||||
|
||||
a.trigger:hover {
|
||||
color: #080808;
|
||||
background: #fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/plus.png') ?>) 85% 55% no-repeat;
|
||||
border: 1px solid #999
|
||||
}
|
||||
|
||||
a.active.trigger {
|
||||
background: #222 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/minus.png') ?>) 85% 55% no-repeat;
|
||||
z-index: 999
|
||||
}
|
||||
|
||||
a.active.trigger:hover {
|
||||
background: #fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/minus.png') ?>) 85% 55% no-repeat
|
||||
}
|
||||
|
||||
.toggle_container .block {
|
||||
background-color: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground'] ?>;
|
||||
border-top: 1px solid #999
|
||||
}
|
||||
|
||||
.toggle_container .block img.ic_s_info {
|
||||
-webkit-filter: invert(70%);
|
||||
filter: invert(70%)
|
||||
}
|
||||
|
||||
.history_table {
|
||||
opacity: 1.0;
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
.history_table2 {
|
||||
opacity: 0.7
|
||||
}
|
||||
|
||||
#ab {
|
||||
min-width: 300px
|
||||
}
|
||||
|
||||
#ab .ui-accordion-content {
|
||||
padding: 0
|
||||
}
|
||||
|
||||
#box {
|
||||
display: none
|
||||
}
|
||||
|
||||
#foreignkeychk {
|
||||
text-align: left;
|
||||
position: absolute;
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
.side-menu {
|
||||
float: left;
|
||||
position: fixed;
|
||||
width: auto;
|
||||
height: auto;
|
||||
background: #efefef;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
|
||||
overflow: hidden;
|
||||
z-index: 50;
|
||||
padding: 2px;
|
||||
margin-top: 0;
|
||||
margin-left: -20px
|
||||
}
|
||||
|
||||
.content_fullscreen .side-menu {
|
||||
margin-left: 0
|
||||
}
|
||||
|
||||
.side-menu.right {
|
||||
float: right;
|
||||
right: 0
|
||||
}
|
||||
|
||||
.content_fullscreen .side-menu.right {
|
||||
margin-right: 0
|
||||
}
|
||||
|
||||
.side-menu .hide {
|
||||
display: none
|
||||
}
|
||||
|
||||
.side-menu a {
|
||||
display: block;
|
||||
float: none;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.side-menu img, .side-menu span, .side-menu .text {
|
||||
float: left;
|
||||
padding-left: 2px
|
||||
}
|
||||
|
||||
#name-panel {
|
||||
border-bottom: 1px solid #ccc;
|
||||
text-align: center;
|
||||
background: #efefef;
|
||||
font-size: 1.2em;
|
||||
padding: 10px;
|
||||
font-weight: bold;
|
||||
margin-top: -20px;
|
||||
margin-left: -20px;
|
||||
margin-right: -20px
|
||||
}
|
||||
|
||||
.content_fullscreen #name-panel {
|
||||
margin-top: 0;
|
||||
margin-left: 0;
|
||||
margin-right: 0
|
||||
}
|
||||
|
||||
#container-form {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
left: 0
|
||||
}
|
215
#pma/themes/fallen/css/printview.css
Normal file
215
#pma/themes/fallen/css/printview.css
Normal file
@ -0,0 +1,215 @@
|
||||
/* 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%
|
||||
}
|
||||
|
||||
@media print {
|
||||
#back_button_print_view, #print_button_print_view {
|
||||
display: none
|
||||
}
|
||||
}
|
||||
|
||||
tton_print_view, #print_button_print_view {
|
||||
display: none
|
||||
}
|
48
#pma/themes/fallen/css/resizable-menu.css.php
Normal file
48
#pma/themes/fallen/css/resizable-menu.css.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
ul.resizable-menu a, ul.resizable-menu span {
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
ul.resizable-menu .submenu {
|
||||
display: none;
|
||||
position: relative
|
||||
}
|
||||
|
||||
ul.resizable-menu .shown {
|
||||
display: inline-block
|
||||
}
|
||||
|
||||
ul.resizable-menu ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
list-style-type: none;
|
||||
display: none;
|
||||
border: 1px #ddd solid;
|
||||
z-index: 2;
|
||||
right: 0;
|
||||
padding-bottom: 15px
|
||||
}
|
||||
|
||||
ul.resizable-menu li:hover {
|
||||
|
||||
}
|
||||
|
||||
ul.resizable-menu li:hover ul, ul.resizable-menu .submenuhover ul {
|
||||
display: block;
|
||||
background: #fff
|
||||
}
|
||||
|
||||
ul.resizable-menu ul li {
|
||||
width: 100%
|
||||
}
|
34
#pma/themes/fallen/css/rte.css.php
Normal file
34
#pma/themes/fallen/css/rte.css.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
# Unplanned execution path
|
||||
|
||||
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
|
||||
exit();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
.rte_table {
|
||||
table-layout: fixed
|
||||
}
|
||||
|
||||
.rte_table td {
|
||||
vertical-align: middle;
|
||||
padding: 0.2em
|
||||
}
|
||||
|
||||
.rte_table input, .rte_table select, .rte_table textarea {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box
|
||||
}
|
||||
|
||||
.rte_table input[type=checkbox], .rte_table input[type=radio] {
|
||||
width: auto;
|
||||
margin-right: 6px
|
||||
}
|
||||
|
||||
.rte_table .routine_params_table {
|
||||
width: 100%
|
||||
}
|
Reference in New Issue
Block a user