mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2024-11-08 17:36:54 +00:00
63 lines
1.5 KiB
SCSS
63 lines
1.5 KiB
SCSS
/***
|
|
* @copyright Copyright (c) 2017, Magnus Walbeck <mw@mwalbeck.org>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
|
|
*/
|
|
|
|
/* Contacts ----------------------------------------------------------------- */
|
|
|
|
.app-contacts .app-content-list-item {
|
|
&:hover {
|
|
background-color: var(--color-background-hover);
|
|
}
|
|
|
|
&:active,
|
|
&.active,
|
|
&:focus {
|
|
background-color: var(--color-primary);
|
|
color: var(--color-primary-text);
|
|
}
|
|
}
|
|
|
|
.app-contacts .contact-header__infos input {
|
|
background-color: var(--color-main-background) !important;
|
|
|
|
&:active,
|
|
&:focus {
|
|
background-color: var(--color-background-darker) !important;
|
|
}
|
|
}
|
|
|
|
/* Icons -------------------------------------------------------------------- */
|
|
|
|
.app-contacts {
|
|
.icon-phone {
|
|
background-image: var(--icon-contacts-phone-f2f2f2) !important;
|
|
}
|
|
|
|
.icon-address-book {
|
|
background-image: var(--icon-contacts-address-book-f2f2f2) !important;
|
|
}
|
|
|
|
.icon-social {
|
|
background-image: var(--icon-contacts-social-f2f2f2) !important;
|
|
}
|
|
|
|
.icon-language {
|
|
background-image: var(--icon-contacts-language-f2f2f2) !important;
|
|
}
|
|
|
|
.icon-up {
|
|
background-image: var(--icon-contacts-up-f2f2f2) !important;
|
|
}
|
|
|
|
.sort-contacts .multiselect .multiselect__single {
|
|
background-image: var(--icon-triangle-s-f2f2f2) !important;
|
|
}
|
|
}
|
|
|
|
// In popup outside the .app-contacts div
|
|
.icon-qrcode {
|
|
background-image: var(--icon-contacts-qrcode-f2f2f2) !important;
|
|
}
|