fix profile picture fed sharing scope menu
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
51b5f2754d
commit
9c7533ff6b
3 changed files with 13 additions and 9 deletions
|
@ -83,7 +83,11 @@ input#openid, input#webdav { width:20em; }
|
|||
min-width: 200px;
|
||||
}
|
||||
#avatarform > h2 span,
|
||||
#personal-settings-container > div h2 span[class^="icon-"] {
|
||||
#personal-settings-container > div h2 {
|
||||
position: relative;
|
||||
}
|
||||
#personal-settings-container > div h2 span[class^="icon-"],
|
||||
#personal-settings-avatar-container h2 span[class^="icon-"] {
|
||||
display: inline-block;
|
||||
margin-left: 5px;
|
||||
background-size: 110%;
|
||||
|
@ -102,7 +106,7 @@ input#openid, input#webdav { width:20em; }
|
|||
pointer-events: none;
|
||||
}
|
||||
.federationScopeMenu {
|
||||
top: 66px;
|
||||
top: 44px;
|
||||
}
|
||||
.federationScopeMenu.bubble::after {
|
||||
left: 45px;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* global OC, result */
|
||||
/* global OC, result, _ */
|
||||
|
||||
/**
|
||||
* Copyright (c) 2016, Christoph Wurst <christoph@owncloud.com>
|
||||
|
@ -7,7 +7,7 @@
|
|||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
(function(_, $, OC) {
|
||||
'use strict';
|
||||
|
||||
var FederationSettingsView = OC.Backbone.View.extend({
|
||||
|
@ -159,4 +159,4 @@
|
|||
|
||||
OC.Settings = OC.Settings || {};
|
||||
OC.Settings.FederationSettingsView = FederationSettingsView;
|
||||
})();
|
||||
})(_, $, OC);
|
|
@ -38,7 +38,7 @@
|
|||
<form id="avatarform" class="section" method="post" action="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.postAvatar')); ?>">
|
||||
<h2>
|
||||
<label><?php p($l->t('Profile picture')); ?></label>
|
||||
<span class="icon-loading"/>
|
||||
<span class="icon-password"/>
|
||||
</h2>
|
||||
<div id="displayavatar">
|
||||
<div class="avatardiv"></div>
|
||||
|
|
Loading…
Reference in a new issue