Browse Source

Fixes regression with page grid

Former-commit-id: fec54a9e10
Former-commit-id: 9d443c45fe
pull/258/head
jlukic 11 years ago
parent
commit
bf147840ff
9 changed files with 20 additions and 5 deletions
  1. 5
      RELEASE NOTES.md
  2. 2
      build/less/collections/grid.less
  3. 2
      build/uncompressed/collections/grid.css
  4. 2
      node/package.json
  5. 6
      node/src/documents/index.html.eco
  6. 2
      node/src/files/build/less/collections/grid.less
  7. 2
      node/src/files/build/semantic.zip.REMOVED.git-id
  8. 2
      node/src/files/build/uncompressed/collections/grid.css
  9. 2
      src/collections/grid.less

5
RELEASE NOTES.md

@ -1,5 +1,10 @@
## RELEASE NOTES
### Version 0.3.1- Sep 28, 2013
**Fixes**
- Fixes Page Grid still receiving negative margin
### Version 0.3.0- Sep 28, 2013
**Fixes**

2
build/less/collections/grid.less

@ -104,6 +104,8 @@ body > .ui.grid {
.ui.page.grid {
min-width: 320px;
margin-left: 0%;
margin-right: 0%;
}
@media only screen and (max-width : 998px) {

2
build/uncompressed/collections/grid.css

@ -82,6 +82,8 @@ body > .ui.grid {
-------------------------*/
.ui.page.grid {
min-width: 320px;
margin-left: 0%;
margin-right: 0%;
}
@media only screen and (max-width: 998px) {
.ui.page.grid {

2
node/package.json

@ -1,7 +1,7 @@
{
"semantic": {
"name": "Semantic UI",
"version": "0.3.0"
"version": "0.3.1"
},
"dependencies": {
"docpad": "~6.53.0",

6
node/src/documents/index.html.eco

@ -14,7 +14,7 @@ type : 'Semantic'
<div class="ui page grid">
<div class="column">
<div class="introduction">
<h1 class="ui header">Semantic UI <a class="ui black label" href="https://github.com/jlukic/Semantic-UI/blob/master/RELEASE%20NOTES.md">0.3.0</a></h1>
<h1 class="ui header">Semantic UI <a class="ui black label" href="https://github.com/jlukic/Semantic-UI/blob/master/RELEASE%20NOTES.md">0.3.1</a></h1>
<h2 class="ui header">UI is the vocabulary of the web.</h2>
<p>Semantic empowers designers and developers by creating a language for sharing UI.</p>
<a class="ui black large labeled launch icon button"><i class="icon list layout"></i> View UI</a>
@ -97,8 +97,8 @@ type : 'Semantic'
<div class="column">
<a class="ui teal label" href="/elements/button.html">Semantic</a>
<div class="code" data-type="html">
<div class="ui large red labeled icon button">
<i class="circular heart icon"></i>
<div class="large ui button">
<i class="heart icon"></i>
Like it
</div>
</div>

2
node/src/files/build/less/collections/grid.less

@ -104,6 +104,8 @@ body > .ui.grid {
.ui.page.grid {
min-width: 320px;
margin-left: 0%;
margin-right: 0%;
}
@media only screen and (max-width : 998px) {

2
node/src/files/build/semantic.zip.REMOVED.git-id

@ -1 +1 @@
6fa875f2f25e0e26bdfcc9000626d2196f86233b
91877a58c7abc06e6bd190e490e9916497bc9673

2
node/src/files/build/uncompressed/collections/grid.css

@ -82,6 +82,8 @@ body > .ui.grid {
-------------------------*/
.ui.page.grid {
min-width: 320px;
margin-left: 0%;
margin-right: 0%;
}
@media only screen and (max-width: 998px) {
.ui.page.grid {

2
src/collections/grid.less

@ -104,6 +104,8 @@ body > .ui.grid {
.ui.page.grid {
min-width: 320px;
margin-left: 0%;
margin-right: 0%;
}
@media only screen and (max-width : 998px) {

Loading…
Cancel
Save