mirror of
https://github.com/movahhedi/blueberry-pma-theme.git
synced 2026-08-24 10:04:43 -05:00
+1
-1
@@ -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
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
>> NOTE: This repository is no longer updated. To download **Fallen**, See [phpMyAdmin Themes directory](https://www.phpmyadmin.net/themes/).
|
||||
|
||||
# Fallen (phpMyAdmin Theme)
|
||||
|
||||
A Beautiful phpMyAdmin theme. Designed for you.
|
||||
|
||||
@@ -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
@@ -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 & Columns
|
||||
---------------------------------------------- */
|
||||
|
||||
<?php include CSS_PATH . '/common/tables.css.php' ?>
|
||||
<?php require CSS_PATH . '/common/tables.css.php' ?>
|
||||
|
||||
/* Forms, Input & 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' ?>
|
||||
|
||||
@@ -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();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
|
||||
@@ -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
@@ -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}
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
|
||||
@@ -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();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
|
||||
@@ -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' ?>
|
||||
|
||||
@@ -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();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
@@ -75,7 +74,7 @@ canvas.pmd * {
|
||||
cursor: default
|
||||
}
|
||||
|
||||
.tab_field:hover, .tab_field_3:hover {
|
||||
.tab_field_2 {
|
||||
background-color: #CCFFCC;
|
||||
color: #000;
|
||||
background-repeat: repeat-x;
|
||||
@@ -116,7 +115,7 @@ canvas.pmd * {
|
||||
border: #ccc solid 0
|
||||
}
|
||||
|
||||
.pmd_Tabs:hover {
|
||||
.pmd_Tabs2 {
|
||||
cursor: default;
|
||||
color: #666;
|
||||
background: #eee;
|
||||
@@ -161,7 +160,7 @@ canvas.pmd * {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.small_tab:hover {
|
||||
.small_tab2 {
|
||||
vertical-align: top;
|
||||
color: #fff;
|
||||
background-color: #ff9966;
|
||||
@@ -180,7 +179,7 @@ canvas.pmd * {
|
||||
width: 1px
|
||||
}
|
||||
|
||||
.small_tab_pref:hover {
|
||||
.small_tab_pref2 {
|
||||
vertical-align: top;
|
||||
color: #fff;
|
||||
background-color: #ff9966;
|
||||
@@ -198,7 +197,7 @@ canvas.pmd * {
|
||||
cursor: default
|
||||
}
|
||||
|
||||
.L_butt2_1:hover {
|
||||
.L_butt2_2 {
|
||||
padding-left: 5px;
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
|
||||
+86
-65
@@ -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
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
} ?>
|
||||
/* ----------------------------------------------------- */
|
||||
|
||||
|
||||
@@ -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
@@ -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';
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user