Browse Source

ran spellcheck on docs :)

pull/291/head
jlukic 11 years ago
parent
commit
40d9d00134
9 changed files with 18 additions and 18 deletions
  1. 2
      server/documents/collections/grid.html.eco
  2. 10
      server/documents/elements/segment.html.eco
  3. 12
      server/documents/guide/cssguide.html.eco
  4. 2
      server/documents/introduction.html.eco
  5. 2
      server/documents/modules/dropdown.html.eco
  6. 2
      server/documents/modules/form.html.eco
  7. 2
      server/documents/modules/popup.html.eco
  8. 2
      server/documents/project/contributing.html.eco
  9. 2
      spec/modal.commented.js

2
server/documents/collections/grid.html.eco

@ -696,7 +696,7 @@ type : 'UI Collection'
</div>
<div class="column" style="background-color:#F0F0FF;">
<p>This is a very long row with lots of text in it and way more text than the other rows</p>
<p>It might even span for multiplie paragraphs.</p>
<p>It might even span for multiple paragraphs.</p>
</div>
</div>
</div>

10
server/documents/elements/segment.html.eco

@ -137,24 +137,24 @@ type : 'UI Element'
<div class="example">
<h4 class="ui header">Ordinality</h4>
<p>A segment can be formatted to appear more or less noticable</p>
<p>A segment can be formatted to appear more or less noticeable</p>
<div class="ui primary segment">
<p>I'm here to tell you something, and you will probably read me first.</p>
</div>
<div class="ui secondary segment">
<p>I am pretty noticable but you might check out other content before you look at me.</p>
<p>I am pretty noticeable but you might check out other content before you look at me.</p>
</div>
<div class="ui tertiary segment">
<p>If you notice me you must be looking very hard.</p>
</div>
</div>
<div class="another example">
<p>Inverted colors may also be more or less noticable</p>
<p>Inverted colors may also be more or less noticeable</p>
<div class="ui primary inverted segment">
<p>I'm here to tell you something, and you will probably read me first.</p>
</div>
<div class="ui secondary inverted segment">
<p>I am pretty noticable but you might check out other content before you look at me.</p>
<p>I am pretty noticeable but you might check out other content before you look at me.</p>
</div>
<div class="ui tertiary inverted segment">
<p>If you notice me you must be looking very hard.</p>
@ -165,7 +165,7 @@ type : 'UI Element'
<p>I'm here to tell you something, and you will probably read me first.</p>
</div>
<div class="ui secondary inverted red segment">
<p>I am pretty noticable but you might check out other content before you look at me.</p>
<p>I am pretty noticeable but you might check out other content before you look at me.</p>
</div>
<div class="ui tertiary inverted red segment">
<p>If you notice me you must be looking very hard.</p>

12
server/documents/guide/cssguide.html.eco

@ -54,14 +54,14 @@ type : 'UI Guide'
<h3 class="ui header">Not Sure the Size? Table It</h3>
<p>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.</p>
<p>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.</p>
<p>Keep in mind any table-cell element must have a parent with <code>display:table</code> to appear formatted correctly.</p>
<div class="code" data-type="css">
.ui.input {
display: table;
}
/* these two elements will always fill the input exactly regardless of the text content of the button */
/* these two elements will always fill the input exactly regardlesss of the text content of the button */
.ui.input input {
display: table-cell;
}
@ -192,7 +192,7 @@ type : 'UI Guide'
</div>
<h3 class="ui header">Nothing is always Fixed</h3>
<p>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. <b>This will change the offset context to the transformed element instead of the page</b>.
<p>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. <b>This will change the offset context to the transformed element instead of the page</b>.
<p>This behavior may seem unexpected, but using this quirk can allow you to have fixed position content relative to any element in a page.</p>
<div class="code" data-type="css">
.ui.content {
@ -241,7 +241,7 @@ type : 'UI Guide'
</div>
<h3 class="ui header">Consider alternatives to floats</h3>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>To avoid issues with inline-block causing spacing between elements, specify no font size on the group and 1rem on the floated content</p>
<div class="code" data-type="css">
@ -397,7 +397,7 @@ type : 'UI Guide'
</div>
<h3 class="ui header">Avoid non-semantic tags, make wrappers groups</h3>
<p>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.</p>
<p>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.</p>
<p>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 <code>wrapper</code></p>
<div class="code" data-type="css">
/* not tops */
@ -481,7 +481,7 @@ type : 'UI Guide'
.ui.widget {
border: 2px solid rgba(0, 0, 0, 0.1);
}
/* will recieve same border treatment as parent */
/* will receive same border treatment as parent */
.ui.widget .foo {
border: inherit;
}

2
server/documents/introduction.html.eco

@ -44,7 +44,7 @@ type : 'Semantic'
<h2 class="ui header">
Portable and self-contained.
<div class="sub header">Using Semantic doesn't mean adopting an entire framework, or rewriting your codebase</div>
<div class="sub header">Using Semantic doesn't mean adopting an entire framework, or rewriting your code base</div>
</h2>
<p>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.</p>
<p>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.</p>

2
server/documents/modules/dropdown.html.eco

@ -624,7 +624,7 @@ type : 'UI Module'
<tr>
<td>onChange(value, text)</td>
<td>Dropdown</td>
<td>Is called after a dropdown item is selected. Receieves the name and value of selection.</td>
<td>Is called after a dropdown item is selected. receives the name and value of selection.</td>
</tr>
<tr>
<td>onShow</td>

2
server/documents/modules/form.html.eco

@ -248,7 +248,7 @@ type : 'UI Behavior'
</tr>
<tr>
<td>get field(id)</td>
<td>Returns element with maching name, id, or data-validate metadata to ID</td>
<td>Returns element with matching name, id, or data-validate metadata to ID</td>
</tr>
<tr>
<td>get validation(element)</td>

2
server/documents/modules/popup.html.eco

@ -198,7 +198,7 @@ type : 'UI Module'
position : 'top right',
target : '.test.image',
title : 'My favorite dog',
content : 'My favorite dog would like other dogs as much as themself'
content : 'My favorite dog would like other dogs as much as themselves'
})
;
</div>

2
server/documents/project/contributing.html.eco

@ -41,7 +41,7 @@ type : 'Semantic Project'
<p>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.</p>
<div class="ui warning message">When submiting a bug report, please <a href="http://jsfiddle.net/jlukic/Vbr9d/1/">Fork this JSFiddle</a> to create a test-case. It will have Semantic and normalize.css included for you automatically.</div>
<div class="ui warning message">When submitting a bug report, please <a href="http://jsfiddle.net/jlukic/Vbr9d/1/">Fork this JSFiddle</a> to create a test-case. It will have Semantic and normalize.css included for you automatically.</div>
<a class="ui teal button" href="https://github.com/jlukic/Semantic-UI/issues/new"><i class="github icon"></i> Submit a bug report</a>

2
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)
;

Loading…
Cancel
Save