2019-08-14 09:48:44 +00:00
|
|
|
.button {
|
|
|
|
font-family: $body-font-family;
|
2020-06-25 15:34:03 +00:00
|
|
|
font-weight: $font-weight-medium;
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
&.round {
|
|
|
|
border-radius: 1000px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.grey-btn {
|
|
|
|
color: $color-gray;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-light-gray;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-weight: $font-weight-bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
border-radius: $space-smaller;
|
|
|
|
font-size: $font-size-mini;
|
2020-06-25 15:34:03 +00:00
|
|
|
max-width: 15rem;
|
|
|
|
padding: $space-smaller $space-small;
|
|
|
|
z-index: 9999;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2019-10-29 07:20:54 +00:00
|
|
|
|
|
|
|
code {
|
|
|
|
border: 0;
|
2020-02-20 05:41:36 +00:00
|
|
|
font-family: 'Monaco', Verdana;
|
2019-10-29 07:20:54 +00:00
|
|
|
font-size: $font-size-mini;
|
|
|
|
|
|
|
|
&.hljs {
|
|
|
|
background: $color-background;
|
|
|
|
padding: $space-two;
|
|
|
|
}
|
|
|
|
}
|
2020-08-22 18:35:07 +00:00
|
|
|
|
|
|
|
.text-truncate {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|