Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/battery_manager/battery_manager.css
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-02-06 16:36:20 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-02-06 16:36:20 (GMT)
commit66dae0ccbc23f4df612711a2e61fadd9b15feb91 (patch)
treea069ef55f4d97b6419f38d8ce86eb19f5cc1f1e7 /apps/system/style/battery_manager/battery_manager.css
parentb5b9e95e2f4c8ab19cef000c82fcfc0625c52666 (diff)
Empty the system pluginHEADmaster
Diffstat (limited to 'apps/system/style/battery_manager/battery_manager.css')
-rw-r--r--apps/system/style/battery_manager/battery_manager.css55
1 files changed, 0 insertions, 55 deletions
diff --git a/apps/system/style/battery_manager/battery_manager.css b/apps/system/style/battery_manager/battery_manager.css
deleted file mode 100644
index 5a7a530..0000000
--- a/apps/system/style/battery_manager/battery_manager.css
+++ /dev/null
@@ -1,55 +0,0 @@
-#system-overlay.battery {
- visibility: visible;
-}
-
-#system-overlay.battery #battery {
- display: block;
-}
-
-#battery {
- display: none;
- background-image: url('images/header_bg.png');
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 45px;
- font-size: 1.5rem;
- font-weight: 500;
-}
-
-.icon-battery {
- display: block;
- float: left;
-
- width: 42px;
- height: 18px;
- margin: 0 1.3rem;
-
- background-image: url('images/battery_empty_small.png');
- background-position: center center;
- background-repeat: no-repeat;
-}
-
-#battery span {
- vertical-align: middle;
- height: 45px;
- line-height: 45px;
-}
-
-.battery-notification {
- display: inline-block;
-}
-
-#battery.disappearing {
- animation: notification-disappear 1.5s;
-}
-
-@keyframes notification-disappear {
- to {
- transform: translateX(100%);
- }
- from {
- transform: translateX(0);
- }
-}