Browse Source

Merge branch 'master' of github.com:jlukic/Semantic-UI

Former-commit-id: e5038573a5
Former-commit-id: 3dafba8c01
pull/258/head
jlukic 11 years ago
parent
commit
940206dbf5
5 changed files with 18 additions and 4 deletions
  1. 1
      README.md
  2. 3
      build/less/collections/form.less
  3. 3
      node/src/documents/introduction.html.eco
  4. 13
      src/elements/button.less
  5. 2
      src/modules/checkbox.less

1
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 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 ## The Library

3
build/less/collections/form.less

@ -65,6 +65,7 @@
.ui.form textarea, .ui.form textarea,
.ui.form input[type="text"], .ui.form input[type="text"],
.ui.form input[type="email"],
.ui.form input[type="date"], .ui.form input[type="date"],
.ui.form input[type="password"], .ui.form input[type="password"],
.ui.form .ui.input { .ui.form .ui.input {
@ -73,6 +74,7 @@
.ui.form textarea, .ui.form textarea,
.ui.form input[type="text"], .ui.form input[type="text"],
.ui.form input[type="email"],
.ui.form input[type="date"], .ui.form input[type="date"],
.ui.form input[type="password"] { .ui.form input[type="password"] {
@ -201,6 +203,7 @@
---------------------*/ ---------------------*/
.ui.form input[type="text"]:focus, .ui.form input[type="text"]:focus,
.ui.form input[type="email"]:focus,
.ui.form input[type="password"]:focus, .ui.form input[type="password"]:focus,
.ui.form textarea:focus { .ui.form textarea:focus {
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);

3
node/src/documents/introduction.html.eco

@ -14,7 +14,6 @@ type : 'Semantic'
<div class="peek"> <div class="peek">
<div class="ui vertical pointing secondary menu"> <div class="ui vertical pointing secondary menu">
<a class="active item">Philosophy</a> <a class="active item">Philosophy</a>
<a class="item">Getting Started</a>
</div> </div>
</div> </div>
@ -46,4 +45,4 @@ type : 'Semantic'
<i class="right arrow icon"></i> <i class="right arrow icon"></i>
</a> </a>
</div>
</div>

13
src/elements/button.less

@ -929,6 +929,17 @@
Colors Colors
--------------------*/ --------------------*/
/*--- White ---*/
.ui.white.buttons .button,
.ui.white.button {
background-color: #FFFFFF;
}
.ui.white.buttons .button:hover,
.ui.white.button:hover {
background-color: #A4A4A4;
}
/*--- Black ---*/ /*--- Black ---*/
.ui.black.buttons .button, .ui.black.buttons .button,
.ui.black.button { .ui.black.button {
@ -1173,4 +1184,4 @@
-moz-border-radius: 0px 0px 0.2em 0.2em; -moz-border-radius: 0px 0px 0.2em 0.2em;
-webkit-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; border-radius: 0px 0px 0.2em 0.2em;
}
}

2
src/modules/checkbox.less

@ -28,7 +28,7 @@
vertical-align: middle; vertical-align: middle;
} }
.ui.checkbox input { .ui.checkbox input {
visibility: hidden;
opacity: 0;
outline: none; outline: none;
} }

Loading…
Cancel
Save