You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1258 lines
28 KiB
1258 lines
28 KiB
/*!
|
|
* # Semantic UI - Label
|
|
* http://github.com/semantic-org/semantic-ui/
|
|
*
|
|
*
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
|
|
/*******************************
|
|
Theme
|
|
*******************************/
|
|
|
|
@type : 'element';
|
|
@element : 'label';
|
|
|
|
@import (multiple) '../../theme.config';
|
|
|
|
/*******************************
|
|
Label
|
|
*******************************/
|
|
|
|
.ui.label {
|
|
display: inline-block;
|
|
line-height: 1;
|
|
vertical-align: @verticalAlign;
|
|
|
|
margin: @verticalMargin @horizontalMargin;
|
|
|
|
background-color: @backgroundColor;
|
|
background-image: @backgroundImage;
|
|
padding: @verticalPadding @horizontalPadding;
|
|
color: @color;
|
|
|
|
text-transform: @textTransform;
|
|
font-weight: @fontWeight;
|
|
|
|
border: @border;
|
|
border-radius: @borderRadius;
|
|
transition: @transition;
|
|
}
|
|
|
|
.ui.label:first-child {
|
|
margin-left: 0em;
|
|
}
|
|
.ui.label:last-child {
|
|
margin-right: 0em;
|
|
}
|
|
|
|
/* Link */
|
|
a.ui.label {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Inside Link */
|
|
.ui.label > a {
|
|
cursor: pointer;
|
|
color: inherit;
|
|
opacity: @linkOpacity;
|
|
transition: @linkTransition;
|
|
}
|
|
.ui.label > a:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Image */
|
|
.ui.label > img {
|
|
width: auto !important;
|
|
vertical-align: middle;
|
|
height: @imageHeight !important;
|
|
}
|
|
|
|
/* Icon */
|
|
.ui.label > .icon {
|
|
width: auto;
|
|
margin: 0em @iconDistance 0em 0em;
|
|
}
|
|
|
|
/* Detail */
|
|
.ui.label > .detail {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
font-weight: @detailFontWeight;
|
|
margin-left: @detailMargin;
|
|
opacity: @detailOpacity;
|
|
}
|
|
.ui.label > .detail .icon {
|
|
margin: 0em @detailIconDistance 0em 0em;
|
|
}
|
|
|
|
|
|
/* Removable label */
|
|
.ui.label > .close.icon,
|
|
.ui.label > .delete.icon {
|
|
cursor: pointer;
|
|
margin-right: 0em;
|
|
margin-left: @deleteMargin;
|
|
font-size: @deleteSize;
|
|
opacity: @deleteOpacity;
|
|
transition: @deleteTransition;
|
|
}
|
|
.ui.label > .delete.icon:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
/*-------------------
|
|
Group
|
|
--------------------*/
|
|
|
|
.ui.labels > .label {
|
|
margin: 0em @groupHorizontalMargin @groupVerticalMargin 0em;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Coupling
|
|
--------------------*/
|
|
|
|
.ui.header > .ui.label {
|
|
margin-top: @lineHeightOffset;
|
|
}
|
|
|
|
|
|
/* Remove border radius on attached segment */
|
|
.ui.attached.segment > .ui.top.left.attached.label,
|
|
.ui.bottom.attached.segment > .ui.top.left.attached.label {
|
|
border-top-left-radius: 0;
|
|
}
|
|
.ui.attached.segment > .ui.top.right.attached.label,
|
|
.ui.bottom.attached.segment > .ui.top.right.attached.label {
|
|
border-top-right-radius: 0;
|
|
}
|
|
.ui.top.attached.segment > .ui.bottom.left.attached.label {
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
.ui.top.attached.segment > .ui.bottom.right.attached.label {
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
/* Padding on next content after a label */
|
|
.ui.top.attached.label:first-child + :not(.attached),
|
|
.ui.top.attached.label + [class*="right floated"] + * {
|
|
margin-top: @attachedSegmentPadding !important;
|
|
}
|
|
.ui.bottom.attached.label:first-child ~ :last-child:not(.attached) {
|
|
margin-top: 0em;
|
|
margin-bottom: @attachedSegmentPadding !important;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Types
|
|
*******************************/
|
|
|
|
.ui.image.label {
|
|
width: auto !important;
|
|
margin-top: 0em;
|
|
margin-bottom: 0em;
|
|
max-width: 9999px;
|
|
vertical-align: baseline;
|
|
text-transform: none;
|
|
|
|
background: @imageLabelBackground;
|
|
padding: @imageLabelPadding;
|
|
border-radius: @imageLabelBorderRadius;
|
|
box-shadow: @imageLabelBoxShadow;
|
|
}
|
|
|
|
.ui.image.label img {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
height: @imageLabelImageHeight;
|
|
margin: @imageLabelImageMargin;
|
|
border-radius: @imageLabelImageBorderRadius;
|
|
}
|
|
|
|
.ui.image.label .detail {
|
|
background: @imageLabelDetailBackground;
|
|
margin: @imageLabelDetailMargin;
|
|
padding: @imageLabelDetailPadding;
|
|
border-radius: 0em @imageLabelBorderRadius @imageLabelBorderRadius 0em;
|
|
}
|
|
|
|
/*-------------------
|
|
Tag
|
|
--------------------*/
|
|
|
|
.ui.tag.labels .label,
|
|
.ui.tag.label {
|
|
margin-left: 1em;
|
|
position: relative;
|
|
padding-left: @tagHorizontalPadding;
|
|
padding-right: @tagHorizontalPadding;
|
|
|
|
border-radius: 0em @borderRadius @borderRadius 0em;
|
|
transition: @tagTransition;
|
|
}
|
|
.ui.tag.labels .label:before,
|
|
.ui.tag.label:before {
|
|
position: absolute;
|
|
transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
|
|
|
top: @tagTriangleTopOffset;
|
|
right: @tagTriangleRightOffset;
|
|
content: '';
|
|
|
|
background-color: inherit;
|
|
background-image: @tagTriangleBackgroundImage;
|
|
|
|
width: @tagTriangleSize;
|
|
height: @tagTriangleSize;
|
|
transition: @tagTransition;
|
|
}
|
|
|
|
|
|
.ui.tag.labels .label:after,
|
|
.ui.tag.label:after {
|
|
position: absolute;
|
|
content: '';
|
|
top: 50%;
|
|
left: -(@tagCircleSize / 2);
|
|
|
|
margin-top: -(@tagCircleSize / 2);
|
|
background-color: @tagCircleColor !important;
|
|
width: @tagCircleSize;
|
|
height: @tagCircleSize;
|
|
|
|
box-shadow: @tagCircleBoxShadow;
|
|
border-radius: @circularRadius;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Corner Label
|
|
--------------------*/
|
|
|
|
.ui.corner.label {
|
|
position: absolute;
|
|
top: 0em;
|
|
right: 0em;
|
|
margin: 0em;
|
|
padding: 0em;
|
|
text-align: center;
|
|
|
|
border-color: @backgroundColor;
|
|
|
|
width: @cornerTriangleSize;
|
|
height: @cornerTriangleSize;
|
|
z-index: @cornerTriangleZIndex;
|
|
transition: @cornerTriangleTransition;
|
|
}
|
|
|
|
/* Icon Label */
|
|
.ui.corner.label{
|
|
background-color: transparent !important;
|
|
}
|
|
.ui.corner.label:after {
|
|
position: absolute;
|
|
content: "";
|
|
right: 0em;
|
|
top: 0em;
|
|
z-index: -1;
|
|
|
|
width: 0em;
|
|
height: 0em;
|
|
background-color: transparent !important;
|
|
|
|
border-top: 0em solid transparent;
|
|
border-right: @cornerTriangleSize solid transparent;
|
|
border-bottom: @cornerTriangleSize solid transparent;
|
|
border-left: 0em solid transparent;
|
|
|
|
border-right-color: inherit;
|
|
transition: @cornerTriangleTransition;
|
|
}
|
|
|
|
.ui.corner.label .icon {
|
|
cursor: default;
|
|
position: relative;
|
|
top: @cornerIconTopOffset;
|
|
left: @cornerIconLeftOffset;
|
|
font-size: @cornerIconSize;
|
|
margin: 0em;
|
|
}
|
|
|
|
/* Left Corner */
|
|
.ui.left.corner.label,
|
|
.ui.left.corner.label:after {
|
|
right: auto;
|
|
left: 0em;
|
|
}
|
|
.ui.left.corner.label:after {
|
|
border-top: @cornerTriangleSize solid transparent;
|
|
border-right: @cornerTriangleSize solid transparent;
|
|
border-bottom: 0em solid transparent;
|
|
border-left: 0em solid transparent;
|
|
|
|
border-top-color: inherit;
|
|
}
|
|
.ui.left.corner.label .icon {
|
|
left: -@cornerIconLeftOffset;
|
|
}
|
|
|
|
/* Segment */
|
|
.ui.segment > .ui.corner.label {
|
|
top: -1px;
|
|
right: -1px;
|
|
}
|
|
.ui.segment > .ui.left.corner.label {
|
|
right: auto;
|
|
left: -1px;
|
|
}
|
|
|
|
/*-------------------
|
|
Ribbon
|
|
--------------------*/
|
|
|
|
.ui.ribbon.label {
|
|
position: relative;
|
|
margin: 0em;
|
|
min-width: max-content;
|
|
border-radius: 0em @borderRadius @borderRadius 0em;
|
|
border-color: @ribbonShadowColor;
|
|
}
|
|
|
|
.ui.ribbon.label:after {
|
|
position: absolute;
|
|
content: '';
|
|
|
|
top: 100%;
|
|
left: 0%;
|
|
background-color: transparent !important;
|
|
|
|
border-style: solid;
|
|
border-width: 0em @ribbonTriangleSize @ribbonTriangleSize 0em;
|
|
border-color: transparent;
|
|
border-right-color: inherit;
|
|
|
|
width: 0em;
|
|
height: 0em;
|
|
}
|
|
/* Positioning */
|
|
.ui.ribbon.label {
|
|
left: @ribbonOffset;
|
|
margin-right: -@ribbonTriangleSize;
|
|
padding-left: @ribbonDistance;
|
|
padding-right: @ribbonTriangleSize;
|
|
}
|
|
.ui[class*="right ribbon"].label {
|
|
left: @rightRibbonOffset;
|
|
padding-left: @ribbonTriangleSize;
|
|
padding-right: @ribbonDistance;
|
|
}
|
|
|
|
/* Right Ribbon */
|
|
.ui[class*="right ribbon"].label {
|
|
text-align: left;
|
|
transform: translateX(-100%);
|
|
border-radius: @borderRadius 0em 0em @borderRadius;
|
|
}
|
|
.ui[class*="right ribbon"].label:after {
|
|
left: auto;
|
|
right: 0%;
|
|
|
|
border-style: solid;
|
|
border-width: @ribbonTriangleSize @ribbonTriangleSize 0em 0em;
|
|
border-color: transparent;
|
|
border-top-color: inherit;
|
|
}
|
|
|
|
/* Inside Table */
|
|
.ui.image > .ribbon.label,
|
|
.ui.card .image > .ribbon.label {
|
|
position: absolute;
|
|
top: @ribbonImageTopDistance;
|
|
}
|
|
.ui.card .image > .ui.ribbon.label,
|
|
.ui.image > .ui.ribbon.label {
|
|
left: @ribbonImageOffset;
|
|
}
|
|
.ui.card .image > .ui[class*="right ribbon"].label,
|
|
.ui.image > .ui[class*="right ribbon"].label {
|
|
left: @rightRibbonImageOffset;
|
|
padding-left: @horizontalPadding;
|
|
}
|
|
|
|
/* Inside Table */
|
|
.ui.table td > .ui.ribbon.label {
|
|
left: @ribbonTableOffset;
|
|
}
|
|
.ui.table td > .ui[class*="right ribbon"].label {
|
|
left: @rightRibbonTableOffset;
|
|
padding-left: @horizontalPadding;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Attached
|
|
--------------------*/
|
|
|
|
.ui[class*="top attached"].label,
|
|
.ui.attached.label {
|
|
width: 100%;
|
|
position: absolute;
|
|
margin: 0em;
|
|
top: 0em;
|
|
left: 0em;
|
|
|
|
padding: @attachedVerticalPadding @attachedHorizontalPadding;
|
|
|
|
border-radius: @attachedCornerBorderRadius @attachedCornerBorderRadius 0em 0em;
|
|
}
|
|
.ui[class*="bottom attached"].label {
|
|
top: auto;
|
|
bottom: 0em;
|
|
border-radius: 0em 0em @attachedCornerBorderRadius @attachedCornerBorderRadius;
|
|
}
|
|
|
|
.ui[class*="top left attached"].label {
|
|
width: auto;
|
|
margin-top: 0em !important;
|
|
border-radius: @attachedCornerBorderRadius 0em @attachedBorderRadius 0em;
|
|
}
|
|
|
|
.ui[class*="top right attached"].label {
|
|
width: auto;
|
|
left: auto;
|
|
right: 0em;
|
|
border-radius: 0em @attachedCornerBorderRadius 0em @attachedBorderRadius;
|
|
}
|
|
.ui[class*="bottom left attached"].label {
|
|
width: auto;
|
|
top: auto;
|
|
bottom: 0em;
|
|
border-radius: 0em @attachedBorderRadius 0em @attachedCornerBorderRadius;
|
|
}
|
|
.ui[class*="bottom right attached"].label {
|
|
top: auto;
|
|
bottom: 0em;
|
|
left: auto;
|
|
right: 0em;
|
|
width: auto;
|
|
border-radius: @attachedBorderRadius 0em @attachedCornerBorderRadius 0em;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
States
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Disabled
|
|
--------------------*/
|
|
|
|
.ui.label.disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/*-------------------
|
|
Hover
|
|
--------------------*/
|
|
|
|
a.ui.labels .label:hover,
|
|
a.ui.label:hover {
|
|
background-color: @labelHoverBackgroundColor;
|
|
border-color: @labelHoverBackgroundColor;
|
|
|
|
background-image: @labelHoverBackgroundImage;
|
|
color: @labelHoverTextColor;
|
|
}
|
|
.ui.labels a.label:hover:before,
|
|
a.ui.label:hover:before {
|
|
color: @labelHoverTextColor;
|
|
}
|
|
|
|
/*-------------------
|
|
Active
|
|
--------------------*/
|
|
|
|
.ui.active.label {
|
|
background-color: @labelActiveBackgroundColor;
|
|
border-color: @labelActiveBackgroundColor;
|
|
|
|
background-image: @labelActiveBackgroundImage;
|
|
color: @labelActiveTextColor;
|
|
}
|
|
.ui.active.label:before {
|
|
background-color: @labelActiveBackgroundColor;
|
|
background-image: @labelActiveBackgroundImage;
|
|
color: @labelActiveTextColor;
|
|
}
|
|
|
|
/*-------------------
|
|
Active Hover
|
|
--------------------*/
|
|
|
|
a.ui.labels .active.label:hover,
|
|
a.ui.active.label:hover {
|
|
background-color: @labelActiveHoverBackgroundColor;
|
|
border-color: @labelActiveHoverBackgroundColor;
|
|
|
|
background-image: @labelActiveHoverBackgroundImage;
|
|
color: @labelActiveHoverTextColor;
|
|
}
|
|
.ui.labels a.active.label:ActiveHover:before,
|
|
a.ui.active.label:ActiveHover:before {
|
|
background-color: @labelActiveHoverBackgroundColor;
|
|
background-image: @labelActiveHoverBackgroundImage;
|
|
color: @labelActiveHoverTextColor;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Visible
|
|
--------------------*/
|
|
|
|
.ui.labels.visible .label,
|
|
.ui.label.visible:not(.dropdown) {
|
|
display: inline-block !important;
|
|
}
|
|
|
|
/*-------------------
|
|
Hidden
|
|
--------------------*/
|
|
|
|
.ui.labels.hidden .label,
|
|
.ui.label.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
|
|
|
|
/*-------------------
|
|
Colors
|
|
--------------------*/
|
|
|
|
/*--- Red ---*/
|
|
.ui.red.labels .label,
|
|
.ui.red.label {
|
|
background-color: @red !important;
|
|
border-color: @red !important;
|
|
color: @redTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.red.labels .label:hover,
|
|
a.ui.red.label:hover{
|
|
background-color: @redHover !important;
|
|
border-color: @redHover !important;
|
|
color: @redHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.red.corner.label,
|
|
.ui.red.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.red.ribbon.label {
|
|
border-color: @redRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.red.label {
|
|
background-color: @basicBackground !important;
|
|
color: @red !important;
|
|
border-color: @red !important;
|
|
}
|
|
.ui.basic.red.labels a.label:hover,
|
|
a.ui.basic.red.label:hover {
|
|
background-color: @white !important;
|
|
color: @redHover !important;
|
|
border-color: @redHover !important;
|
|
}
|
|
|
|
/*--- Orange ---*/
|
|
.ui.orange.labels .label,
|
|
.ui.orange.label {
|
|
background-color: @orange !important;
|
|
border-color: @orange !important;
|
|
color: @orangeTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.orange.labels .label:hover,
|
|
a.ui.orange.label:hover{
|
|
background-color: @orangeHover !important;
|
|
border-color: @orangeHover !important;
|
|
color: @orangeHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.orange.corner.label,
|
|
.ui.orange.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.orange.ribbon.label {
|
|
border-color: @orangeRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.orange.label {
|
|
background-color: @basicBackground !important;
|
|
color: @orange !important;
|
|
border-color: @orange !important;
|
|
}
|
|
.ui.basic.orange.labels a.label:hover,
|
|
a.ui.basic.orange.label:hover {
|
|
background-color: @white !important;
|
|
color: @orangeHover !important;
|
|
border-color: @orangeHover !important;
|
|
}
|
|
|
|
/*--- Yellow ---*/
|
|
.ui.yellow.labels .label,
|
|
.ui.yellow.label {
|
|
background-color: @yellow !important;
|
|
border-color: @yellow !important;
|
|
color: @yellowTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.yellow.labels .label:hover,
|
|
a.ui.yellow.label:hover{
|
|
background-color: @yellowHover !important;
|
|
border-color: @yellowHover !important;
|
|
color: @yellowHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.yellow.corner.label,
|
|
.ui.yellow.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.yellow.ribbon.label {
|
|
border-color: @yellowRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.yellow.label {
|
|
background-color: @basicBackground !important;
|
|
color: @yellow !important;
|
|
border-color: @yellow !important;
|
|
}
|
|
.ui.basic.yellow.labels a.label:hover,
|
|
a.ui.basic.yellow.label:hover {
|
|
background-color: @white !important;
|
|
color: @yellowHover !important;
|
|
border-color: @yellowHover !important;
|
|
}
|
|
|
|
/*--- Olive ---*/
|
|
.ui.olive.labels .label,
|
|
.ui.olive.label {
|
|
background-color: @olive !important;
|
|
border-color: @olive !important;
|
|
color: @oliveTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.olive.labels .label:hover,
|
|
a.ui.olive.label:hover{
|
|
background-color: @oliveHover !important;
|
|
border-color: @oliveHover !important;
|
|
color: @oliveHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.olive.corner.label,
|
|
.ui.olive.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.olive.ribbon.label {
|
|
border-color: @greenRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.olive.label {
|
|
background-color: @basicBackground !important;
|
|
color: @olive !important;
|
|
border-color: @olive !important;
|
|
}
|
|
.ui.basic.olive.labels a.label:hover,
|
|
a.ui.basic.olive.label:hover {
|
|
background-color: @white !important;
|
|
color: @oliveHover !important;
|
|
border-color: @oliveHover !important;
|
|
}
|
|
|
|
/*--- Green ---*/
|
|
.ui.green.labels .label,
|
|
.ui.green.label {
|
|
background-color: @green !important;
|
|
border-color: @green !important;
|
|
color: @greenTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.green.labels .label:hover,
|
|
a.ui.green.label:hover{
|
|
background-color: @greenHover !important;
|
|
border-color: @greenHover !important;
|
|
color: @greenHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.green.corner.label,
|
|
.ui.green.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.green.ribbon.label {
|
|
border-color: @greenRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.green.label {
|
|
background-color: @basicBackground !important;
|
|
color: @green !important;
|
|
border-color: @green !important;
|
|
}
|
|
.ui.basic.green.labels a.label:hover,
|
|
a.ui.basic.green.label:hover {
|
|
background-color: @white !important;
|
|
color: @greenHover !important;
|
|
border-color: @greenHover !important;
|
|
}
|
|
|
|
/*--- Teal ---*/
|
|
.ui.teal.labels .label,
|
|
.ui.teal.label {
|
|
background-color: @teal !important;
|
|
border-color: @teal !important;
|
|
color: @tealTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.teal.labels .label:hover,
|
|
a.ui.teal.label:hover{
|
|
background-color: @tealHover !important;
|
|
border-color: @tealHover !important;
|
|
color: @tealHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.teal.corner.label,
|
|
.ui.teal.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.teal.ribbon.label {
|
|
border-color: @tealRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.teal.label {
|
|
background-color: @basicBackground !important;
|
|
color: @teal !important;
|
|
border-color: @teal !important;
|
|
}
|
|
.ui.basic.teal.labels a.label:hover,
|
|
a.ui.basic.teal.label:hover {
|
|
background-color: @white !important;
|
|
color: @tealHover !important;
|
|
border-color: @tealHover !important;
|
|
}
|
|
|
|
/*--- Blue ---*/
|
|
.ui.blue.labels .label,
|
|
.ui.blue.label {
|
|
background-color: @blue !important;
|
|
border-color: @blue !important;
|
|
color: @blueTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.blue.labels .label:hover,
|
|
a.ui.blue.label:hover{
|
|
background-color: @blueHover !important;
|
|
border-color: @blueHover !important;
|
|
color: @blueHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.blue.corner.label,
|
|
.ui.blue.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.blue.ribbon.label {
|
|
border-color: @blueRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.blue.label {
|
|
background-color: @basicBackground !important;
|
|
color: @blue !important;
|
|
border-color: @blue !important;
|
|
}
|
|
.ui.basic.blue.labels a.label:hover,
|
|
a.ui.basic.blue.label:hover {
|
|
background-color: @white !important;
|
|
color: @blueHover !important;
|
|
border-color: @blueHover !important;
|
|
}
|
|
|
|
/*--- Violet ---*/
|
|
.ui.violet.labels .label,
|
|
.ui.violet.label {
|
|
background-color: @violet !important;
|
|
border-color: @violet !important;
|
|
color: @violetTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.violet.labels .label:hover,
|
|
a.ui.violet.label:hover{
|
|
background-color: @violetHover !important;
|
|
border-color: @violetHover !important;
|
|
color: @violetHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.violet.corner.label,
|
|
.ui.violet.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.violet.ribbon.label {
|
|
border-color: @violetRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.violet.label {
|
|
background-color: @basicBackground !important;
|
|
color: @violet !important;
|
|
border-color: @violet !important;
|
|
}
|
|
.ui.basic.violet.labels a.label:hover,
|
|
a.ui.basic.violet.label:hover {
|
|
background-color: @white !important;
|
|
color: @violetHover !important;
|
|
border-color: @violetHover !important;
|
|
}
|
|
|
|
/*--- Purple ---*/
|
|
.ui.purple.labels .label,
|
|
.ui.purple.label {
|
|
background-color: @purple !important;
|
|
border-color: @purple !important;
|
|
color: @purpleTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.purple.labels .label:hover,
|
|
a.ui.purple.label:hover{
|
|
background-color: @purpleHover !important;
|
|
border-color: @purpleHover !important;
|
|
color: @purpleHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.purple.corner.label,
|
|
.ui.purple.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.purple.ribbon.label {
|
|
border-color: @purpleRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.purple.label {
|
|
background-color: @basicBackground !important;
|
|
color: @purple !important;
|
|
border-color: @purple !important;
|
|
}
|
|
.ui.basic.purple.labels a.label:hover,
|
|
a.ui.basic.purple.label:hover {
|
|
background-color: @white !important;
|
|
color: @purpleHover !important;
|
|
border-color: @purpleHover !important;
|
|
}
|
|
|
|
/*--- Pink ---*/
|
|
.ui.pink.labels .label,
|
|
.ui.pink.label {
|
|
background-color: @pink !important;
|
|
border-color: @pink !important;
|
|
color: @pinkTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.pink.labels .label:hover,
|
|
a.ui.pink.label:hover{
|
|
background-color: @pinkHover !important;
|
|
border-color: @pinkHover !important;
|
|
color: @pinkHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.pink.corner.label,
|
|
.ui.pink.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.pink.ribbon.label {
|
|
border-color: @pinkRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.pink.label {
|
|
background-color: @basicBackground !important;
|
|
color: @pink !important;
|
|
border-color: @pink !important;
|
|
}
|
|
.ui.basic.pink.labels a.label:hover,
|
|
a.ui.basic.pink.label:hover {
|
|
background-color: @white !important;
|
|
color: @pinkHover !important;
|
|
border-color: @pinkHover !important;
|
|
}
|
|
|
|
/*--- Brown ---*/
|
|
.ui.brown.labels .label,
|
|
.ui.brown.label {
|
|
background-color: @brown !important;
|
|
border-color: @brown !important;
|
|
color: @brownTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.brown.labels .label:hover,
|
|
a.ui.brown.label:hover{
|
|
background-color: @brownHover !important;
|
|
border-color: @brownHover !important;
|
|
color: @brownHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.brown.corner.label,
|
|
.ui.brown.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.brown.ribbon.label {
|
|
border-color: @brownRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.brown.label {
|
|
background-color: @basicBackground !important;
|
|
color: @brown !important;
|
|
border-color: @brown !important;
|
|
}
|
|
.ui.basic.brown.labels a.label:hover,
|
|
a.ui.basic.brown.label:hover {
|
|
background-color: @white !important;
|
|
color: @brownHover !important;
|
|
border-color: @brownHover !important;
|
|
}
|
|
|
|
/*--- Grey ---*/
|
|
.ui.grey.labels .label,
|
|
.ui.grey.label {
|
|
background-color: @grey !important;
|
|
border-color: @grey !important;
|
|
color: @greyTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.grey.labels .label:hover,
|
|
a.ui.grey.label:hover{
|
|
background-color: @greyHover !important;
|
|
border-color: @greyHover !important;
|
|
color: @greyHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.grey.corner.label,
|
|
.ui.grey.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.grey.ribbon.label {
|
|
border-color: @brownRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.grey.label {
|
|
background-color: @basicBackground !important;
|
|
color: @grey !important;
|
|
border-color: @grey !important;
|
|
}
|
|
.ui.basic.grey.labels a.label:hover,
|
|
a.ui.basic.grey.label:hover {
|
|
background-color: @white !important;
|
|
color: @greyHover !important;
|
|
border-color: @greyHover !important;
|
|
}
|
|
|
|
/*--- Black ---*/
|
|
.ui.black.labels .label,
|
|
.ui.black.label {
|
|
background-color: @black !important;
|
|
border-color: @black !important;
|
|
color: @blackTextColor !important;
|
|
}
|
|
/* Link */
|
|
.ui.black.labels .label:hover,
|
|
a.ui.black.label:hover{
|
|
background-color: @blackHover !important;
|
|
border-color: @blackHover !important;
|
|
color: @blackHoverTextColor !important;
|
|
}
|
|
/* Corner */
|
|
.ui.black.corner.label,
|
|
.ui.black.corner.label:hover {
|
|
background-color: transparent !important;
|
|
}
|
|
/* Ribbon */
|
|
.ui.black.ribbon.label {
|
|
border-color: @brownRibbonShadow !important;
|
|
}
|
|
/* Basic */
|
|
.ui.basic.black.label {
|
|
background-color: @basicBackground !important;
|
|
color: @black !important;
|
|
border-color: @black !important;
|
|
}
|
|
.ui.basic.black.labels a.label:hover,
|
|
a.ui.basic.black.label:hover {
|
|
background-color: @white !important;
|
|
color: @blackHover !important;
|
|
border-color: @blackHover !important;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Basic
|
|
--------------------*/
|
|
|
|
.ui.basic.label {
|
|
background: @basicBackground;
|
|
border: @basicBorder;
|
|
color: @basicColor;
|
|
box-shadow: @basicBoxShadow;
|
|
}
|
|
|
|
/* Link */
|
|
a.ui.basic.label:hover {
|
|
text-decoration: none;
|
|
background: @basicHoverBackground;
|
|
color: @basicHoverColor;
|
|
box-shadow: @basicHoverBorder;
|
|
box-shadow: @basicHoverBoxShadow;
|
|
}
|
|
|
|
/* Pointing */
|
|
.ui.basic.pointing.label:before {
|
|
border-color: inherit;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Fluid
|
|
--------------------*/
|
|
|
|
.ui.label.fluid,
|
|
.ui.fluid.labels > .label {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/*-------------------
|
|
Inverted
|
|
--------------------*/
|
|
|
|
.ui.inverted.labels .label,
|
|
.ui.inverted.label {
|
|
color: @invertedTextColor !important;
|
|
}
|
|
|
|
/*-------------------
|
|
Horizontal
|
|
--------------------*/
|
|
|
|
.ui.horizontal.labels .label,
|
|
.ui.horizontal.label {
|
|
margin: 0em @horizontalLabelMargin 0em 0em;
|
|
|
|
padding: @horizontalLabelVerticalPadding @horizontalPadding;
|
|
min-width: @horizontalLabelMinWidth;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
/*-------------------
|
|
Circular
|
|
--------------------*/
|
|
|
|
.ui.circular.labels .label,
|
|
.ui.circular.label {
|
|
min-width: @circularMinSize;
|
|
min-height: @circularMinSize;
|
|
|
|
padding: @circularPadding !important;
|
|
|
|
line-height: 1em;
|
|
text-align: center;
|
|
border-radius: @circularRadius;
|
|
}
|
|
.ui.empty.circular.labels .label,
|
|
.ui.empty.circular.label {
|
|
min-width: 0em;
|
|
min-height: 0em;
|
|
overflow: hidden;
|
|
width: @emptyCircleSize;
|
|
height: @emptyCircleSize;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
/*-------------------
|
|
Pointing
|
|
--------------------*/
|
|
|
|
.ui.pointing.label {
|
|
position: relative;
|
|
}
|
|
|
|
.ui.attached.pointing.label {
|
|
position: absolute;
|
|
}
|
|
|
|
.ui.pointing.label:before {
|
|
background-color: inherit;
|
|
background-image: inherit;
|
|
border-width: none;
|
|
border-style: solid;
|
|
border-color: @pointingBorderColor;
|
|
}
|
|
/* Arrow */
|
|
.ui.pointing.label:before {
|
|
position: absolute;
|
|
content: '';
|
|
transform: rotate(45deg);
|
|
background-image: none;
|
|
|
|
z-index: @pointingTriangleZIndex;
|
|
width: @pointingTriangleSize;
|
|
height: @pointingTriangleSize;
|
|
transition: @pointingTriangleTransition;
|
|
}
|
|
|
|
/*--- Above ---*/
|
|
.ui.pointing.label,
|
|
.ui[class*="pointing above"].label {
|
|
margin-top: @pointingVerticalDistance;
|
|
}
|
|
.ui.pointing.label:before,
|
|
.ui[class*="pointing above"].label:before {
|
|
border-width: @borderWidth 0px 0px @borderWidth;
|
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
top: 0%;
|
|
left: 50%;
|
|
}
|
|
/*--- Below ---*/
|
|
.ui[class*="bottom pointing"].label,
|
|
.ui[class*="pointing below"].label {
|
|
margin-top: 0em;
|
|
margin-bottom: @pointingVerticalDistance;
|
|
}
|
|
.ui[class*="bottom pointing"].label:before,
|
|
.ui[class*="pointing below"].label:before {
|
|
border-width: 0px @borderWidth @borderWidth 0px;
|
|
top: auto;
|
|
right: auto;
|
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
top: 100%;
|
|
left: 50%;
|
|
}
|
|
/*--- Left ---*/
|
|
.ui[class*="left pointing"].label {
|
|
margin-top: 0em;
|
|
margin-left: @pointingHorizontalDistance;
|
|
}
|
|
.ui[class*="left pointing"].label:before {
|
|
border-width: 0px 0px @borderWidth @borderWidth;
|
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
bottom: auto;
|
|
right: auto;
|
|
top: 50%;
|
|
left: 0em;
|
|
}
|
|
/*--- Right ---*/
|
|
.ui[class*="right pointing"].label {
|
|
margin-top: 0em;
|
|
margin-right: @pointingHorizontalDistance;
|
|
}
|
|
.ui[class*="right pointing"].label:before {
|
|
border-width: @borderWidth @borderWidth 0px 0px;
|
|
transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
top: 50%;
|
|
right: 0%;
|
|
bottom: auto;
|
|
left: auto;
|
|
}
|
|
|
|
/* Basic Pointing */
|
|
|
|
/*--- Above ---*/
|
|
.ui.basic.pointing.label:before,
|
|
.ui.basic[class*="pointing above"].label:before {
|
|
margin-top: @basicPointingTriangleOffset;
|
|
}
|
|
/*--- Below ---*/
|
|
.ui.basic[class*="bottom pointing"].label:before,
|
|
.ui.basic[class*="pointing below"].label:before {
|
|
bottom: auto;
|
|
top: 100%;
|
|
margin-top: -@basicPointingTriangleOffset;
|
|
}
|
|
/*--- Left ---*/
|
|
.ui.basic[class*="left pointing"].label:before {
|
|
top: 50%;
|
|
left: @basicPointingTriangleOffset;
|
|
}
|
|
/*--- Right ---*/
|
|
.ui.basic[class*="right pointing"].label:before {
|
|
top: 50%;
|
|
right: @basicPointingTriangleOffset;
|
|
}
|
|
|
|
|
|
/*------------------
|
|
Floating Label
|
|
-------------------*/
|
|
|
|
.ui.floating.label {
|
|
position: absolute;
|
|
z-index: @floatingZIndex;
|
|
top: @floatingTopOffset;
|
|
left: 100%;
|
|
margin: 0em 0em 0em @floatingLeftOffset !important;
|
|
}
|
|
|
|
/*-------------------
|
|
Sizes
|
|
--------------------*/
|
|
|
|
.ui.mini.labels .label,
|
|
.ui.mini.label {
|
|
font-size: @mini;
|
|
}
|
|
.ui.tiny.labels .label,
|
|
.ui.tiny.label {
|
|
font-size: @tiny;
|
|
}
|
|
.ui.small.labels .label,
|
|
.ui.small.label {
|
|
font-size: @small;
|
|
}
|
|
.ui.labels .label,
|
|
.ui.label {
|
|
font-size: @medium;
|
|
}
|
|
.ui.large.labels .label,
|
|
.ui.large.label {
|
|
font-size: @large;
|
|
}
|
|
.ui.big.labels .label,
|
|
.ui.big.label {
|
|
font-size: @big;
|
|
}
|
|
.ui.huge.labels .label,
|
|
.ui.huge.label {
|
|
font-size: @huge;
|
|
}
|
|
.ui.massive.labels .label,
|
|
.ui.massive.label {
|
|
font-size: @massive;
|
|
}
|
|
|
|
.loadUIOverrides();
|