Move mixins to ui-mixins

This commit is contained in:
Ben Ogle
2013-08-21 16:13:06 -07:00
parent ff6fb2174a
commit 0a77526f24
5 changed files with 7 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
@import "mixins";
@import "ui-mixins";
@import "ui-colors";
.btn-toggle.btn-group {

View File

@@ -1,4 +1,4 @@
@import "mixins";
@import "ui-mixins";
@import "ui-colors";
.list-group .list-group-item { .text(normal); }

View File

@@ -1,4 +1,4 @@
@import "mixins";
@import "ui-mixins";
@import "ui-colors";
.tool-panel {

View File

@@ -1,4 +1,4 @@
@import "mixins";
@import "ui-mixins";
@import "ui-colors";
.selected {

View File

@@ -3,14 +3,17 @@
// Pattern matching; ish is cray.
// http://lesscss.org/#-pattern-matching-and-guard-expressions
.text(normal) {
font-weight: normal;
color: @text-color;
text-shadow: 0 -1px 0 #333;
}
.text(subtle) {
font-weight: normal;
color: @text-color-subtle;
text-shadow: none;
}
.text(highlighted) {
font-weight: normal;
color: @text-color-highlight;
text-shadow: 0 -1px 0 #333;
}