Skip to content

Instantly share code, notes, and snippets.

@domagude
Last active November 28, 2017 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save domagude/2db60f1f4135919ae81e51a2590f06c2 to your computer and use it in GitHub Desktop.
Save domagude/2db60f1f4135919ae81e51a2590f06c2 to your computer and use it in GitHub Desktop.
#contacts-requests {
li {
color: black;
background-color: $backgroundColor;
border-bottom: 1px solid $navbarColor;
}
i {
position: relative;
}
.sixty-percent {
display: inline-block;
width: 60%;
}
.forty-percent {
display: inline-block;
float: right;
width: 40%;
}
.contact-request, .contact-request-responded {
.contact-name {
padding-left: 10px;
padding-right: 20px;
}
.accept-request, .decline-request {
a {
border: 2px solid $navbarColor;
padding: 5px;
}
&:hover a {
border-color: black;
}
transition: 0.15s border-color;
transition: 0.15s background-color;
}
.accept-request {
a:hover {
background-color: black !important;
}
a {
background-color: $navbarColor;
color: white !important;
}
}
.decline-request {
a {
background-color: $backgroundColor;
color: black !important;
}
a:hover, &:hover {
background-color: white !important;
}
}
.accepted-request {
background: $navbarColor;
color: white;
padding: 5px;
}
}
.no-requests {
text-align: center;
}
}
#unresponded-contact-requests {
top: 0;
right: 5px;
background: #3F4EBF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment