Merge branch '0.1.0' of github.com:tilomitra/kimono into 0.1.0

Conflicts:
	HISTORY.md
This commit is contained in:
Eric Ferraiuolo 2013-05-24 17:19:27 +01:00
commit 10d354d347
3 changed files with 18 additions and 9 deletions

View File

@ -10,13 +10,25 @@ NEXT
* Cleaned up manual test files, removing unnecessary CSS files and cruft. * Cleaned up manual test files, removing unnecessary CSS files and cruft.
### Buttons
* Added `border-radius: 2px` to enhance the appearance the they are click-able.
### Menus
* Removed `border-radius` from vertical menus.
* Replaced blue hover for menus with light grey (`#eee`)
* Removed `font-weight: bold` from selected menu items.
0.0.2 (2013-05-16) 0.0.2 (2013-05-16)
------------------ ------------------
* (!) Rename to Pure. * (!) Renamed to Pure.
* (!) Rename CSS classname prefix to `pure`. * (!) Renamed CSS classname prefix to `pure`.
* Preview release (2). * Preview release (2).

View File

@ -10,8 +10,10 @@
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/ border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
background-color: #E6E6E6; background-color: #E6E6E6;
text-decoration: none; text-decoration: none;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
/* Transitions */ /* Transitions */
-webkit-transition: 0.1s linear -webkit-box-shadow; -webkit-transition: 0.1s linear -webkit-box-shadow;
-moz-transition: 0.1s linear -moz-box-shadow; -moz-transition: 0.1s linear -moz-box-shadow;

View File

@ -3,7 +3,6 @@
.pure-menu.pure-menu-open, .pure-menu.pure-menu-open,
.pure-menu.pure-menu-horizontal li .pure-menu-children { .pure-menu.pure-menu-horizontal li .pure-menu-children {
background: #ffffff; /* Old browsers */ background: #ffffff; /* Old browsers */
border-radius: 3px;
border: 1px solid #b7b7b7; border: 1px solid #b7b7b7;
} }
@ -36,9 +35,7 @@
/* HOVER STATES */ /* HOVER STATES */
.pure-menu li a:hover { .pure-menu li a:hover {
background: #46b9e3; background: #eee;
color: #fff;
} }
/* DISABLED STATES */ /* DISABLED STATES */
@ -71,13 +68,11 @@
/* ACTIVE MENU ITEM */ /* ACTIVE MENU ITEM */
.pure-menu .pure-menu-selected a { .pure-menu .pure-menu-selected a {
font-weight: bold;
color: #000; color: #000;
} }
/* FIXED MENU */ /* FIXED MENU */
.pure-menu.pure-menu-open.pure-menu-fixed { .pure-menu.pure-menu-open.pure-menu-fixed {
border-radius: 0;
border: none; border: none;
border-bottom: 1px solid #b7b7b7; border-bottom: 1px solid #b7b7b7;
} }