From c1a44b5a5c54a63970d123ce8613acec3c88ff39 Mon Sep 17 00:00:00 2001 From: jlukic Date: Fri, 7 Nov 2014 15:08:55 -0500 Subject: [PATCH] Fix missing variables in input, updates bower.json --- bower.json | 6 +----- src/definitions/elements/input.less | 14 +++++++------- src/themes/default/elements/list.variables | 2 +- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/bower.json b/bower.json index 32c84a1d7..a72d35e56 100755 --- a/bower.json +++ b/bower.json @@ -2,10 +2,6 @@ "name" : "semantic", "description" : "Semantic empowers designers and developers by creating a shared vocabulary for UI.", "homepage" : "http://www.semantic-ui.com", - "main": [ - "dist/semantic.css", - "dist/semantic.js" - ], "author": { "name" : "Jack Lukic", "web" : "http://www.jacklukic.com" @@ -23,6 +19,6 @@ "http://semantic-ui.mit-license.org/" ], "ignore": [ - "node" + "test" ] } diff --git a/src/definitions/elements/input.less b/src/definitions/elements/input.less index 2b8ca6cee..6408969f4 100755 --- a/src/definitions/elements/input.less +++ b/src/definitions/elements/input.less @@ -418,25 +418,25 @@ ---------------------*/ .ui.mini.input { - font-size: 0.8125em; + font-size: @mini; } .ui.small.input { - font-size: 0.875em; + font-size: @small; } .ui.input { - font-size: 1em; + font-size: @medium; } .ui.large.input { - font-size: 1.125em; + font-size: @large; } .ui.big.input { - font-size: 1.25em; + font-size: @big; } .ui.huge.input { - font-size: 1.375em; + font-size: @huge; } .ui.massive.input { - font-size: 1.5rem; + font-size: @massive; } .loadUIOverrides(); \ No newline at end of file diff --git a/src/themes/default/elements/list.variables b/src/themes/default/elements/list.variables index b8a528109..ad5371f46 100644 --- a/src/themes/default/elements/list.variables +++ b/src/themes/default/elements/list.variables @@ -9,7 +9,7 @@ /* List */ @listStyleType: none; @listStylePosition: outside; -@margin: 0em; +@margin: 1em 0em; @verticalPadding: 0em; @horizontalPadding: 0em;