Skip to content

Commit 3f1aba5

Browse files
authored
Merge pull request #6 from topcoat/resin
Updated to resin
2 parents 92b9715 + c8ca321 commit 3f1aba5

19 files changed

+156
-220
lines changed

.cz-config.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
'use strict';
2+
3+
module.exports = {
4+
5+
types: [
6+
{value: 'feat', name: 'feat: A new feature'},
7+
{value: 'fix', name: 'fix: A bug fix'},
8+
{value: 'docs', name: 'docs: Documentation only changes'},
9+
{value: 'style', name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)'},
10+
{value: 'refactor', name: 'refactor: A code change that neither fixes a bug nor adds a feature'},
11+
{value: 'perf', name: 'perf: A code change that improves performance'},
12+
{value: 'test', name: 'test: Adding missing tests'},
13+
{value: 'chore', name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation'},
14+
{value: 'revert', name: 'revert: Revert to a commit'},
15+
{value: 'WIP', name: 'WIP: Work in progress'}
16+
],
17+
18+
allowBreakingChanges: ['feat', 'fix', 'perf']
19+
20+
};

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test
2+
.*

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
language: node_js
2-
node_js:
3-
- "0.8.23"
4-
before_install:
5-
- "npm install -g mocha"
6-
- "npm install -g grunt-cli"
2+
node_js: "6"
3+
after_success:
4+
- npm run semantic-release

Gruntfile.js

Lines changed: 0 additions & 71 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
21

32
Apache License
43
Version 2.0, January 2004
@@ -200,4 +199,4 @@ Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
200199
distributed under the License is distributed on an "AS IS" BASIS,
201200
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202201
See the License for the specific language governing permissions and
203-
limitations under the License.
202+
limitations under the License.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Button Base
2-
===========
1+
# Topcoat Button Base
32

43
This is the base for all Topcoat buttons.
54
Look at the button file in src to see an example usage of the mixins.

test/expected/button.css renamed to css/button-base.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
}
2323

2424
.button {
25-
-moz-box-sizing: border-box;
2625
box-sizing: border-box;
2726
background-clip: padding-box;
2827
}

css/button.min.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

css/index.css

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
.button {
2+
padding: 0;
3+
margin: 0;
4+
font: inherit;
5+
color: inherit;
6+
background: transparent;
7+
border: none;
8+
}
9+
10+
.button--quiet {
11+
background: transparent;
12+
border: 1px solid transparent;
13+
box-shadow: none;
14+
}
15+
16+
.button {
17+
cursor: default;
18+
user-select: none;
19+
}
20+
21+
.button {
22+
box-sizing: border-box;
23+
background-clip: padding-box;
24+
}
25+
26+
.button {
27+
white-space: nowrap;
28+
overflow: hidden;
29+
}
30+
31+
.button {
32+
position: relative;
33+
display: inline-block;
34+
vertical-align: top;
35+
}
36+
37+
.button {
38+
text-overflow: ellipsis;
39+
}
40+
41+
.button--disabled {
42+
opacity: 0.3;
43+
cursor: default;
44+
pointer-events: none;
45+
}
46+
47+
.button {
48+
text-decoration: none;
49+
}

index.html

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)