From 7751e71c571b60dac0f6f93ba6aa40c68c606df1 Mon Sep 17 00:00:00 2001 From: deneuxa Date: Sun, 29 Sep 2013 13:19:16 +0200 Subject: [PATCH 1/6] fix type='email' fields rendering Former-commit-id: 114d619e9ebe6fc790510a7d1159fa63ec8b07b7 Former-commit-id: 956144c5ba31c53bc35d4dbe85428225a3719c78 --- build/less/collections/form.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/less/collections/form.less b/build/less/collections/form.less index 5a592ce67..c413f560e 100644 --- a/build/less/collections/form.less +++ b/build/less/collections/form.less @@ -65,6 +65,7 @@ .ui.form textarea, .ui.form input[type="text"], +.ui.form input[type="email"], .ui.form input[type="date"], .ui.form input[type="password"], .ui.form .ui.input { @@ -73,6 +74,7 @@ .ui.form textarea, .ui.form input[type="text"], +.ui.form input[type="email"], .ui.form input[type="date"], .ui.form input[type="password"] { @@ -201,6 +203,7 @@ ---------------------*/ .ui.form input[type="text"]:focus, +.ui.form input[type="email"]:focus, .ui.form input[type="password"]:focus, .ui.form textarea:focus { color: rgba(0, 0, 0, 0.85); From ff45a6b00bc7c6a882ad1507f4d4a1ca715604a9 Mon Sep 17 00:00:00 2001 From: Jack Wearden Date: Sun, 29 Sep 2013 14:51:53 +0100 Subject: [PATCH 2/6] Add white colour for button background Former-commit-id: 04810a7fc35049097c505c2dce4656ff762eb942 Former-commit-id: 48eeb2e7f1fd4bbba04f6a9e34740b2e14bcf6cc --- src/elements/button.less | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/elements/button.less b/src/elements/button.less index c9b6f0ec6..97179462e 100755 --- a/src/elements/button.less +++ b/src/elements/button.less @@ -929,6 +929,12 @@ Colors --------------------*/ +/*--- White ---*/ +.ui.white.buttons .button, +.ui.white.button { + background-color: #FFFFFF; +} + /*--- Black ---*/ .ui.black.buttons .button, .ui.black.button { @@ -1173,4 +1179,4 @@ -moz-border-radius: 0px 0px 0.2em 0.2em; -webkit-border-radius: 0px 0px 0.2em 0.2em; border-radius: 0px 0px 0.2em 0.2em; -} \ No newline at end of file +} From b86d750407afbf2119df8117bb5f63e42d524011 Mon Sep 17 00:00:00 2001 From: Jack Wearden Date: Sun, 29 Sep 2013 14:57:30 +0100 Subject: [PATCH 3/6] Add hover state for white button Former-commit-id: 29dfd5d36ac23551be9f522c71a0d54784e81fff Former-commit-id: 5624b7f2d919d66d4b3c561ab8087108f40e12c9 --- src/elements/button.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/elements/button.less b/src/elements/button.less index 97179462e..702287024 100755 --- a/src/elements/button.less +++ b/src/elements/button.less @@ -935,6 +935,11 @@ background-color: #FFFFFF; } +.ui.white.buttons .button:hover, +.ui.white.button:hover { + background-color: #A4A4A4; +} + /*--- Black ---*/ .ui.black.buttons .button, .ui.black.button { From bf363293babc5bf063451aa11619d257fcd7e1fa Mon Sep 17 00:00:00 2001 From: esarbanis Date: Mon, 30 Sep 2013 00:30:20 +0300 Subject: [PATCH 4/6] Added the input element of checkbox to the dom with 0 opacity, so that it ca This closes issue #103, but the general "element focusing" issue needs to be addressed in a common manner. Former-commit-id: d3b326a47a65a48150b4d952f455e30b72797589 Former-commit-id: 0fd9ada846b906f4a3d06015034483160d9e4447 --- src/modules/checkbox.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/checkbox.less b/src/modules/checkbox.less index 8e7a2f3e6..7274453da 100755 --- a/src/modules/checkbox.less +++ b/src/modules/checkbox.less @@ -28,7 +28,7 @@ vertical-align: middle; } .ui.checkbox input { - visibility: hidden; + opacity: 0; outline: none; } From 244048d5072b629044abe69397a47cde9a4061f7 Mon Sep 17 00:00:00 2001 From: makototateno Date: Mon, 30 Sep 2013 13:28:30 +0900 Subject: [PATCH 5/6] remove menu item "Getting Started" Former-commit-id: cd037864732debb42f189d3fabda962d3f163c33 Former-commit-id: 6b1a1bf5cf639d46e75e6f2cd26a0633b3fa67b6 --- node/src/documents/introduction.html.eco | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/node/src/documents/introduction.html.eco b/node/src/documents/introduction.html.eco index ba2cf76f8..67d429105 100755 --- a/node/src/documents/introduction.html.eco +++ b/node/src/documents/introduction.html.eco @@ -14,7 +14,6 @@ type : 'Semantic' @@ -46,4 +45,4 @@ type : 'Semantic' - \ No newline at end of file + From 13520848f4abc9747f7ef5553306d4d9dce5e25b Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Mon, 30 Sep 2013 12:36:17 -0400 Subject: [PATCH 6/6] Update README.md Adds google group to readme Former-commit-id: 9aaa5e2f88de981dea7470ffdbd440cb0f8a25fd Former-commit-id: 427378a60902f1006e53f1e7f8bfc666b0f39830 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1257cc8b8..303338811 100755 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Please [share any issues](https://github.com/jlukic/Semantic-UI/issues?state=ope If you need to create a test case, you can [fork this jsfiddle](http://jsfiddle.net/jlukic/Vbr9d/1/) to get you started. +If you want to keep track of development, please [join our google group](https://groups.google.com/forum/?hl=en#!forum/semantic-ui) ## The Library