Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(styles): remove global table leak, move into demo, remove main.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmukler committed Oct 31, 2014
1 parent 43a0d1a commit 52a0a84
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
21 changes: 21 additions & 0 deletions docs/app/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,27 @@ md-toolbar.md-medium-tall {
height: 88px;
}

table {
margin-bottom: 20px;
max-width: 100%;
width: 100%;
border-spacing: 0;
border-collapse: collapse;
background-color: transparent;
}

td,
th {
padding: $baseline-grid ($baseline-grid * 2);
border-top: 1px solid #ddd;
vertical-align: top;
}

th {
border-bottom: 2px solid #ddd;
vertical-align: bottom;
}

.md-sidenav-inner {
background: #fff;
}
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ var config = {
' */\n',
jsBaseFiles: ['src/core/core.js', 'src/core/util/*.js'],
themeBaseFiles: ['src/core/style/color-palette.scss', 'src/core/style/variables.scss', 'src/core/style/mixins.scss'],
scssBaseFiles: ['src/core/style/color-palette.scss', 'src/core/style/variables.scss', 'src/core/style/mixins.scss', 'src/core/style/{structure,layout,table}.scss'],
scssBaseFiles: ['src/core/style/color-palette.scss', 'src/core/style/variables.scss', 'src/core/style/mixins.scss', 'src/core/style/{structure,layout}.scss'],
paths: 'src/{components,services}/**',
outputDir: 'dist/'
};
Expand Down
21 changes: 0 additions & 21 deletions src/core/style/table.scss

This file was deleted.

0 comments on commit 52a0a84

Please sign in to comment.