Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8dcc92c2 authored by AVINASH GUSAIN's avatar AVINASH GUSAIN Committed by Fahim Salam Chowdhury
Browse files

UI Regression fixes

parent 1fe2025a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -70,6 +70,9 @@ class BeforeTemplateRenderedListener implements IEventListener {
		if (strpos($pathInfo, '/apps/photos/') !== false) {
			$this->util->addStyle($this->appName, 'photos');
		}
		if (strpos($pathInfo, '/apps/passwords/') !== false) {
			$this->util->addStyle($this->appName, 'passwords');
		}
		if ($pathInfo === '/settings/user/theming') {
			$this->util->addStyle($this->appName, 'settings-theming');
		}
+3 −0
Original line number Diff line number Diff line
@@ -15,3 +15,6 @@ ul.navigation-list li>a[href="#settings-section_support-project"],
.bookmarkslist .material-design-icon.bookmarks-icon.bookmark__icon svg path {
  fill :var(--icon-inactive-color) !important;
}
div#settings-section_install > p ,div#settings-section_bookmarklet > p {
    margin-bottom: 10px;
}
 No newline at end of file
+13 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
}

.cookbook-app-content .add-list-item .icon-add {
	background-image: var(--icon-add-000);
	background-image: var(--icon-add-808080);
}

.cookbook-app-content .add-list-item:active,
@@ -40,7 +40,11 @@
}

.cookbook-app-content .cookbook-footer .button span {
	background-image: var(--icon-checkmark-000);
	background-image: var(--icon-checkmark-808080);
}

.cookbook-app-content button.icon-add {
    background-image: var(--icon-add-808080);
}

.app-cookbook #app-navigation-vue{
@@ -50,3 +54,10 @@
.app-cookbook input[type="number"] {
	min-width: 5em;
}
.modal-container__content .navigation-list a[href="#settings-section_debug"].navigation-list__link {
	display:none
}

.input-container > input + button {
    margin-top: 0 !important;
}
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
@@ -58,3 +58,7 @@ button .icon-add {
.empty-content__action input.icon-confirm:focus {
    border-radius: 0 var(--border-radius-large) var(--border-radius-large) 0 !important;
}

.board-wrapper .board-action-buttons .icon.icon-menu-sidebar {
    filter: brightness(0) saturate(100%) invert(55%) sepia(4%) saturate(15%) hue-rotate(35deg) brightness(91%) contrast(88%);
}
 No newline at end of file
+10 −1
Original line number Diff line number Diff line
@@ -183,3 +183,12 @@
.app-navigation-entry-menu.open .icon-rss {
    filter: var(--inactive-icon-filter);
}
.app-navigation-entry.active .app-navigation-entry__utils .app-navigation-entry__actions .button-vue--vue-primary {
    background: none;
}
.settings-button a[href="https://nextcloud.github.io/news/"] {
    display: none !important;
}
.app-navigation-entry__utils .button-vue {
	background-color: unset !important;
}
Loading