Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-01-09 21:34:10 +01:00
Родитель afad3154a4
Коммит 003207b68e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
2 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -76,4 +76,14 @@
.icon-group-forced-white {
background-image: url(icon-color-path('group', 'actions', 'fff', 1, true));
}
.atwho-view {
background: var(--color-main-background);
color: var(--color-main-text);
}
.atwho-cur {
background: var(--color-primary);
color: var(--color-primary-text);
}
}

Просмотреть файл

@ -305,10 +305,10 @@ export default {
margin: 0;
}
//Support for the placehoder text in the div contenteditable
// Support for the placeholder text in the div contenteditable
[contenteditable]:empty:before{
content: attr(placeholder);
display: block;
color: gray;
color: var(--color-text-maxcontrast);
}
</style>