summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/css/styles.css3
-rw-r--r--lib/files/filesystem.php4
2 files changed, 6 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index e44b7adcd55..043ca161c75 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -98,7 +98,8 @@ input[type="submit"] img, input[type="button"] img, button img, .button img { cu
/* disabled input fields and buttons */
input:disabled, input:disabled:hover, input:disabled:focus,
button:disabled, button:disabled:hover, button:disabled:focus,
-.button:disabled, .button:disabled:hover, .button:disabled:focus {
+.button:disabled, .button:disabled:hover, .button:disabled:focus,
+a.disabled, a.disabled:hover, a.disabled:focus {
background: rgba(230,230,230,.9);
color: #999;
cursor: default;
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php
index 6f56de9f265..c8e62956f19 100644
--- a/lib/files/filesystem.php
+++ b/lib/files/filesystem.php
@@ -23,6 +23,7 @@
* post_rename(oldpath,newpath)
* copy(oldpath,newpath, &run) (if the newpath doesn't exists yes, copy, create and write will be emitted in that order)
* post_rename(oldpath,newpath)
+ * post_initMountPoints(user, user_dir)
*
* the &run parameter can be set to false to prevent the operation from occurring
*/
@@ -280,6 +281,9 @@ class Filesystem {
}
}
}
+
+ // Chance to mount for other storages
+ \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root));
}
/**