Skip to content

Commit

Permalink
# This is a combination of 15 commits.
Browse files Browse the repository at this point in the history
# The first commit's message is:
(848---simplified-checkbox-fix) fixes issue #848 where checkbox breaks from rapid clicking

# This is the 2nd commit message:

Tree: Hide chervron for folder that doesn't have children #860

Selected background changed

Selected background changed

# This is the 3rd commit message:

release 3.3.1

# This is the 4th commit message:

(890---checkbox-not-clickable) fixed issue #890 and added appropriate unit tests

# This is the 5th commit message:

(893---grunt-serve-fast-not-watching) added watch:contrib to servefast to keep it from shutting down immediately

# This is the 6th commit message:

repeater-thumbnail-justify: fixes ExactTarget#851 by coming up with an alternate justify solution

repeater-thumbnail-justify: fix to 'thumbnail_setSelectedItems' after making justify changes, which also makes unit tests pass

repeater-thumbnail-justify: yet another minor fix because lint yells about something dumb

repeater-thumbnail-justified: minor touchups after review

repeater-thumbnail-justified: additional function name improvements

repeater-thumbnail-justified: converted to thumbnail_alignment option instead so now center / justify / left / right (as well as 'none' or false) is supported

repeater-thumbnail-justified: added unit tests. also added "spacer" class to injected spans

repeater-thumbnail-justified: added default font-size for thumbnail

# This is the 7th commit message:

repeater-default-filter: Fixes #899 by making the default filter an object closely resembling what would be passed back by the selectlist if it were there

# This is the 8th commit message:

repeater-render-dataparams: Fixes #895 by allowing repeater render method to be passed dataSourceOptions which are then applied on top of whatever would be passed to the dataSource normally

# This is the 9th commit message:

(890---checkbox-not-clickable) fixed checkbox firing twice in Chrome

# This is the 10th commit message:

(890---checkbox-not-clickable) removed Paul Irish and added Dave Woodward

# This is the 11th commit message:

repeater-persisting-dataopts: Fixes #902 by allowing the repeater to preserve custom dataSource options

# This is the 12th commit message:

repeater-persisting-dataopts: minor modification to logic, preserves previously preserved dataSourceOptions instead of nuking them

# This is the 13th commit message:

updating dist

# This is the 14th commit message:

Utilizing less to make file more readable

# This is the 15th commit message:

Utilizing less to make file more readable
  • Loading branch information
cmcculloh authored and BenjaminNeilDavis committed Dec 5, 2014
1 parent bdc6eff commit 9411c2f
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
7 changes: 7 additions & 0 deletions less/mixins.less
Expand Up @@ -103,4 +103,11 @@
margin: 0 0 10px;
padding: 0;
text-shadow: 0 1px #fff;
}

.text-emphasis-variant(@color) {
color: @color;
a&:hover {
color: darken(@color, 10%);
}
}
36 changes: 36 additions & 0 deletions less/utility.less
Expand Up @@ -11,6 +11,42 @@
margin: 0;
}

.text-sm {
font-size: @fontSizeSmall;
}
.text-lg {
font-size: @fontSizeLarge;
}

h1, .h1 { font-size: @font-size-h1; }
h2, .h2 { font-size: @font-size-h2; }
h3, .h3 { font-size: @font-size-h3; }
h4, .h4 { font-size: @font-size-h4; }
h5, .h5 { font-size: @font-size-h5; }
h6, .h6 { font-size: @font-size-h6; }

.text-dimmed {
.text-emphasis-variant(@text-dimmed);
}
.text-muted {
.text-emphasis-variant(@text-muted);
}
.text-primary {
.text-emphasis-variant(@textColor);
}
.text-success {
.text-emphasis-variant(@text-success);
}
.text-info {
.text-emphasis-variant(@text-info);
}
.text-warning {
.text-emphasis-variant(@text-warning);
}
.text-danger {
.text-emphasis-variant(@text-danger);
}

// Padding
// -------------------------
.padding {
Expand Down
10 changes: 9 additions & 1 deletion less/variables.less
Expand Up @@ -6,7 +6,6 @@
// Global values
// --------------------------------------------------


// Grays
// -------------------------
@black: #000;
Expand All @@ -29,6 +28,15 @@
@pink: #c3325f;
@purple: #7a43b6;

// Text Colors
// -------------------------
@text-primary: #428bca;
@text-success: #3c763d;
@text-info: #31708f;
@text-warning: #8a6d3b;
@text-danger: #a94442;
@text-dimmed: #666666;
@text-muted: #999999;

// Scaffolding
// -------------------------
Expand Down

0 comments on commit 9411c2f

Please sign in to comment.