Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-04-07 21:55:45 +0400
committerJo Michael <me@mynetx.net>2012-04-07 21:55:45 +0400
commit263d0137fd68e56aa7f7ea6222935f2b7360a47a (patch)
tree7d0852119553da08dac1078a78740e99df9c671f /themes
parentd7f303fea39b4fd080ef7efbe0c60494cea6bb31 (diff)
Show progress bar with timing for import uploads
Diffstat (limited to 'themes')
-rw-r--r--themes/original/css/theme_right.css.php33
-rw-r--r--themes/pmahomme/css/theme_right.css.php32
2 files changed, 64 insertions, 1 deletions
diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php
index 6cf97d961f..794fcc2a84 100644
--- a/themes/original/css/theme_right.css.php
+++ b/themes/original/css/theme_right.css.php
@@ -1495,10 +1495,20 @@ textarea#partitiondefinition {
/**
* Progress bar styles
*/
+div.upload_progress
+{
+ width: 400px;
+ margin: 3em auto;
+ text-align: center;
+}
+
div.upload_progress_bar_outer
{
- border: 1px solid black;
+ border: 1px solid #000;
width: 202px;
+ position: relative;
+ margin: 0 auto 1em;
+ color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
}
div.upload_progress_bar_inner
@@ -1507,6 +1517,27 @@ div.upload_progress_bar_inner
width: 0;
height: 12px;
margin: 1px;
+ overflow: hidden;
+ color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
+ position: relative;
+}
+
+div.upload_progress_bar_outer div.percentage
+{
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 202px;
+}
+
+div.upload_progress_bar_inner div.percentage
+{
+ top: -1px;
+ left: -1px;
+}
+
+div#statustext {
+ margin-top: .5em;
}
table#serverconnection_src_remote,
diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php
index 122eb4a187..de5b46816f 100644
--- a/themes/pmahomme/css/theme_right.css.php
+++ b/themes/pmahomme/css/theme_right.css.php
@@ -1905,10 +1905,21 @@ textarea#partitiondefinition {
/**
* Progress bar styles
*/
+
+div.upload_progress
+{
+ width: 400px;
+ margin: 3em auto;
+ text-align: center;
+}
+
div.upload_progress_bar_outer
{
border: 1px solid #000;
width: 202px;
+ position: relative;
+ margin: 0 auto 1em;
+ color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
}
div.upload_progress_bar_inner
@@ -1917,6 +1928,27 @@ div.upload_progress_bar_inner
width: 0;
height: 12px;
margin: 1px;
+ overflow: hidden;
+ color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
+ position: relative;
+}
+
+div.upload_progress_bar_outer div.percentage
+{
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 202px;
+}
+
+div.upload_progress_bar_inner div.percentage
+{
+ top: -1px;
+ left: -1px;
+}
+
+div#statustext {
+ margin-top: .5em;
}
table#serverconnection_src_remote,