drop box-shadow from generic-content-wrapper (it's probably too 90') and use transparent colors for borders to work better with alternate background colors

This commit is contained in:
Mario Vavti
2018-04-25 14:11:41 +02:00
parent c0bf3c8af1
commit 2ede8e3675
3 changed files with 10 additions and 9 deletions

View File

@@ -1051,12 +1051,14 @@ img.mail-conv-sender-photo {
}
#profile-jot-wrapper {
background-color: rgba(254,254,254,1);
border: 1px solid #ccc;
background-color: rgba(254, 254, 254, 1);
border: 1px solid rgba(0, 0, 0, .2);
border-radius: $radius;
}
#jot-title,
#jot-pagetitle,
#profile-jot-text {
border-radius: $radius;
}
@@ -1208,7 +1210,6 @@ img.mail-conv-sender-photo {
}
#note-text {
border: 1px solid #ccc;
border-radius: $radius;
}
@@ -1303,8 +1304,7 @@ img.mail-conv-sender-photo {
}
.generic-content-wrapper {
border: 1px solid #ccc;
box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.2);
border: 1px solid rgba(0, 0, 0, .2);
border-radius: $radius;
margin-bottom: 1.5rem;
}