Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authornewhinton <felix.nuesse@t-online.de>2019-05-12 13:22:10 +0300
committerGitHub <noreply@github.com>2019-05-12 13:22:10 +0300
commit301029299e2e9c759e8a73f77b87bf962f437283 (patch)
tree5efc537650f0025e8f41ff75375cd05a6eda73cd /sass
parent358f3296218c01de291f286ac077d8f4fee0a9e1 (diff)
parent2e57eba9dabfd15acaa285749da72bc7cd407501 (diff)
Merge pull request #576 from nextcloud/feature/539/specificsearchbyfield
Feature/539/specificsearchbyfield
Diffstat (limited to 'sass')
-rw-r--r--sass/app.scss1
-rw-r--r--sass/searchboxexpander.scss71
2 files changed, 72 insertions, 0 deletions
diff --git a/sass/app.scss b/sass/app.scss
index 9ecb4fe4..ceb83803 100644
--- a/sass/app.scss
+++ b/sass/app.scss
@@ -32,6 +32,7 @@
@import 'menu';
@import 'share_credential';
@import 'settings';
+@import 'searchboxexpander';
.app-passman{
overflow-x: hidden;
diff --git a/sass/searchboxexpander.scss b/sass/searchboxexpander.scss
new file mode 100644
index 00000000..dd07f751
--- /dev/null
+++ b/sass/searchboxexpander.scss
@@ -0,0 +1,71 @@
+/**
+ * Nextcloud - passman
+ *
+ * @copyright Copyright (c) 2019, Felix NĂ¼sse (felix.nuesse@t-online.de)
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+.searchbox-settings{
+ position: relative;
+ top: 50%;
+ opacity: 0.6;
+
+}
+.searchbox-settings:hover{
+ opacity: 1;
+ cursor: pointer;
+}
+
+.custom-search-dialog{
+ border-radius: var(--border-radius-large) !important;
+ box-shadow: 0 0 30px var(--color-box-shadow);
+ .ui-dialog {
+ border-radius: var(--border-radius-large);
+ box-shadow: 0 0 30px var(--color-box-shadow);
+ }
+ .ui-widget-header {
+ background: none;
+ }
+
+ //closebutton top right
+ .ui-icon-closethick {
+ background-position: inherit;
+ }
+
+ .ui-button-icon {
+ border: none !important;
+ }
+ .ui-icon {
+ border: none !important;
+ }
+
+ .ui-button .ui-icon {
+ background-image: var(--icon-close-000);
+ }
+
+ .ui-icon-closethick {
+ border: none !important;
+ }
+
+ //closebutton top right end
+
+ //bottom line removal
+ .ui-dialog-buttonpane.ui-helper-clearfix{
+ display: none;
+ }
+ //bottom line end
+} \ No newline at end of file