diff --git a/css/style.css b/css/style.css
index 7f12a8db3..d536dfdc9 100644
--- a/css/style.css
+++ b/css/style.css
@@ -29,6 +29,16 @@
cursor: pointer;
}
+#app-view {
+ position: relative;
+ height: 100%;
+ white-space: nowrap;
+ overflow: none;
+ padding: 0;
+ z-index: 100;
+ width: 100%;
+}
+
#board-status {
position:absolute;
z-index:999;
@@ -54,13 +64,15 @@
width: inherit;
color: #333333;
position:relative;
- z-index:200;
- background-color:#f7f7f7;
+ z-index:120;
+ height: 44px;
+ background-color: #eee;
}
#board-header h1 {
font-size:14pt;
margin: 0;
- padding:10px;
+ padding:12px;
+ padding-left:50px;
}
#board-actions {
@@ -661,4 +673,4 @@ margin-bottom:2px; width:100%;
.shareOption {
margin-top:4px;
-}
\ No newline at end of file
+}
diff --git a/js/filters/textColorFilter.js b/js/filters/textColorFilter.js
index 12bccd1ce..14712405b 100644
--- a/js/filters/textColorFilter.js
+++ b/js/filters/textColorFilter.js
@@ -1,4 +1,4 @@
-app.filter('lightenColorFilter', function() {
+app.filter('textColorFilter', function() {
return function (hex) {
// RGB2HLS by Garry Tan
// http://axonflux.com/handy-rgb-to-hsl-and-rgb-to-hsv-color-model-c
@@ -40,4 +40,4 @@ app.filter('lightenColorFilter', function() {
}
}
-});
\ No newline at end of file
+});
diff --git a/js/public/app.js b/js/public/app.js
index 00c8dfcb1..5bd5eb346 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -622,7 +622,7 @@ app.filter('orderObjectBy', function(){
return array;
}
});
-app.filter('lightenColorFilter', function() {
+app.filter('textColorFilter', function() {
return function (hex) {
// RGB2HLS by Garry Tan
// http://axonflux.com/handy-rgb-to-hsl-and-rgb-to-hsv-color-model-c
@@ -665,6 +665,7 @@ app.filter('lightenColorFilter', function() {
}
});
+
// OwnCloud Click Handling
// https://doc.owncloud.org/server/8.0/developer_manual/app/css.html
app.directive('appNavigationEntryUtils', function () {
diff --git a/templates/main.php b/templates/main.php
index 2e34babee..9696c33b1 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -25,9 +25,10 @@ Util::addScript('deck', 'public/app');
inc('part.navigation')); ?>
inc('part.settings')); ?>
-