1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 15:19:42 +02:00
documize/gui/app/styles/widget/widget-chip.scss

47 lines
833 B
SCSS
Raw Normal View History

2016-07-07 18:54:16 -07:00
.chip {
display: inline-block;
border-radius: 3px;
border: 1px solid $color-chip-border;
padding: 0;
height: 25px;
line-height: 0;
2017-03-07 16:10:13 +00:00
margin: 0 5px 10px 0;
2016-07-07 18:54:16 -07:00
background-color: $color-chip;
color: $color-chip-text;
&:hover {
cursor: pointer;
}
> .chip-text {
display: inline-block;
font-weight: 400;
font-size: 12px;
color: $color-chip-text;
padding: 11px 10px 0 10px;
letter-spacing: 0.7px;
line-height: 0;
}
> i.material-icons {
color: $color-chip-text;
font-size: 13px;
margin: 13px 8px 0 0;
padding: 0;
line-height: 0;
}
}
.chip-action {
@extend .chip;
background-color: $color-white;
&:hover {
cursor: pointer;
}
> .chip-text {
color: $color-chip-text;
}
}