Browse Source

Merge branch 'master' into optimize_docs_fonts

pull/359/head
Mark Otto 11 years ago
parent
commit
9471ad2a3f
  1. 4
      Gruntfile.js
  2. 2
      dist/ratchet.min.css
  3. 8
      docs/components.html
  4. 2
      docs/dist/ratchet.min.css
  5. 5
      package.json

4
Gruntfile.js

@ -83,6 +83,7 @@ module.exports = function(grunt) {
options: { options: {
banner: '', // set to empty; see bellow banner: '', // set to empty; see bellow
keepSpecialComments: '*', // set to '*' because we already add the banner in sass keepSpecialComments: '*', // set to '*' because we already add the banner in sass
noAdvanced: true, // disable advanced optimizations since it causes many issues
report: 'min' report: 'min'
}, },
ratchet: { ratchet: {
@ -90,9 +91,6 @@ module.exports = function(grunt) {
dest: '<%= meta.distPath %><%= pkg.name %>.min.css' dest: '<%= meta.distPath %><%= pkg.name %>.min.css'
}, },
docs: { docs: {
options: {
noAdvanced: true // disable advanced optimizations since it causes code highlighting not to work
},
src: [ src: [
'<%= meta.docsAssetsPath %>css/docs.css', '<%= meta.docsAssetsPath %>css/docs.css',
'<%= meta.docsAssetsPath %>css/pygments-manni.css' '<%= meta.docsAssetsPath %>css/pygments-manni.css'

2
dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

8
docs/components.html

@ -152,7 +152,7 @@ title: Components &middot; Ratchet
</button> </button>
<button class="btn pull-right"> <button class="btn pull-right">
Right Right
</a> </button>
<div class="segmented-control"> <div class="segmented-control">
<a class="control-item active">One</a> <a class="control-item active">One</a>
<a class="control-item">Two</a> <a class="control-item">Two</a>
@ -165,7 +165,7 @@ title: Components &middot; Ratchet
<header class="bar bar-nav"> <header class="bar bar-nav">
<button class="btn pull-left"> <button class="btn pull-left">
Left Left
</a> </button>
<button class="btn pull-right"> <button class="btn pull-right">
Right Right
</button> </button>
@ -750,7 +750,7 @@ title: Components &middot; Ratchet
<button class="btn btn-negative">Button</button> <button class="btn btn-negative">Button</button>
<button class="btn btn-link">Button</button> <button class="btn btn-link">Button</button>
<button class="btn btn-outlined">Button</a> <button class="btn btn-outlined">Button</button>
<button class="btn btn-primary btn-outlined">Button</button> <button class="btn btn-primary btn-outlined">Button</button>
<button class="btn btn-positive btn-outlined">Button</button> <button class="btn btn-positive btn-outlined">Button</button>
<button class="btn btn-negative btn-outlined">Button</button> <button class="btn btn-negative btn-outlined">Button</button>
@ -763,7 +763,7 @@ title: Components &middot; Ratchet
<button class="btn btn-negative">Button</button> <button class="btn btn-negative">Button</button>
<button class="btn btn-link">Button</button> <button class="btn btn-link">Button</button>
<button class="btn btn-outlined">Button</a> <button class="btn btn-outlined">Button</button>
<button class="btn btn-primary btn-outlined">Button</button> <button class="btn btn-primary btn-outlined">Button</button>
<button class="btn btn-positive btn-outlined">Button</button> <button class="btn btn-positive btn-outlined">Button</button>
<button class="btn btn-negative btn-outlined">Button</button> <button class="btn btn-negative btn-outlined">Button</button>

2
docs/dist/ratchet.min.css vendored

File diff suppressed because one or more lines are too long

5
package.json

@ -1,11 +1,12 @@
{ {
"name": "ratchet", "name": "ratchet",
"description": "Build native apps with simple HTML, CSS, and JS components.", "description": "Build mobile apps with simple HTML, CSS, and JS components.",
"version": "2.0.0", "version": "2.0.0",
"keywords": [ "keywords": [
"css", "css",
"ios", "ios",
"native", "android",
"mobile",
"prototype" "prototype"
], ],
"homepage": "http://goratchet.com", "homepage": "http://goratchet.com",

Loading…
Cancel
Save