A column can span across multiple grid columns.
diff --git a/node/src/documents/element.html b/node/src/documents/element.html
index 48fdfcf42..41f87d2f9 100755
--- a/node/src/documents/element.html
+++ b/node/src/documents/element.html
@@ -17,23 +17,35 @@ type : 'Library'
Definition
+
UI Elements are single interface elements that do not contain other elements inside themselves.
-
zzzz
+
Elements are often found in groups, so many element definitions include a plural definition.
-
Distinction
+
+
Groups
+
The plural of button is "buttons" a button wrapped inside "buttons" will automatically apply styling appropriate for a group. Also many button variations can be used on plural definitions just like they would be used in singular.
+
For example, in this case each button will be large because we understand it is a part of the large button group
+
+
+
+
+
Types
-
+
-
Button
+
Button
A button indicates a possible user action.
@@ -44,7 +56,7 @@ type : 'Library'
User Favorite
-
Label
+
Label
A button indicates a possible user action.
diff --git a/node/src/files/components/semantic/src/collections/grid.css b/node/src/files/components/semantic/src/collections/grid.css
index a29526e35..674d62aaa 100644
--- a/node/src/files/components/semantic/src/collections/grid.css
+++ b/node/src/files/components/semantic/src/collections/grid.css
@@ -26,7 +26,8 @@
-ms-box-sizing: border-box;
box-sizing: border-box;
}
-.ui.grid:after {
+.ui.grid:after,
+.ui.row:after {
content: ".";
display: block;
height: 0;
diff --git a/node/src/files/stylesheets/semantic.css b/node/src/files/stylesheets/semantic.css
index 56627107c..122d310a5 100755
--- a/node/src/files/stylesheets/semantic.css
+++ b/node/src/files/stylesheets/semantic.css
@@ -564,15 +564,15 @@ box-shadow: 3px 0px 2px rgba(0, 0, 0, 0.2); */
}
#example .highlighted.example .grid .column,
#example .ui.type.items .image .grid .column {
- background-color: #E0E0E0;
- height: 150px;
- -webkit-box-shadow: 0px 0px 0px 1px #FFFFFF;
- -moz-box-shadow: 0px 0px 0px 1px #FFFFFF;
- box-shadow: 0px 0px 0px 1px #FFFFFF;
+ background-color: #F4F4F4;
+ min-height: 100px;
+ -webkit-box-shadow: 0px 0px 0px 1px #E2E2E2;
+ -moz-box-shadow: 0px 0px 0px 1px #E2E2E2;
+ box-shadow: 0px 0px 0px 1px #E2E2E2;
}
#example .highlighted.example .grid .segment,
#example .ui.type.items .image .grid .segment {
- height: 150px;
+ min-height: 100px;
border: 1px solid #DDDDDD;
-webkit-box-shadow: none;
diff --git a/src/collections/grid.css b/src/collections/grid.css
index a29526e35..674d62aaa 100755
--- a/src/collections/grid.css
+++ b/src/collections/grid.css
@@ -26,7 +26,8 @@
-ms-box-sizing: border-box;
box-sizing: border-box;
}
-.ui.grid:after {
+.ui.grid:after,
+.ui.row:after {
content: ".";
display: block;
height: 0;