Skip to content

Instantly share code, notes, and snippets.

@awinogradov
Last active December 3, 2015 07:52
Show Gist options
  • Save awinogradov/e00dc9fe92423e270d34 to your computer and use it in GitHub Desktop.
Save awinogradov/e00dc9fe92423e270d34 to your computer and use it in GitHub Desktop.
Потрите `.flux-widget .chat-app .btn-default` у себя
.flux-widget .chat-app .btn-default {
font-family: 'Roboto', sans-serif;
position: relative;
display: inline-block;
box-sizing: border-box;
margin: 0;
background: transparent;
color: rgba(0, 0, 0, .9);
font-weight: 300;
font-size: 16px;
height: 40px;
line-height: 20px;
padding: 6px 20px;
cursor: pointer;
text-align: center;
white-space: nowrap;
border: 1px dashed rgba(0, 0, 0, .3);
border-radius: 4px;
}
.flux-widget .chat-app .btn-default:focus {
border: 1px solid rgba(0, 0, 0, .9);
background: transparent;
outline: 0;
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, .9);
}
.flux-widget .chat-app .btn-default:hover {
color: rgba(239, 49, 36, .9);
border: 1px dashed rgba(239, 49, 36, .5);
box-shadow: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment