mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-10 18:58:40 +00:00
46 lines
903 B
SCSS
Executable File
46 lines
903 B
SCSS
Executable File
span.tag {
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
padding: 0 6px 0 6px;
|
|
height: 24px;
|
|
font-size: .8rem;
|
|
color: var(--txt-on-bg-c-2);
|
|
background: var(--btn-bg);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
user-select: none;
|
|
|
|
i {
|
|
color: var(--txt-on-bg-c-2);
|
|
margin-right: .5rem;
|
|
}
|
|
}
|
|
|
|
.tag-list {
|
|
display: flex;
|
|
gap: 5px;
|
|
}
|
|
|
|
.infoIcon {
|
|
width: 1rem;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
position: relative;
|
|
cursor: pointer;
|
|
|
|
span {
|
|
font-size: .55rem;
|
|
display: block;
|
|
position: absolute;
|
|
right: -.55rem;
|
|
top: -.35rem;
|
|
width: 1rem;
|
|
height: .8rem;
|
|
line-height: .8rem;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
padding: .1rem .15rem .15rem .15rem;
|
|
color: var(--badge-c);
|
|
background: var(--badge-bg);
|
|
}
|
|
} |