Browse Source

Comments and style change to sass

pull/214/head
connors 11 years ago
parent
commit
9f079a35da
  1. 1
      Gruntfile.js
  2. 632
      dist/ratchet.css
  3. 4
      lib/sass/base.scss
  4. 4
      lib/sass/buttons.scss
  5. 4
      lib/sass/table-views.scss

1
Gruntfile.js

@ -40,6 +40,7 @@ module.exports = function(grunt) {
sass: { sass: {
options: { options: {
banner: '<%= banner %>', banner: '<%= banner %>',
style: 'expanded',
}, },
dist: { dist: {
files: { files: {

632
dist/ratchet.css vendored

File diff suppressed because it is too large Load Diff

4
lib/sass/base.scss

@ -89,8 +89,8 @@ html {
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
} }
/* Base styles // Base styles
-------------------------------------------------- */ // --------------------------------------------------
body { body {
position: fixed; position: fixed;

4
lib/sass/buttons.scss

@ -84,8 +84,8 @@ button.button-block {
width: 100%; width: 100%;
} }
/* Counts in buttons // Counts in buttons
-------------------------------------------------- */ // --------------------------------------------------
// Generic styles for all counts within buttons // Generic styles for all counts within buttons
[class*="button"] [class*="count"] { [class*="button"] [class*="count"] {

4
lib/sass/table-views.scss

@ -71,14 +71,14 @@
border-top: 1px solid rgba(0, 0, 0, .1); border-top: 1px solid rgba(0, 0, 0, .1);
border-bottom: 1px solid rgba(0, 0, 0, .1); border-bottom: 1px solid rgba(0, 0, 0, .1);
/* Rounding first divider on inset lists and remove border on the top */ // Rounding first divider on inset lists and remove border on the top
&:first-child { &:first-child {
top: 0; top: 0;
border-top-width: 0; border-top-width: 0;
border-radius: 6px 6px 0 0; border-radius: 6px 6px 0 0;
} }
/* Rounding last divider on inset table views */ // Rounding last divider on inset table views
&:last-child { &:last-child {
border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px;
} }

Loading…
Cancel
Save