Merge pull request #166 from nextcloud/160-fix-regressions

Fixes few regressions caused by my last PR.
This commit is contained in:
Artem Anufrij
2017-05-28 15:23:53 +02:00
committed by GitHub

View File

@@ -55,21 +55,16 @@ button.button-inline:hover {
} }
#searchbox { #searchbox {
display: block !important; display: flex !important;
} }
/** /**
* Navigation sidebar * Navigation sidebar
*/ */
.app-navigation-entry-utils-menu-button {
display: block !important;
}
.app-navigation-entry-utils-menu-share { .app-navigation-entry-utils-menu-share {
display: block !important; display: flex !important;
text-align: right; padding: 14px;
padding-top: 3px;
padding-right: 5px;
opacity: 0.4; opacity: 0.4;
} }
@@ -222,10 +217,9 @@ button.button-inline:hover {
} }
.stack { .stack {
width: 320px; width: 100%;
margin-right: 10px; margin-right: 10px;
vertical-align: top; vertical-align: top;
display: inline-block;
background-color: #f8f8f8; background-color: #f8f8f8;
} }
@@ -268,7 +262,8 @@ button.button-inline:hover {
} }
.stack h2 .stack-actions { .stack h2 .stack-actions {
display: none; display: flex;
opacity: 0.25;
} }
.stack h2:hover .stack-actions { .stack h2:hover .stack-actions {
@@ -856,16 +851,13 @@ button.button-inline:hover {
.board-header-controls.app-popover-menu-utils { .board-header-controls.app-popover-menu-utils {
display: none; display: none;
} }
}
@media (max-width: 480px) {
.stack { .stack {
width: 100%; width: 320px;
display: block; display: inline-block;
} }
.stack h2 .stack-actions { .stack h2 .stack-actions {
display: flex; display: none;
opacity: 0.25;
} }
} }