Browse Source

Fix missing variables in input, updates bower.json

pull/1243/head
jlukic 10 years ago
parent
commit
c1a44b5a5c
3 changed files with 9 additions and 13 deletions
  1. 6
      bower.json
  2. 14
      src/definitions/elements/input.less
  3. 2
      src/themes/default/elements/list.variables

6
bower.json

@ -2,10 +2,6 @@
"name" : "semantic", "name" : "semantic",
"description" : "Semantic empowers designers and developers by creating a shared vocabulary for UI.", "description" : "Semantic empowers designers and developers by creating a shared vocabulary for UI.",
"homepage" : "http://www.semantic-ui.com", "homepage" : "http://www.semantic-ui.com",
"main": [
"dist/semantic.css",
"dist/semantic.js"
],
"author": { "author": {
"name" : "Jack Lukic", "name" : "Jack Lukic",
"web" : "http://www.jacklukic.com" "web" : "http://www.jacklukic.com"
@ -23,6 +19,6 @@
"http://semantic-ui.mit-license.org/" "http://semantic-ui.mit-license.org/"
], ],
"ignore": [ "ignore": [
"node"
"test"
] ]
} }

14
src/definitions/elements/input.less

@ -418,25 +418,25 @@
---------------------*/ ---------------------*/
.ui.mini.input { .ui.mini.input {
font-size: 0.8125em;
font-size: @mini;
} }
.ui.small.input { .ui.small.input {
font-size: 0.875em;
font-size: @small;
} }
.ui.input { .ui.input {
font-size: 1em;
font-size: @medium;
} }
.ui.large.input { .ui.large.input {
font-size: 1.125em;
font-size: @large;
} }
.ui.big.input { .ui.big.input {
font-size: 1.25em;
font-size: @big;
} }
.ui.huge.input { .ui.huge.input {
font-size: 1.375em;
font-size: @huge;
} }
.ui.massive.input { .ui.massive.input {
font-size: 1.5rem;
font-size: @massive;
} }
.loadUIOverrides(); .loadUIOverrides();

2
src/themes/default/elements/list.variables

@ -9,7 +9,7 @@
/* List */ /* List */
@listStyleType: none; @listStyleType: none;
@listStylePosition: outside; @listStylePosition: outside;
@margin: 0em;
@margin: 1em 0em;
@verticalPadding: 0em; @verticalPadding: 0em;
@horizontalPadding: 0em; @horizontalPadding: 0em;

Loading…
Cancel
Save