Browse Source

Fixes issue with dropdown not receiving poiner cursor ala #309 #303

pull/309/merge
jlukic 11 years ago
parent
commit
f19ba45766
1 changed files with 3 additions and 2 deletions
  1. 5
      src/modules/dropdown.less

5
src/modules/dropdown.less

@ -14,6 +14,7 @@
*******************************/ *******************************/
.ui.dropdown { .ui.dropdown {
cursor: pointer;
position: relative; position: relative;
display: inline-block; display: inline-block;
@ -55,6 +56,7 @@
---------------*/ ---------------*/
.ui.dropdown .menu { .ui.dropdown .menu {
cursor: auto;
position: absolute; position: absolute;
display: none; display: none;
top: 100%; top: 100%;
@ -110,9 +112,7 @@
---------------*/ ---------------*/
.ui.dropdown > .text { .ui.dropdown > .text {
cursor: pointer;
display: inline-block; display: inline-block;
-webkit-transition: color 0.2s ease; -webkit-transition: color 0.2s ease;
-moz-transition: color 0.2s ease; -moz-transition: color 0.2s ease;
-o-transition: color 0.2s ease; -o-transition: color 0.2s ease;
@ -169,6 +169,7 @@
border-top: none; border-top: none;
} }
/******************************* /*******************************
Coupling Coupling
*******************************/ *******************************/

Loading…
Cancel
Save