Merge remote-tracking branch 'origin/master'

This commit is contained in:
Isaac Bennetch
2018-04-18 22:32:09 -04:00
84 changed files with 366 additions and 1077 deletions
+1
View File
@@ -14,3 +14,4 @@ sudo: false
script:
- find . -name '*.php' -print0 | xargs -0 -r -n1 php -l
- ./lint-theme.sh --all
+5 -5
View File
@@ -2599,7 +2599,7 @@ canvas.pmd * {
cursor: default;
}
.tab_field_2 {
.tab_field:hover, .tab_field_3:hover {
background-color: #CCFFCC;
color: #000000;
background-repeat: repeat-x;
@@ -2644,7 +2644,7 @@ canvas.pmd * {
border: #CCCCCC solid 1px;
}
.pmd_Tabs2 {
.pmd_Tabs:hover {
cursor: default;
color: #0055bb;
background: #FFEE99;
@@ -2692,7 +2692,7 @@ canvas.pmd * {
text-decoration: none;
}
.small_tab2 {
.small_tab:hover {
vertical-align: top;
color: #FFFFFF;
background-color: #FF9966;
@@ -2712,7 +2712,7 @@ canvas.pmd * {
width: 1px;
}
.small_tab_pref2 {
.small_tab_pref:hover {
vertical-align: top;
color: #FFFFFF;
background-color: #FF9966;
@@ -2742,7 +2742,7 @@ canvas.pmd * {
cursor: default;
}
.L_butt2_2 {
.L_butt2_1:hover {
padding: 0;
border: #0099CC solid 1px;
background: #FFEE99;
+9 -3
View File
@@ -17,9 +17,16 @@ if [ $# -eq 0 ] ; then
exit 1
fi
cat <<END
THEME="${1%/}"
Please ensure that you have updated data/themes.py in the website code before running this script.
./lint-theme.sh $THEME
if [ ! -f $THEME/theme.json ] ; then
echo
echo "Please ensure that you have updated data/themes.py in the website code before running this script."
fi
cat <<END
Continue (y/n)?
END
@@ -29,7 +36,6 @@ if [ "$do_release" != 'y' ]; then
exit 100
fi
THEME="${1%/}"
if [ ! -d "$THEME" ] ; then
echo "Directory $THEME does not exist!"
exit 2
+1 -1
View File
@@ -1,6 +1,6 @@
Fallen (phpMyAdmin Theme)
Copyright (c) 2016 Frans Allen (https://www.fransallen.com)
Copyright (c) 2017 Frans Allen (https://www.fransallen.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
+20 -8
View File
@@ -1,24 +1,36 @@
>> NOTE: This repository is no longer updated. To download **Fallen**, See [phpMyAdmin Themes directory](https://www.phpmyadmin.net/themes/).
# Fallen (phpMyAdmin Theme)
The First amazing phpMyAdmin 4 theme in the world.
A Beautiful phpMyAdmin theme. Designed for you.
<a href="https://www.marsble.com/d/2" target="_blank"><img src="https://www.marsble.com/images/buttons/btn_discuss.png" alt="Discuss on Marsble"></a>
## Usage
* Download Fallen PMA Theme.
* Unzip **fallen-pma-master**.
* Rename **fallen-pma-master** to **fallen**.
* Download Fallen.
* Unzip **fallen-master**.
* Rename **fallen-master** to **fallen**.
* Move to your phpMyAdmin themes directory.
* Activate "Fallen" from phpMyAdmin dashboard.
* Done.
## Version
[Fallen 0.3](https://files.phpmyadmin.net/themes/fallen/0.3/fallen-0.3.zip) for phpMyAdmin **4.6**
[Fallen 0.4](https://files.phpmyadmin.net/themes/fallen/0.3/fallen-0.4.zip) for phpMyAdmin **4.7**
> See all version in [phpMyAdmin Themes directory](https://www.phpmyadmin.net/themes/).
## Screenshot
![Fallen login](https://storage.googleapis.com/fransallencom.appspot.com/images/fallen-pma-3.png)
![Fallen login](screen-3.png)
![Fallen home](https://storage.googleapis.com/fransallencom.appspot.com/images/fallen-pma.png)
![Fallen home](screen.png)
![Fallen DB](https://storage.googleapis.com/fransallencom.appspot.com/images/fallen-pma-2.png)
![Fallen DB](screen-2.png)
## LICENSE
Licensed under GPL license. Please see the license file: https://github.com/fransallen/fallen-pma/LICENSE
Licensed under GPL license. Please see the license file: https://github.com/fransallen/fallen/LICENSE
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
} ?>
/* ----------------------------------------------------- */
+30 -34
View File
@@ -1,21 +1,17 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
}
# Set source folder for stylesheet
// Set source folder for stylesheet
define('CSS_PATH', 'fallen');
# Set the Brand name, will be set for logo text. Display in menubar.
// Set the Brand name, will be set for logo text. Display in menubar.
$brand = 'phpMyAdmin';
# Do not change!!!
# Or the theme will be error!
// Do not edit!!!
// Or the theme will be broken!
$name = 'Fallen';
$version = '0.4';
$slug = 'fallen';
@@ -31,111 +27,111 @@ $font_family_icon = 'Fallen' ?>
/* Fonts
---------------------------------------------- */
<?php include CSS_PATH . '/bundle-fonts.min.css' ?>
<?php require CSS_PATH . '/bundle-fonts.min.css' ?>
/* Reset
---------------------------------------------- */
<?php include CSS_PATH . '/common/reset.css.php' ?>
<?php require CSS_PATH . '/common/reset.css.php' ?>
/* General
---------------------------------------------- */
<?php include CSS_PATH . '/common/general.css.php' ?>
<?php require CSS_PATH . '/common/general.css.php' ?>
/* Login
---------------------------------------------- */
<?php include CSS_PATH . '/common/login.css.php' ?>
<?php require CSS_PATH . '/common/login.css.php' ?>
/* Icons
---------------------------------------------- */
<?php include CSS_PATH . '/common/icons.css.php' ?>
<?php require CSS_PATH . '/common/icons.css.php' ?>
/* Typography
---------------------------------------------- */
<?php include CSS_PATH . '/common/typography.css.php' ?>
<?php require CSS_PATH . '/common/typography.css.php' ?>
/* Heading
---------------------------------------------- */
<?php include CSS_PATH . '/common/heading.css.php' ?>
<?php require CSS_PATH . '/common/heading.css.php' ?>
/* Globals
---------------------------------------------- */
<?php include CSS_PATH . '/common/globals.css.php' ?>
<?php require CSS_PATH . '/common/globals.css.php' ?>
/* Contents
---------------------------------------------- */
<?php include CSS_PATH . '/common/content.css.php' ?>
<?php require CSS_PATH . '/common/content.css.php' ?>
/* Data
---------------------------------------------- */
<?php include CSS_PATH . '/common/data.css.php' ?>
<?php require CSS_PATH . '/common/data.css.php' ?>
/* Tables &amp; Columns
---------------------------------------------- */
<?php include CSS_PATH . '/common/tables.css.php' ?>
<?php require CSS_PATH . '/common/tables.css.php' ?>
/* Forms, Input &amp; Textarea
---------------------------------------------- */
<?php include CSS_PATH . '/common/forms.css.php' ?>
<?php require CSS_PATH . '/common/forms.css.php' ?>
/* Buttons
---------------------------------------------- */
<?php include CSS_PATH . '/common/buttons.css.php' ?>
<?php require CSS_PATH . '/common/buttons.css.php' ?>
/* Select
---------------------------------------------- */
<?php include CSS_PATH . '/common/select.css.php' ?>
<?php require CSS_PATH . '/common/select.css.php' ?>
/* LTR
---------------------------------------------- */
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) {
include CSS_PATH . '/common/ltr.css.php';
<?php if ($GLOBALS['text_dir'] === 'ltr') {
include CSS_PATH . '/common/ltr.css.php';
} ?>
/* Alert
---------------------------------------------- */
<?php include CSS_PATH . '/common/alert.css.php' ?>
<?php require CSS_PATH . '/common/alert.css.php' ?>
/* Images
---------------------------------------------- */
<?php include CSS_PATH . '/common/images.css.php' ?>
<?php require CSS_PATH . '/common/images.css.php' ?>
/* Layouts
---------------------------------------------- */
<?php include CSS_PATH . '/common/layouts.css.php' ?>
<?php require CSS_PATH . '/common/layouts.css.php' ?>
/* Elements
---------------------------------------------- */
<?php include CSS_PATH . '/common/elements.css.php' ?>
<?php require CSS_PATH . '/common/elements.css.php' ?>
/* Navigations
---------------------------------------------- */
<?php include CSS_PATH . '/common/nav.css.php' ?>
<?php require CSS_PATH . '/common/nav.css.php' ?>
/* Responsive
---------------------------------------------- */
<?php include CSS_PATH . '/common/responsive.css.php' ?>
<?php require CSS_PATH . '/common/responsive.css.php' ?>
/* Miscellaneous
---------------------------------------------- */
<?php include CSS_PATH . '/common/misc.css.php' ?>
<?php require CSS_PATH . '/common/misc.css.php' ?>
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
} ?>
/* ----------------------------------------------------- */
+26 -26
View File
@@ -1,43 +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-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-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-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-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-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
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 -1
View File
@@ -1 +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}
@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:400;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}
+6 -6
View File
@@ -30,13 +30,13 @@ div.success, div.notice, div.error, div.footnotes {
margin: 20px 0 20px;
border: 1px solid;
background-repeat: no-repeat;
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
background-position: 10px 50%;
padding: 10px
<?php } else { ?>
<?php } else { ?>
background-position: 99% 50%;
padding: 10px 35px 10px 10px
<?php } ?>
<?php } ?>
}
.ajax_notification .error {
@@ -146,13 +146,13 @@ p.notice {
background-repeat: no-repeat;
background: #555;
color: #d4fb6a
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
background-position: 10px 50%;
padding: 10px 10px 10px 25px
<?php } else { ?>
<?php } else { ?>
background-position: 99% 50%;
padding: 25px 10px 10px 10px
<?php } ?>
<?php } ?>
}
p.notice a {
+4 -4
View File
@@ -155,7 +155,7 @@ form.clock {
margin-left: -1em;
font-family: <?php echo $GLOBALS['cfg']['FontFamily'] ?>;
color: <?php echo $GLOBALS['cfg']['ButtonColor'] ?>;
background: <?php echo $GLOBALS['cfg']['NaviBackground'] ?>;
background: linear-gradient(270deg, #0fe4c8 0, <?php echo $GLOBALS['cfg']['NaviBackground'] ?> 100%);
font-height: 1.1em;
height: 15px
}
@@ -271,7 +271,7 @@ form.clock {
.linkElem:hover {
text-decoration: underline;
color: #235a81;
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor'] ?>;
cursor: pointer
}
@@ -895,9 +895,9 @@ div.upload_progress_bar_inner {
margin: 1px;
overflow: hidden;
position: relative;
<?php if ( $GLOBALS['cfg']['BrowseMarkerEnable'] ) { ?>
<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor'] ?>
<?php } ?>
<?php } ?>
}
div.upload_progress_bar_outer div.percentage {
+2 -1
View File
@@ -3,7 +3,8 @@
top: 8px;
right: 0;
z-index: 99;
padding: .25em 10px 0 0
padding: .25em 10px 0 0;
filter: invert(70%)
}
#goto_pagetop, #lock_page_icon, #page_settings_icon {
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
} ?>
/* ----------------------------------------------------- */
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
} ?>
/* ----------------------------------------------------- */
+7 -8
View File
@@ -1,27 +1,26 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
} ?>
/* ----------------------------------------------------- */
/* Navigation
---------------------------------------------- */
<?php include CSS_PATH . '/navigation/nav.css.php' ?>
<?php require CSS_PATH . '/navigation/nav.css.php' ?>
/* Logos
---------------------------------------------- */
<?php include CSS_PATH . '/navigation/logos.css.php' ?>
<?php require CSS_PATH . '/navigation/logos.css.php' ?>
/* Elements
---------------------------------------------- */
<?php include CSS_PATH . '/navigation/elements.css.php' ?>
<?php require CSS_PATH . '/navigation/elements.css.php' ?>
/* Globals
---------------------------------------------- */
<?php include CSS_PATH . '/navigation/globals.css.php' ?>
<?php require CSS_PATH . '/navigation/globals.css.php' ?>
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
} ?>
/* ----------------------------------------------------- */
+86 -65
View File
@@ -1,89 +1,99 @@
/* For removing element from Print View */
.print_ignore {
display: none
display: none
}
.nowrap {
white-space: nowrap
white-space: nowrap
}
.hide {
display: none
display: none
}
/* Standard CSS */
body, table, th, td {
color: #000;
background-color: #fff;
font-size: 12px
body,
table,
th,
td {
color: #000;
background-color: #fff;
font-size: 12px
}
/* To remove link text decoration */
a:link {
color: #000;
text-decoration: none
color: #000;
text-decoration: none
}
/* To remove any image borders */
img {
border: 0
border: 0
}
/* Table specific */
table, th, td {
border: .1em solid #000;
background-color: #fff
table,
th,
td {
border: .1em solid #000;
background-color: #fff
}
table {
border-collapse: collapse;
border-spacing: 0.2em
border-collapse: collapse;
border-spacing: 0.2em
}
thead {
border-collapse: collapse;
border-spacing: 0.2em;
border: .1em solid #000;
font-weight: 900
border-collapse: collapse;
border-spacing: 0.2em;
border: .1em solid #000;
font-weight: 900
}
th, td {
padding: 0.2em
th,
td {
padding: 0.2em
}
thead th {
font-weight: bold;
background-color: #e5e5e5;
border: .1em solid #000
font-weight: bold;
background-color: #e5e5e5;
border: .1em solid #000
}
th.vtop, td.vtop {
vertical-align: top
th.vtop,
td.vtop {
vertical-align: top
}
th.vbottom, td.vbottom {
vertical-align: bottom
th.vbottom,
td.vbottom {
vertical-align: bottom
}
th.column_heading, th.column_action {
border: .1em solid #000
th.column_heading,
th.column_action {
border: .1em solid #000
}
table tr {
border-left: .1em solid #000
border-left: .1em solid #000
}
table tr th, table.data th {
border-bottom: .1em solid #000
table tr th,
table.data th {
border-bottom: .1em solid #000
}
@@ -92,101 +102,110 @@ table tr th, table.data th {
/* Hide Navigation and Top Menu bar */
#pma_navigation, #floating_menubar {
display: none
#pma_navigation,
#floating_menubar {
display: none
}
/* Hide console */
#pma_console_container {
display: none
display: none
}
/* Hide Navigation items (like Goto Top) */
#page_nav_icons {
display: none
display: none
}
/* Hide the Create Table form */
#create_table_form_minimal {
display: none
display: none
}
/* Hide the Page Settings Modal box */
#page_settings_modal {
display: none
display: none
}
/* Hide footer, Demo notice, errors div */
#pma_footer, #pma_demo, #pma_errors {
display: none
#pma_footer,
#pma_demo,
#pma_errors {
display: none
}
/* Hide the #selflink div */
#selflink {
display: none
display: none
}
/* Position the main content */
#page_content {
position: absolute;
left: 0;
top: 0;
width: 95%;
float: none
position: absolute;
left: 0;
top: 0;
width: 95%;
float: none
}
/* Specific Class for overriding while Print */
.print {
background-color: #000
background-color: #000
}
/* For the Success message div */
.sqlOuter {
color: black
color: black
}
/* For hiding 'Open a New phpMyAdmin Window' button */
.ic_window-new, .ic_s_cog {
display: none
.ic_window-new,
.ic_s_cog {
display: none
}
.sticky_columns tr {
display: none
display: none
}
#structure-action-links, #addColumns {
display: none
#structure-action-links,
#addColumns {
display: none
}
/* Hide extra menu on tbl_structure.php */
#topmenu2 {
display: none
display: none
}
.cDrop, .cEdit, .cList, .cCpy, .cPointer {
display: none
.cDrop,
.cEdit,
.cList,
.cCpy,
.cPointer {
display: none
}
@@ -194,24 +213,26 @@ table tr th, table.data th {
table tbody:first-of-type tr:nth-child(odd),
table tbody:first-of-type tr:nth-child(odd) th {
background: #fff
background: #fff
}
table tbody:first-of-type tr:nth-child(even),
table tbody:first-of-type tr:nth-child(even) th {
background: #dfdfdf
background: #dfdfdf
}
.column_attribute {
font-size: 100%
font-size: 100%
}
@media print {
#back_button_print_view, #print_button_print_view {
display: none
}
#back_button_print_view,
#print_button_print_view {
display: none
}
}
tton_print_view, #print_button_print_view {
display: none
tton_print_view,
#print_button_print_view {
display: none
}
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
} ?>
/* ----------------------------------------------------- */
+3 -4
View File
@@ -1,8 +1,7 @@
<?php
# Unplanned execution path
if ( !defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE') ) {
exit();
// Unplanned execution path
if (!defined('PMA_MINIMUM_COMMON') && !defined('TESTSUITE')) {
exit();
} ?>
/* ----------------------------------------------------- */
+4 -5
View File
@@ -3,11 +3,10 @@
* This file is information for Fallen theme
*
* @package Fallen
* @author Frans Allen
* @link https://www.fransallen.com
* @author Frans Allen
* @link https://www.fransallen.com
*/
# Theme info
// Theme info
$theme_name = 'Fallen';
$theme_full_version = '0.4';
$theme_full_version = '0.6';
+2 -4
View File
@@ -3,14 +3,13 @@
* Layout
*
* @package Fallen
* @author Frans Allen
* @link https://www.fransallen.com
* @author Frans Allen
* @link https://www.fransallen.com
*/
/*
* General
*/
$GLOBALS['cfg']['NaviWidth'] = '250';
$GLOBALS['cfg']['FontFamily'] = '"Roboto", Helvetica, Arial, sans-serif';
$GLOBALS['cfg']['FontFamilyLight'] = '"Roboto", "Segoe UI Light", "Segoe UI"; font-weight: 300';
@@ -20,7 +19,6 @@ $GLOBALS['cfg']['FontFamilyFixed'] = 'Consolas, Monospace, "Lucida Gran
* Color Scheme
* No color scheme for this version
*/
$GLOBALS['cfg']['BrowsePointerColor'] = '#4285f4';
$GLOBALS['cfg']['BrowseMarkerColor'] = '#000';
$GLOBALS['cfg']['BrowseWarningColor'] = '#ea4335';
+8
View File
@@ -0,0 +1,8 @@
{
"name": "Fallen",
"version": "0.6",
"description": "Fallen theme for phpMyAdmin",
"author": "Frans Allen",
"url": "https://www.fransallen.com/",
"supports": ["4.7"]
}
Executable
+61
View File
@@ -0,0 +1,61 @@
#!/bin/sh
# Simple script to check for common errors in themes
do_lint() {
echo "== Linting $1 =="
if [ ! -d $1 ] ; then
echo " * Does not exist!"
return 1
fi
cd $1
VERSION=
if [ -f info.inc.php ] ; then
if grep -q theme_full_version info.inc.php ; then
VERSION=`php -r "include './info.inc.php'; echo \\\$theme_full_version;"`
echo " * Version from info.inc.php: $VERSION"
else
echo " * Old theme, no version available!"
fi
else
echo " * Missing info.inc.php!"
fi
if [ ! -f theme.json ] ; then
echo " * Missing theme.json, skipping further checks!"
cd ..
return 0
fi
JVERSION=`php -r "echo json_decode(file_get_contents('theme.json'), true)['version'];"`
echo " * Version from theme.json: $JVERSION"
if [ -n "$VERSION" -a "$JVERSION" != "$VERSION" ] ; then
echo " * Versions do not match: theme.json ($JVERSION), info.inc.php ($VERSION)"
cd ..
return 1
fi
VERSION=$JVERSION
echo " * Supported phpMyAdmin versions: `php -r "echo implode(', ', json_decode(file_get_contents('theme.json'), true)['supports']);"`"
echo " * Metadata:"
php -r "\$data = json_decode(file_get_contents('theme.json'), true); foreach (\$data as \$item => \$value) { echo ' - ' . \$item . ': '; if (is_array(\$value)) { echo implode(', ', \$value); } else { echo \$value; }; echo \"\\n\"; }"
cd ..
}
if [ -z "$1" ] ; then
echo "Usage: lint-theme.sh [--all|THEMEDIR]"
exit 1
fi
if [ "x$1" = "x--all" ] ; then
for dir in `find . -mindepth 1 -maxdepth 1 -type d` ; do
do_lint $dir
if [ $? -ne 0 ] ; then
exit 0
fi
done
else
do_lint $1
exit $?
fi
+15 -11
View File
@@ -1171,6 +1171,10 @@ ul#topmenu2 li {
height: 48px;
}
.scrollindicator {
display: none;
}
/* default tab styles */
#topmenu .tabactive {
background: #fff !important;
@@ -2046,7 +2050,7 @@ li#li_select_theme:hover
li#li_change_password
{
/* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png); */
/* list-style-image: url(<?php echo $theme->getImgPath(); ?>s_passwd.png); */
display: block;
padding: 10px;
padding-left: 20px;
@@ -2060,7 +2064,7 @@ li#li_change_password:hover
li#li_user_preferences
{
/* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_tblops.png); */
/* list-style-image: url(<?php echo $theme->getImgPath(); ?>b_tblops.png); */
display: block;
padding: 10px;
padding-left: 20px;
@@ -2325,7 +2329,7 @@ input[type=date].invalid_value
display: inline;
left: 0;
right: 0;
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>ajax_clock_small.gif);
background-image: url(<?php echo $theme->getImgPath(); ?>ajax_clock_small.gif);
background-repeat: no-repeat;
background-position: 46%;
margin: 0;
@@ -3089,7 +3093,7 @@ form.append_fields_form .tblFooters
}
.cPointer {
background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('col_pointer.png');?>);
background: url(<?php echo $theme->getImgPath('col_pointer.png');?>);
height: 20px;
margin-<?php echo $left; ?>: -5px; /* must be minus half of its width */
margin-top: -10px;
@@ -3120,7 +3124,7 @@ form.append_fields_form .tblFooters
}
.coldrop {
background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('col_drop.png');?>);
background: url(<?php echo $theme->getImgPath('col_drop.png');?>);
cursor: pointer;
height: 16px;
margin-<?php echo $left; ?>: .3em;
@@ -3278,12 +3282,12 @@ form.append_fields_form .tblFooters
}
.cEdit .edit_box_posting {
background: #FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>) no-repeat right center;
background: #FFF url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>) no-repeat right center;
padding-<?php echo $right; ?>: 1.5em;
}
.cEdit .edit_area_loading {
background: #FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>) no-repeat center;
background: #FFF url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>) no-repeat center;
height: 10em;
}
@@ -3294,7 +3298,7 @@ form.append_fields_form .tblFooters
}
.saving_edited_data {
background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>) no-repeat left;
background: url(<?php echo $theme->getImgPath('ajax_clock_small.gif');?>) no-repeat left;
padding-<?php echo $left; ?>: 20px;
}
@@ -3825,7 +3829,7 @@ html.ie7 #pma_console .query_input {
span.drag_icon {
display: inline-block;
background-image: url('<?php echo $_SESSION['PMA_Theme']->getImgPath('s_sortable.png');?>');
background-image: url('<?php echo $theme->getImgPath('s_sortable.png');?>');
background-position: center center;
background-repeat: no-repeat;
width: 1em;
@@ -3868,11 +3872,11 @@ th.header .sorticon {
}
th.headerSortUp .sorticon, th.headerSortDown:hover .sorticon {
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('s_desc.png');?>);
background-image: url(<?php echo $theme->getImgPath('s_desc.png');?>);
}
th.headerSortDown .sorticon, th.headerSortUp:hover .sorticon {
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('s_asc.png');?>);
background-image: url(<?php echo $theme->getImgPath('s_asc.png');?>);
}
/* end of styles of sortable tables */
@@ -29,17 +29,17 @@ if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) {
color: #000;
}
canvas.pmd {
canvas.designer {
display: inline-block;
overflow: hidden;
text-align: left;
}
canvas.pmd * {
canvas.designer * {
behavior: url(#default#VML);
}
.pmd_tab {
.designer_tab {
color: #333;
border-collapse: collapse;
border: 1px solid #ccc;
@@ -47,7 +47,7 @@ canvas.pmd * {
-moz-user-select: none;
}
.pmd_tab .header {
.designer_tab .header {
background-color: #f6f6f6;
}
@@ -74,7 +74,7 @@ canvas.pmd * {
cursor: default;
}
.tab_field_2 {
.tab_field:hover, .tab_field_3:hover {
background-color: #CCFFCC;
color: #000;
background-repeat: repeat-x;
@@ -87,7 +87,7 @@ canvas.pmd * {
cursor: default;
}
#pmd_hint {
#designer_hint {
white-space: nowrap;
position: absolute;
background-color: #99FF99;
@@ -103,7 +103,7 @@ canvas.pmd * {
height: 500px;
}
.pmd_Tabs {
.designer_Tabs {
cursor: default;
color: #333;
white-space: nowrap;
@@ -114,7 +114,7 @@ canvas.pmd * {
border: #ccc solid 0;
}
.pmd_Tabs2 {
.designer_Tabs:hover {
cursor: default;
color: #666;
background: #eee;
@@ -159,7 +159,7 @@ canvas.pmd * {
text-decoration: none;
}
.small_tab2 {
.small_tab:hover {
vertical-align: top;
color: #fff;
background-color: #FF9966;
@@ -178,7 +178,7 @@ canvas.pmd * {
width: 1px;
}
.small_tab_pref2 {
.small_tab_pref:hover {
vertical-align: top;
color: #fff;
background-color: #FF9966;
@@ -196,7 +196,7 @@ canvas.pmd * {
cursor: default;
}
.L_butt2_2 {
.L_butt2_1:hover {
padding-left: 5px;
color: #000;
text-decoration: none;
@@ -217,7 +217,7 @@ canvas.pmd * {
width: 100% !important;
}
.pmd_header {
.designer_header {
background-color: #F6F6F6;
border-top: 20px solid #FFFFFF;
color: #333333;
@@ -232,14 +232,14 @@ canvas.pmd * {
z-index: 101;
}
.pmd_header a {
.designer_header a {
display: block;
float: <?php echo $left; ?>;
margin: 3px 1px 4px;
height: 20px;
}
.pmd_header .M_bord {
.designer_header .M_bord {
display: block;
float: <?php echo $left; ?>;
margin: 4px;
@@ -247,11 +247,11 @@ canvas.pmd * {
width: 2px;
}
.pmd_header a.first {
.designer_header a.first {
margin-right: 1em;
}
.pmd_header a.last {
.designer_header a.last {
margin-left: 1em;
}
@@ -306,7 +306,7 @@ a.M_butt:hover {
width: 153px;
}
#pmd_optionse {
#designer_optionse {
position: absolute;
<?php echo $left; ?>: 636px;
top: 85px;
@@ -315,7 +315,7 @@ a.M_butt:hover {
}
#layer_menu_sizer {
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/resize.png'); ?>);
background-image: url(<?php echo $theme->getImgPath('designer/resize.png'); ?>);
cursor: ew-resize;
}
@@ -342,7 +342,7 @@ a.trigger {
<?php echo $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;
background: #333 url(<?php echo $theme->getImgPath('designer/plus.png'); ?>) 85% 55% no-repeat;
border: 1px solid #444;
display: block;
z-index: 102;
@@ -350,17 +350,17 @@ a.trigger {
a.trigger:hover {
color: #080808;
background: #fff696 url(<?php echo $_SESSION['PMA_Theme']->getImgPath('pmd/plus.png'); ?>) 85% 55% no-repeat;
background: #fff696 url(<?php echo $theme->getImgPath('designer/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;
background: #222 url(<?php echo $theme->getImgPath('designer/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;
background: #fff696 url(<?php echo $theme->getImgPath('designer/minus.png'); ?>) 85% 55% no-repeat;
}
.toggle_container .block {
@@ -467,4 +467,4 @@ a.active.trigger:hover {
width: 100%;
position: absolute;
left: 0;
}
}

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Before

Width:  |  Height:  |  Size: 992 B

After

Width:  |  Height:  |  Size: 992 B

Before

Width:  |  Height:  |  Size: 991 B

After

Width:  |  Height:  |  Size: 991 B

Before

Width:  |  Height:  |  Size: 991 B

After

Width:  |  Height:  |  Size: 991 B

Before

Width:  |  Height:  |  Size: 1013 B

After

Width:  |  Height:  |  Size: 1013 B

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1007 B

After

Width:  |  Height:  |  Size: 1007 B

Before

Width:  |  Height:  |  Size: 998 B

After

Width:  |  Height:  |  Size: 998 B

Before

Width:  |  Height:  |  Size: 1005 B

After

Width:  |  Height:  |  Size: 1005 B

Before

Width:  |  Height:  |  Size: 108 B

After

Width:  |  Height:  |  Size: 108 B

Before

Width:  |  Height:  |  Size: 503 B

After

Width:  |  Height:  |  Size: 503 B

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before

Width:  |  Height:  |  Size: 87 B

After

Width:  |  Height:  |  Size: 87 B

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 983 B

After

Width:  |  Height:  |  Size: 983 B

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 390 B

After

Width:  |  Height:  |  Size: 390 B

Before

Width:  |  Height:  |  Size: 735 B

After

Width:  |  Height:  |  Size: 735 B

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 920 B

After

Width:  |  Height:  |  Size: 920 B

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 129 B

Before

Width:  |  Height:  |  Size: 133 B

After

Width:  |  Height:  |  Size: 133 B

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 612 B

After

Width:  |  Height:  |  Size: 612 B

Before

Width:  |  Height:  |  Size: 630 B

After

Width:  |  Height:  |  Size: 630 B

Before

Width:  |  Height:  |  Size: 677 B

After

Width:  |  Height:  |  Size: 677 B

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before

Width:  |  Height:  |  Size: 151 B

After

Width:  |  Height:  |  Size: 151 B

Before

Width:  |  Height:  |  Size: 150 B

After

Width:  |  Height:  |  Size: 150 B

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before

Width:  |  Height:  |  Size: 421 B

After

Width:  |  Height:  |  Size: 421 B

Before

Width:  |  Height:  |  Size: 1011 B

After

Width:  |  Height:  |  Size: 1011 B

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

-3
View File
@@ -1,3 +0,0 @@
<?php
$theme_name = 'metro';
$theme_full_version = '2.6';
-834
View File
@@ -1,834 +0,0 @@
<?php
/**
* AUTOGENERATED CONTENT - DO NOT EDIT!
* ALL CHANGES WILL BE UNDONE!
* RUN `./scripts/generate-sprites` TO UPDATE THIS FILE
*
* @package PhpMyAdmin-theme
*/
/**
* Returns map of sprites inside sprite.png
*
* @return array Data of sprites
*/
function PMA_sprites()
{
return array(
'asc_order' => array(
'position' => '1',
'width' => '16',
'height' => '16'
),
'b_bookmark' => array(
'position' => '2',
'width' => '16',
'height' => '16'
),
'b_browse' => array(
'position' => '3',
'width' => '16',
'height' => '16'
),
'b_calendar' => array(
'position' => '4',
'width' => '16',
'height' => '16'
),
'b_chart' => array(
'position' => '5',
'width' => '16',
'height' => '16'
),
'b_close' => array(
'position' => '6',
'width' => '16',
'height' => '16'
),
'b_column_add' => array(
'position' => '7',
'width' => '16',
'height' => '16'
),
'b_comment' => array(
'position' => '8',
'width' => '16',
'height' => '16'
),
'b_dbstatistics' => array(
'position' => '9',
'width' => '16',
'height' => '16'
),
'b_deltbl' => array(
'position' => '10',
'width' => '16',
'height' => '16'
),
'b_docs' => array(
'position' => '11',
'width' => '16',
'height' => '16'
),
'b_docsql' => array(
'position' => '12',
'width' => '16',
'height' => '16'
),
'b_drop' => array(
'position' => '13',
'width' => '16',
'height' => '16'
),
'b_edit' => array(
'position' => '14',
'width' => '16',
'height' => '16'
),
'b_empty' => array(
'position' => '15',
'width' => '16',
'height' => '16'
),
'b_engine' => array(
'position' => '16',
'width' => '16',
'height' => '16'
),
'b_event_add' => array(
'position' => '17',
'width' => '16',
'height' => '16'
),
'b_events' => array(
'position' => '18',
'width' => '16',
'height' => '16'
),
'b_export' => array(
'position' => '19',
'width' => '16',
'height' => '16'
),
'b_favorite' => array(
'position' => '20',
'width' => '16',
'height' => '16'
),
'b_find_replace' => array(
'position' => '21',
'width' => '16',
'height' => '16'
),
'b_firstpage' => array(
'position' => '22',
'width' => '16',
'height' => '16'
),
'b_ftext' => array(
'position' => '23',
'width' => '16',
'height' => '16'
),
'b_group' => array(
'position' => '24',
'width' => '16',
'height' => '16'
),
'b_help' => array(
'position' => '25',
'width' => '16',
'height' => '16'
),
'b_home' => array(
'position' => '26',
'width' => '16',
'height' => '16'
),
'b_import' => array(
'position' => '27',
'width' => '16',
'height' => '16'
),
'b_index' => array(
'position' => '28',
'width' => '16',
'height' => '16'
),
'b_index_add' => array(
'position' => '29',
'width' => '16',
'height' => '16'
),
'b_info' => array(
'position' => '30',
'width' => '11',
'height' => '11'
),
'b_inline_edit' => array(
'position' => '31',
'width' => '16',
'height' => '16'
),
'b_insrow' => array(
'position' => '32',
'width' => '16',
'height' => '16'
),
'b_lastpage' => array(
'position' => '33',
'width' => '16',
'height' => '16'
),
'b_minus' => array(
'position' => '34',
'width' => '16',
'height' => '16'
),
'b_more' => array(
'position' => '35',
'width' => '16',
'height' => '16'
),
'b_move' => array(
'position' => '36',
'width' => '16',
'height' => '16'
),
'b_newdb' => array(
'position' => '37',
'width' => '16',
'height' => '16'
),
'b_newtbl' => array(
'position' => '38',
'width' => '16',
'height' => '16'
),
'b_nextpage' => array(
'position' => '39',
'width' => '16',
'height' => '16'
),
'b_no_favorite' => array(
'position' => '40',
'width' => '16',
'height' => '16'
),
'b_pdfdoc' => array(
'position' => '41',
'width' => '16',
'height' => '16'
),
'b_plus' => array(
'position' => '42',
'width' => '16',
'height' => '16'
),
'b_prevpage' => array(
'position' => '43',
'width' => '16',
'height' => '16'
),
'b_primary' => array(
'position' => '44',
'width' => '16',
'height' => '16'
),
'b_print' => array(
'position' => '45',
'width' => '16',
'height' => '16'
),
'b_props' => array(
'position' => '46',
'width' => '16',
'height' => '16'
),
'b_relations' => array(
'position' => '47',
'width' => '16',
'height' => '16'
),
'b_report' => array(
'position' => '48',
'width' => '16',
'height' => '16'
),
'b_routine_add' => array(
'position' => '49',
'width' => '16',
'height' => '16'
),
'b_routines' => array(
'position' => '50',
'width' => '16',
'height' => '16'
),
'b_save' => array(
'position' => '51',
'width' => '16',
'height' => '16'
),
'b_saveimage' => array(
'position' => '52',
'width' => '16',
'height' => '16'
),
'b_sbrowse' => array(
'position' => '53',
'width' => '16',
'height' => '16'
),
'b_sdb' => array(
'position' => '54',
'width' => '10',
'height' => '10'
),
'b_search' => array(
'position' => '55',
'width' => '16',
'height' => '16'
),
'b_selboard' => array(
'position' => '56',
'width' => '16',
'height' => '16'
),
'b_select' => array(
'position' => '57',
'width' => '16',
'height' => '16'
),
'b_snewtbl' => array(
'position' => '58',
'width' => '16',
'height' => '16'
),
'b_spatial' => array(
'position' => '59',
'width' => '16',
'height' => '16'
),
'b_sql' => array(
'position' => '60',
'width' => '16',
'height' => '16'
),
'b_sqldoc' => array(
'position' => '61',
'width' => '16',
'height' => '16'
),
'b_sqlhelp' => array(
'position' => '62',
'width' => '16',
'height' => '16'
),
'b_table_add' => array(
'position' => '63',
'width' => '16',
'height' => '16'
),
'b_tblanalyse' => array(
'position' => '64',
'width' => '16',
'height' => '16'
),
'b_tblexport' => array(
'position' => '65',
'width' => '16',
'height' => '16'
),
'b_tblimport' => array(
'position' => '66',
'width' => '16',
'height' => '16'
),
'b_tblops' => array(
'position' => '67',
'width' => '16',
'height' => '16'
),
'b_tbloptimize' => array(
'position' => '68',
'width' => '16',
'height' => '16'
),
'b_tipp' => array(
'position' => '69',
'width' => '16',
'height' => '16'
),
'b_trigger_add' => array(
'position' => '70',
'width' => '16',
'height' => '16'
),
'b_triggers' => array(
'position' => '71',
'width' => '16',
'height' => '16'
),
'b_unique' => array(
'position' => '72',
'width' => '16',
'height' => '16'
),
'b_usradd' => array(
'position' => '73',
'width' => '16',
'height' => '16'
),
'b_usrcheck' => array(
'position' => '74',
'width' => '16',
'height' => '16'
),
'b_usrdrop' => array(
'position' => '75',
'width' => '16',
'height' => '16'
),
'b_usredit' => array(
'position' => '76',
'width' => '16',
'height' => '16'
),
'b_usrlist' => array(
'position' => '77',
'width' => '16',
'height' => '16'
),
'b_versions' => array(
'position' => '78',
'width' => '16',
'height' => '16'
),
'b_view' => array(
'position' => '79',
'width' => '16',
'height' => '16'
),
'b_view_add' => array(
'position' => '80',
'width' => '16',
'height' => '16'
),
'b_views' => array(
'position' => '81',
'width' => '16',
'height' => '16'
),
'bd_browse' => array(
'position' => '82',
'width' => '16',
'height' => '16'
),
'bd_deltbl' => array(
'position' => '83',
'width' => '16',
'height' => '16'
),
'bd_drop' => array(
'position' => '84',
'width' => '16',
'height' => '16'
),
'bd_edit' => array(
'position' => '85',
'width' => '16',
'height' => '16'
),
'bd_empty' => array(
'position' => '86',
'width' => '16',
'height' => '16'
),
'bd_export' => array(
'position' => '87',
'width' => '16',
'height' => '16'
),
'bd_firstpage' => array(
'position' => '88',
'width' => '16',
'height' => '16'
),
'bd_ftext' => array(
'position' => '89',
'width' => '16',
'height' => '16'
),
'bd_index' => array(
'position' => '90',
'width' => '16',
'height' => '16'
),
'bd_insrow' => array(
'position' => '91',
'width' => '16',
'height' => '16'
),
'bd_lastpage' => array(
'position' => '92',
'width' => '16',
'height' => '16'
),
'bd_nextpage' => array(
'position' => '93',
'width' => '16',
'height' => '16'
),
'bd_prevpage' => array(
'position' => '94',
'width' => '16',
'height' => '16'
),
'bd_primary' => array(
'position' => '95',
'width' => '16',
'height' => '16'
),
'bd_routine_add' => array(
'position' => '96',
'width' => '16',
'height' => '16'
),
'bd_sbrowse' => array(
'position' => '97',
'width' => '16',
'height' => '16'
),
'bd_select' => array(
'position' => '98',
'width' => '16',
'height' => '16'
),
'bd_spatial' => array(
'position' => '99',
'width' => '16',
'height' => '16'
),
'bd_unique' => array(
'position' => '100',
'width' => '16',
'height' => '16'
),
'centralColumns' => array(
'position' => '101',
'width' => '16',
'height' => '16'
),
'centralColumns_add' => array(
'position' => '102',
'width' => '16',
'height' => '16'
),
'centralColumns_delete' => array(
'position' => '103',
'width' => '16',
'height' => '16'
),
'col_drop' => array(
'position' => '104',
'width' => '16',
'height' => '16'
),
'console' => array(
'position' => '105',
'width' => '16',
'height' => '16'
),
'database' => array(
'position' => '106',
'width' => '16',
'height' => '16'
),
'docs_menu_bg' => array(
'position' => '107',
'width' => '2',
'height' => '2'
),
'eye' => array(
'position' => '108',
'width' => '16',
'height' => '16'
),
'eye_grey' => array(
'position' => '109',
'width' => '16',
'height' => '16'
),
'item' => array(
'position' => '110',
'width' => '9',
'height' => '9'
),
'item_ltr' => array(
'position' => '111',
'width' => '5',
'height' => '9'
),
'item_rtl' => array(
'position' => '112',
'width' => '5',
'height' => '9'
),
'lightbulb' => array(
'position' => '113',
'width' => '16',
'height' => '16'
),
'lightbulb_off' => array(
'position' => '114',
'width' => '16',
'height' => '16'
),
'more' => array(
'position' => '115',
'width' => '13',
'height' => '16'
),
'new_data' => array(
'position' => '116',
'width' => '16',
'height' => '16'
),
'new_data_hovered' => array(
'position' => '117',
'width' => '16',
'height' => '16'
),
'new_data_selected' => array(
'position' => '118',
'width' => '16',
'height' => '16'
),
'new_data_selected_hovered' => array(
'position' => '119',
'width' => '16',
'height' => '16'
),
'new_struct' => array(
'position' => '120',
'width' => '16',
'height' => '16'
),
'new_struct_hovered' => array(
'position' => '121',
'width' => '16',
'height' => '16'
),
'new_struct_selected' => array(
'position' => '122',
'width' => '16',
'height' => '16'
),
'new_struct_selected_hovered' => array(
'position' => '123',
'width' => '16',
'height' => '16'
),
'normalize' => array(
'position' => '124',
'width' => '16',
'height' => '16'
),
'pause' => array(
'position' => '125',
'width' => '16',
'height' => '16'
),
'php_sym' => array(
'position' => '126',
'width' => '16',
'height' => '16'
),
'play' => array(
'position' => '127',
'width' => '16',
'height' => '16'
),
's_asc' => array(
'position' => '128',
'width' => '16',
'height' => '16'
),
's_asci' => array(
'position' => '129',
'width' => '16',
'height' => '16'
),
's_attention' => array(
'position' => '130',
'width' => '16',
'height' => '16'
),
's_cancel' => array(
'position' => '131',
'width' => '16',
'height' => '16'
),
's_cancel2' => array(
'position' => '132',
'width' => '16',
'height' => '16'
),
's_cog' => array(
'position' => '133',
'width' => '16',
'height' => '16'
),
's_collapseall' => array(
'position' => '134',
'width' => '16',
'height' => '16'
),
's_db' => array(
'position' => '135',
'width' => '16',
'height' => '16'
),
's_desc' => array(
'position' => '136',
'width' => '16',
'height' => '16'
),
's_error' => array(
'position' => '137',
'width' => '16',
'height' => '16'
),
's_error2' => array(
'position' => '138',
'width' => '11',
'height' => '11'
),
's_host' => array(
'position' => '139',
'width' => '16',
'height' => '16'
),
's_info' => array(
'position' => '140',
'width' => '16',
'height' => '16'
),
's_lang' => array(
'position' => '141',
'width' => '16',
'height' => '16'
),
's_link' => array(
'position' => '142',
'width' => '16',
'height' => '16'
),
's_lock' => array(
'position' => '143',
'width' => '16',
'height' => '16'
),
's_loggoff' => array(
'position' => '144',
'width' => '16',
'height' => '16'
),
's_notice' => array(
'position' => '145',
'width' => '16',
'height' => '16'
),
's_okay' => array(
'position' => '146',
'width' => '16',
'height' => '16'
),
's_passwd' => array(
'position' => '147',
'width' => '16',
'height' => '16'
),
's_process' => array(
'position' => '148',
'width' => '16',
'height' => '16'
),
's_really' => array(
'position' => '149',
'width' => '11',
'height' => '11'
),
's_reload' => array(
'position' => '150',
'width' => '16',
'height' => '16'
),
's_replication' => array(
'position' => '151',
'width' => '16',
'height' => '16'
),
's_rights' => array(
'position' => '152',
'width' => '16',
'height' => '16'
),
's_sortable' => array(
'position' => '153',
'width' => '16',
'height' => '16'
),
's_status' => array(
'position' => '154',
'width' => '16',
'height' => '16'
),
's_success' => array(
'position' => '155',
'width' => '16',
'height' => '16'
),
's_sync' => array(
'position' => '156',
'width' => '16',
'height' => '16'
),
's_tbl' => array(
'position' => '157',
'width' => '16',
'height' => '16'
),
's_theme' => array(
'position' => '158',
'width' => '16',
'height' => '16'
),
's_top' => array(
'position' => '159',
'width' => '16',
'height' => '16'
),
's_unlink' => array(
'position' => '160',
'width' => '16',
'height' => '16'
),
's_vars' => array(
'position' => '161',
'width' => '16',
'height' => '16'
),
's_views' => array(
'position' => '162',
'width' => '16',
'height' => '16'
),
'window-new' => array(
'position' => '163',
'width' => '16',
'height' => '16'
),
);
}
+9
View File
@@ -0,0 +1,9 @@
{
"name": "Metro",
"version": "2.8",
"description": "Windows 8 / Metro Theme for phpMyAdmin",
"author": "phpMyAdmin developers and hplhu",
"url": "https://www.phpmyadmin.net/",
"supports": ["4.8"]
}
+5 -5
View File
@@ -41,7 +41,7 @@ canvas.pmd *{behavior:url(#default#VML)}
color:#000;
cursor:default;
}
.tab_field_2{
.tab_field:hover, .tab_field_3:hover{
background-color:<?php echo $GLOBALS['cfg']['cLte']; ?>;
color:#000;
cursor:default;
@@ -77,7 +77,7 @@ canvas.pmd *{behavior:url(#default#VML)}
background-color:#fff;
border:#ccc solid 1px;
}
.pmd_Tabs2{
.pmd_Tabs:hover{
cursor:default;
color:#0055bb;
text-indent:3px;
@@ -115,7 +115,7 @@ canvas.pmd *{behavior:url(#default#VML)}
text-decoration:none;
font-family:monospace,'Lucida Console','Courier New';
}
.small_tab2{
.small_tab:hover{
vertical-align:top;
color:#fff;
background-color:<?php echo $GLOBALS['cfg']['cLte']; ?>;
@@ -133,7 +133,7 @@ canvas.pmd *{behavior:url(#default#VML)}
text-align:center;
width:1px;
}
.small_tab_pref2{
.small_tab_pref:hover{
vertical-align:top;
color:#fff;
background-color:<?php echo $GLOBALS['cfg']['cLte']; ?>;
@@ -157,7 +157,7 @@ canvas.pmd *{behavior:url(#default#VML)}
vertical-align:middle;
cursor:default;
}
.L_butt2_2{
.L_butt2_1:hover{
color:#000;
cursor:default;
text-decoration:none;
+1 -1
View File
@@ -1,3 +1,3 @@
<?php
$theme_name = 'mhn';
$theme_full_version = '1.2';
$theme_full_version = '1.3';
+9
View File
@@ -0,0 +1,9 @@
{
"name": "mhn",
"version": "1.3",
"description": "Flat Theme for phpMyAdmin",
"author": "Mohan Khadka",
"url": "http://www.mohankhadka.com.np/",
"supports": ["4.7"]
}
+1 -1
View File
@@ -11,4 +11,4 @@
*
*/
$theme_name = 'pmaterial';
$theme_full_version = '1.1';
$theme_full_version = '1.2';
+9
View File
@@ -0,0 +1,9 @@
{
"name": "pmaterial",
"version": "1.2",
"description": "Material Theme for phpMyAdmin",
"author": "Jees K. Denny",
"url": "http://jeeskdenny.com/",
"supports": ["4.7"]
}