summaryrefslogtreecommitdiffstats
path: root/css/settings-section.scss
diff options
context:
space:
mode:
Diffstat (limited to 'css/settings-section.scss')
-rw-r--r--css/settings-section.scss82
1 files changed, 82 insertions, 0 deletions
diff --git a/css/settings-section.scss b/css/settings-section.scss
new file mode 100644
index 00000000..47031a88
--- /dev/null
+++ b/css/settings-section.scss
@@ -0,0 +1,82 @@
+/**
+ * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
+ *
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
+ * @author Team Popcorn <teampopcornberlin@gmail.com>
+ *
+ * @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/>.
+ *
+ */
+
+// contacts settings section
+#app-settings-content {
+ .settings-section {
+ display: flex;
+ align-items: center;
+ }
+}
+
+#new-addressbook-form {
+ display: flex;
+}
+
+// Sort Contacts
+.sort-contacts {
+ .multiselect.multiselect-vue {
+ width: 120px;
+ margin-left: 5px;
+ }
+ input#sort-by, .multiselect__single {
+ padding: 6px 12px;
+ min-height: 34px;
+ text-align: center;
+ background: url(/core/css/../img/actions/triangle-s.svg) no-repeat right 4px center;
+ background-color: inherit;
+ outline: 0;
+ padding-right: 24px !important;
+ }
+}
+
+// Import contacts
+.import-contact {
+ display: flex;
+ flex-direction: column;
+ .multiselect-label {
+ width: 100%;
+ padding: 6px 12px 6px 34px;
+ margin: 0;
+ border-radius: var(--border-radius) var(--border-radius) 0 0;
+ background: url(/core/css/../img/actions/upload.svg) no-repeat left 9px center;
+ background-color: #f7f7f7;
+ z-index: 2;
+ }
+ .multiselect-vue {
+ width: 100%;
+ margin: 0;
+ }
+ .multiselect-vue .multiselect__tags {
+ border: 1px solid var(--color-border-dark);
+ border-radius: 0 0 var(--border-radius) var(--border-radius);
+ margin-top: -1px;
+ }
+}
+
+// Add address book
+.new-addressbook {
+ .new-addressbook-input {
+ border-color: var(--color-border-dark);
+ }
+}