diff --git a/server/documents/collections/grid.html.eco b/server/documents/collections/grid.html.eco index 77de2f87c..613f0bc79 100755 --- a/server/documents/collections/grid.html.eco +++ b/server/documents/collections/grid.html.eco @@ -696,7 +696,7 @@ type : 'UI Collection'
This is a very long row with lots of text in it and way more text than the other rows
-It might even span for multiplie paragraphs.
+It might even span for multiple paragraphs.
A segment can be formatted to appear more or less noticable
+A segment can be formatted to appear more or less noticeable
I'm here to tell you something, and you will probably read me first.
I am pretty noticable but you might check out other content before you look at me.
+I am pretty noticeable but you might check out other content before you look at me.
If you notice me you must be looking very hard.
Inverted colors may also be more or less noticable
+Inverted colors may also be more or less noticeable
I'm here to tell you something, and you will probably read me first.
I am pretty noticable but you might check out other content before you look at me.
+I am pretty noticeable but you might check out other content before you look at me.
If you notice me you must be looking very hard.
@@ -165,7 +165,7 @@ type : 'UI Element'I'm here to tell you something, and you will probably read me first.
I am pretty noticable but you might check out other content before you look at me.
+I am pretty noticeable but you might check out other content before you look at me.
If you notice me you must be looking very hard.
diff --git a/server/documents/guide/cssguide.html.eco b/server/documents/guide/cssguide.html.eco index 2989c6b81..4a60cecc9 100755 --- a/server/documents/guide/cssguide.html.eco +++ b/server/documents/guide/cssguide.html.eco @@ -54,14 +54,14 @@ type : 'UI Guide'If content needs to fill a specified size exactly, but may be made up of parts with arbitary size, it can be useful to use display table and table-cell. This will make sure the parent width is always obeyed regardles of alterations to an element's width.
+If content needs to fill a specified size exactly, but may be made up of parts with arbitrary size, it can be useful to use display table and table-cell. This will make sure the parent width is always obeyed regardless of alterations to an element's width.
Keep in mind any table-cell element must have a parent with display:table
to appear formatted correctly.
CSS fixed allows you to have content stick to an offset position in a page regardless of the scroll position of the page. Fixed menus will use the page as the offset parent, in all circumstances except when css transform is used on a parent element. This will change the offset context to the transformed element instead of the page. +
CSS fixed allows you to have content stick to an offset position in a page regardlesss of the scroll position of the page. Fixed menus will use the page as the offset parent, in all circumstances except when css transform is used on a parent element. This will change the offset context to the transformed element instead of the page.
This behavior may seem unexpected, but using this quirk can allow you to have fixed position content relative to any element in a page.
CSS floats can create issues with the containing element not receiving the size of its children. Using overflow:hidden to clear floats means that no peice of an element can be shown outside the bounding box of the element, which limits the possibilities in an element. Clearfixes can use up one of two available pseudo class which can often be useful for styling elements.
+CSS floats can create issues with the containing element not receiving the size of its children. Using overflow:hidden to clear floats means that no piece of an element can be shown outside the bounding box of the element, which limits the possibilities in an element. Clearfixes can use up one of two available pseudo class which can often be useful for styling elements.
Consider using another means of putting content side by side like inline-block or table-cell. These provide more freedom than floated block elements, and can add additional benefits.
To avoid issues with inline-block causing spacing between elements, specify no font size on the group and 1rem on the floated content
UI elements should be designed to include the minimum footprint of an element. If extra styling is needed, consider using pseudo selectors :after and :before. This allows for the creation of two extra divs inside each div context which can almost always be enough to accomodate extra styling.
+UI elements should be designed to include the minimum footprint of an element. If extra styling is needed, consider using pseudo selectors :after and :before. This allows for the creation of two extra divs inside each div context which can almost always be enough to accommodate extra styling.
If there is no other option than wrapping content in a containing HTML element, consider using a singular/plural relationship by having the wrapper describe its contents instead of an arbitrary class name like wrapper
Semantic components are written in a singular style, but are not part of mandated overarching library. Only like a couple components? No problem, use only what you need.
UI components in Semantic also define optional and required couplings with other components where their usage intersect. That means for example, a popup can check for the existence of CSS animation component before using the fallback javascript animations.
diff --git a/server/documents/modules/dropdown.html.eco b/server/documents/modules/dropdown.html.eco index 9b8268b66..3751bdd80 100755 --- a/server/documents/modules/dropdown.html.eco +++ b/server/documents/modules/dropdown.html.eco @@ -624,7 +624,7 @@ type : 'UI Module'Be sure to include a set of steps to reproduce the issue and any related information, browser, OS etc. If we can't see the issue then it will make solving things much more difficult.
- + Submit a bug report diff --git a/spec/modal.commented.js b/spec/modal.commented.js index 60b281322..1a14d44b0 100755 --- a/spec/modal.commented.js +++ b/spec/modal.commented.js @@ -117,7 +117,7 @@ $.fn.modal = function(parameters) { module.verbose('Storing instance of modal'); // Immediately define possibly undefined instance instance = module; - // Store new refrence in metadata + // Store new reference in metadata $module .data(moduleNamespace, instance) ;