Signed-off-by: Marin Treselj <marin@pixelipo.com>
This commit is contained in:
parent
5d2b6b8240
commit
84b0790b99
|
@ -141,18 +141,18 @@
|
|||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#header-left,
|
||||
#header-right {
|
||||
.header-left,
|
||||
.header-right {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#header-left {
|
||||
.header-left {
|
||||
flex: 0 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
#header-right {
|
||||
.header-right {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1203,7 +1203,7 @@ OC.Notification={
|
|||
|
||||
/**
|
||||
* Updates (replaces) a sanitized notification.
|
||||
*
|
||||
*
|
||||
* @param {string} text Message to display
|
||||
* @return {jQuery} JQuery element for notificaiton row
|
||||
*/
|
||||
|
@ -1512,7 +1512,7 @@ function initCore() {
|
|||
|
||||
var resizeMenu = function() {
|
||||
var appList = $('#appmenu li');
|
||||
var headerWidth = $('#header-left').width() - $('#nextcloud').width()
|
||||
var headerWidth = $('.header-left').width() - $('#nextcloud').width()
|
||||
var usePercentualAppMenuLimit = 0.33;
|
||||
var minAppsDesktop = 8;
|
||||
var availableWidth = headerWidth - $(appList).width();
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<div id="notification"></div>
|
||||
</div>
|
||||
<header role="banner"><div id="header">
|
||||
<div id="header-left">
|
||||
<div class="header-left">
|
||||
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>"
|
||||
id="nextcloud" tabindex="1">
|
||||
<div class="logo-icon">
|
||||
|
@ -109,7 +109,7 @@
|
|||
|
||||
</div>
|
||||
|
||||
<div id="header-right">
|
||||
<div class="header-right">
|
||||
<form class="searchbox" action="#" method="post" role="search" novalidate>
|
||||
<label for="searchbox" class="hidden-visually">
|
||||
<?php p($l->t('Search'));?>
|
||||
|
|
Loading…
Reference in New Issue