share/views/public/plugins/semantic-ui/src/definitions/collections/grid.less in rbbt-rest-1.8.123 vs share/views/public/plugins/semantic-ui/src/definitions/collections/grid.less in rbbt-rest-1.8.126
- old
+ new
@@ -137,11 +137,11 @@
.ui.grid .row + .ui.divider {
flex-grow: 1;
margin: (@rowSpacing / 2) (@gutterWidth / 2);
}
.ui.grid .column + .ui.vertical.divider {
- height: ~"calc(50% - "(@rowSpacing/2)~")";
+ height: calc(50% - (@rowSpacing / 2));
}
/* Remove Border on Last Horizontal Segment */
.ui.grid > .row > .column:last-child > .horizontal.segment,
.ui.grid > .column:last-child > .horizontal.segment {
@@ -1075,11 +1075,11 @@
position: absolute;
content: "";
top: 0em;
left: 0px;
- width: ~"calc(100% - "@gutterWidth~")";
+ width: calc(100% - @gutterWidth);
height: 1px;
margin: 0% (@gutterWidth / 2);
box-shadow: @verticallyDividedBorder;
}
@@ -1110,15 +1110,15 @@
/* Relaxed */
.ui.relaxed[class*="vertically divided"].grid > .row:before {
margin-left: (@relaxedGutterWidth / 2);
margin-right: (@relaxedGutterWidth / 2);
- width: ~"calc(100% - "@relaxedGutterWidth~")";
+ width: calc(100% - @relaxedGutterWidth);
}
.ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
- margin-left: @veryRelaxedGutterWidth;
- margin-right: @veryRelaxedGutterWidth;
- width: ~"calc(100% - "@veryRelaxedGutterWidth~")";
+ margin-left: (@veryRelaxedGutterWidth / 2);
+ margin-right: (@veryRelaxedGutterWidth / 2);
+ width: calc(100% - @veryRelaxedGutterWidth);
}
/*----------------------
Celled
-----------------------*/