|
@ -26,7 +26,7 @@ |
|
|
position: relative; |
|
|
position: relative; |
|
|
background-color: @background; |
|
|
background-color: @background; |
|
|
box-shadow: @boxShadow; |
|
|
box-shadow: @boxShadow; |
|
|
margin: @margin 0em; |
|
|
|
|
|
|
|
|
margin: @margin; |
|
|
padding: @padding; |
|
|
padding: @padding; |
|
|
border-radius: @borderRadius; |
|
|
border-radius: @borderRadius; |
|
|
border: @border; |
|
|
border: @border; |
|
@ -56,21 +56,6 @@ |
|
|
border-bottom: none; |
|
|
border-bottom: none; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* Horizontal */ |
|
|
|
|
|
.ui.horizontal.segment, |
|
|
|
|
|
.ui.horizontal.segments > .segment { |
|
|
|
|
|
margin: 0em; |
|
|
|
|
|
padding-top: 0em; |
|
|
|
|
|
padding-bottom: 0em; |
|
|
|
|
|
min-width: 0px; |
|
|
|
|
|
|
|
|
|
|
|
background-color: transparent; |
|
|
|
|
|
border-radius: 0px; |
|
|
|
|
|
border: none; |
|
|
|
|
|
box-shadow: none; |
|
|
|
|
|
border-right: @borderWidth solid @borderColor; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------- |
|
|
/*------------------- |
|
|
Loose Coupling |
|
|
Loose Coupling |
|
@ -106,7 +91,7 @@ |
|
|
padding-bottom: @pageGridMargin; |
|
|
padding-bottom: @pageGridMargin; |
|
|
} |
|
|
} |
|
|
.ui.grid.segment { |
|
|
.ui.grid.segment { |
|
|
margin: @margin 0rem; |
|
|
|
|
|
|
|
|
margin: @margin; |
|
|
border-radius: @borderRadius; |
|
|
border-radius: @borderRadius; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -275,10 +260,13 @@ |
|
|
Groups |
|
|
Groups |
|
|
*******************************/ |
|
|
*******************************/ |
|
|
|
|
|
|
|
|
|
|
|
/* Group */ |
|
|
.ui.segments { |
|
|
.ui.segments { |
|
|
position: relative; |
|
|
position: relative; |
|
|
margin: @margin 0em; |
|
|
|
|
|
box-shadow: @boxShadow; |
|
|
|
|
|
|
|
|
margin: @groupedMargin; |
|
|
|
|
|
border: @groupedBorder; |
|
|
|
|
|
box-shadow: @groupedBoxShadow; |
|
|
|
|
|
border-radius: @groupedBorderRadius; |
|
|
} |
|
|
} |
|
|
.ui.segments:first-child { |
|
|
.ui.segments:first-child { |
|
|
margin-top: 0em; |
|
|
margin-top: 0em; |
|
@ -287,59 +275,90 @@ |
|
|
margin-bottom: 0em; |
|
|
margin-bottom: 0em; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Nested Segment */ |
|
|
.ui.segments > .segment { |
|
|
.ui.segments > .segment { |
|
|
top: 0px; |
|
|
top: 0px; |
|
|
bottom: 0px; |
|
|
bottom: 0px; |
|
|
margin: 0em @attachedHorizontalOffset; |
|
|
|
|
|
width: @attachedWidth; |
|
|
|
|
|
max-width: @attachedWidth; |
|
|
|
|
|
border-radius: 0px; |
|
|
border-radius: 0px; |
|
|
box-shadow: @attachedBoxShadow; |
|
|
|
|
|
border: @attachedBorder; |
|
|
|
|
|
|
|
|
margin: @groupedSegmentMargin; |
|
|
|
|
|
width: @groupedSegmentWidth; |
|
|
|
|
|
box-shadow: @groupedSegmentBoxShadow; |
|
|
|
|
|
border: @groupedSegmentBorder; |
|
|
|
|
|
border-top: @groupedSegmentDivider; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.ui.segments > .segment:not(:last-child) { |
|
|
|
|
|
border-bottom: none; |
|
|
|
|
|
|
|
|
.ui.segments:not(.horizontal) > .segment:first-child { |
|
|
|
|
|
top: @attachedTopOffset; |
|
|
|
|
|
bottom: 0px; |
|
|
|
|
|
border-top: none; |
|
|
|
|
|
margin-top: 0em; |
|
|
|
|
|
bottom: 0px; |
|
|
|
|
|
margin-bottom: 0em; |
|
|
|
|
|
top: @attachedTopOffset; |
|
|
|
|
|
border-radius: @borderRadius @borderRadius 0em 0em; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Bottom */ |
|
|
|
|
|
.ui.segments:not(.horizontal) > .segment:last-child { |
|
|
|
|
|
top: @attachedBottomOffset; |
|
|
|
|
|
bottom: 0px; |
|
|
|
|
|
margin-top: 0em; |
|
|
|
|
|
margin-bottom: 0em; |
|
|
|
|
|
box-shadow: @attachedBottomBoxShadow; |
|
|
|
|
|
border-radius: 0em 0em @borderRadius @borderRadius; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Nested Group */ |
|
|
|
|
|
.ui.segments > .ui.segments { |
|
|
|
|
|
border-top: @groupedSegmentDivider; |
|
|
|
|
|
margin: @nestedGroupMargin; |
|
|
|
|
|
} |
|
|
|
|
|
.ui.segments > .segments:first-child { |
|
|
|
|
|
border-top: none; |
|
|
|
|
|
} |
|
|
|
|
|
.ui.segments > .segment + .segments:not(.horizontal) { |
|
|
|
|
|
margin-top: 0em; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/* Horizontal Group */ |
|
|
/* Horizontal Group */ |
|
|
.ui.horizontal.segments { |
|
|
.ui.horizontal.segments { |
|
|
display: flex; |
|
|
display: flex; |
|
|
flex-direction: row; |
|
|
flex-direction: row; |
|
|
padding: @padding; |
|
|
|
|
|
|
|
|
background-color: transparent; |
|
|
|
|
|
border-radius: 0px; |
|
|
|
|
|
padding: 0em; |
|
|
background-color: @background; |
|
|
background-color: @background; |
|
|
box-shadow: @boxShadow; |
|
|
box-shadow: @boxShadow; |
|
|
margin: @margin 0em; |
|
|
|
|
|
padding: @padding; |
|
|
|
|
|
|
|
|
margin: @margin; |
|
|
border-radius: @borderRadius; |
|
|
border-radius: @borderRadius; |
|
|
border: @border; |
|
|
border: @border; |
|
|
} |
|
|
} |
|
|
.ui.horizontal.segments > .segment:first-child { |
|
|
|
|
|
padding-left: 0px; |
|
|
|
|
|
} |
|
|
|
|
|
.ui.horizontal.segments > .segment:last-child { |
|
|
|
|
|
padding-right: 0px; |
|
|
|
|
|
border-right: none; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Top */ |
|
|
|
|
|
.ui.segments > .segment:first-child { |
|
|
|
|
|
margin-top: 0em; |
|
|
|
|
|
bottom: 0px; |
|
|
|
|
|
margin-bottom: 0em; |
|
|
|
|
|
top: @attachedTopOffset; |
|
|
|
|
|
border-radius: @borderRadius @borderRadius 0em 0em; |
|
|
|
|
|
|
|
|
/* Nested Horizontal Group */ |
|
|
|
|
|
.ui.segments > .horizontal.segments { |
|
|
|
|
|
margin: 0em; |
|
|
|
|
|
background-color: transparent; |
|
|
|
|
|
border-radius: 0px; |
|
|
|
|
|
border: none; |
|
|
|
|
|
box-shadow: none; |
|
|
|
|
|
border-top: @groupedSegmentDivider; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* Bottom */ |
|
|
|
|
|
.ui.segments > .segment:last-child { |
|
|
|
|
|
bottom: 0px; |
|
|
|
|
|
margin-top: 0em; |
|
|
|
|
|
margin-bottom: 0em; |
|
|
|
|
|
top: @attachedBottomOffset; |
|
|
|
|
|
box-shadow: @attachedBottomBoxShadow; |
|
|
|
|
|
border-radius: 0em 0em @borderRadius @borderRadius; |
|
|
|
|
|
|
|
|
/* Horizontal Segment */ |
|
|
|
|
|
.ui.horizontal.segments > .segment { |
|
|
|
|
|
flex: 1 1 auto; |
|
|
|
|
|
margin: 0em; |
|
|
|
|
|
min-width: 0px; |
|
|
|
|
|
background-color: transparent; |
|
|
|
|
|
border-radius: 0px; |
|
|
|
|
|
border: none; |
|
|
|
|
|
box-shadow: none; |
|
|
|
|
|
border-left: @borderWidth solid @borderColor; |
|
|
|
|
|
} |
|
|
|
|
|
.ui.horizontal.segments > .segment:first-child { |
|
|
|
|
|
border-left: none; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -583,11 +602,11 @@ |
|
|
.ui.floated.segment, |
|
|
.ui.floated.segment, |
|
|
.ui[class*="left floated"].segment { |
|
|
.ui[class*="left floated"].segment { |
|
|
float: left; |
|
|
float: left; |
|
|
margin-right: @margin; |
|
|
|
|
|
|
|
|
margin-right: @floatedDistance; |
|
|
} |
|
|
} |
|
|
.ui[class*="right floated"].segment { |
|
|
.ui[class*="right floated"].segment { |
|
|
float: right; |
|
|
float: right; |
|
|
margin-left: @margin; |
|
|
|
|
|
|
|
|
margin-left: @floatedDistance; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|