Merge pull request #321 from nextcloud/guest-name

Fix guest name color in light color themings
This commit is contained in:
Joas Schilling 2017-05-22 12:22:10 +02:00 коммит произвёл GitHub
Родитель 8e9a04300d 0de1935891
Коммит 9be135c5a7
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -568,7 +568,7 @@ video {
}
#guestName:hover {
color: #fff;
color: #fff !important;
}
#guestNameInput {
@ -595,3 +595,8 @@ video {
#body-public #app-content:not(.participants-1) #header.spreed-public {
background: transparent;
}
/* make guest name white because header bar is transparent*/
#body-public #app-content:not(.participants-1) #guestName {
color: rgba(255, 255, 255, 0.7);
}