Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 2.1.2
* Changed button color palette

## 2.1.1

* Increase contrast in disabled mini button text
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cspace-input",
"version": "2.1.1",
"version": "2.1.2",
"description": "CollectionSpace input components",
"author": "Ray Lee <ray.lee@lyrasis.org>",
"license": "ECL-2.0",
Expand Down
8 changes: 5 additions & 3 deletions styles/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
@value textLabel: rgb(80, 80, 80);

@value buttonText: rgb(255, 255, 255);
@value buttonBg: #73AA4F;
@value buttonBgActive: #4A7F28;
@value buttonBgDisabled: rgb(220, 220, 220);
@value buttonBg: #003366;
@value buttonBgActive: #336699;
@value buttonBgDisabled: #333333;
@value deleteButtonBg: #660000;
@value deleteButtonBgActive: #990000;
@value miniButtonBgDisabled: rgba(230, 230, 230, .4);

@value inputBg: rgb(255, 255, 255);
Expand Down
Loading