Browse Source

Fix input size overflow

pull/2053/head
jlukic 9 years ago
parent
commit
0ecfd8adba
2 changed files with 2 additions and 1 deletions
  1. 1
      src/definitions/elements/input.less
  2. 2
      src/definitions/modules/dropdown.less

1
src/definitions/elements/input.less

@ -35,6 +35,7 @@
} }
.ui.input input { .ui.input input {
margin: 0em; margin: 0em;
max-width: 100%;
flex: 1 0 auto; flex: 1 0 auto;
outline: none; outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0); -webkit-tap-highlight-color: rgba(255, 255, 255, 0);

2
src/definitions/modules/dropdown.less

@ -57,7 +57,7 @@
min-width: 100%; min-width: 100%;
white-space: @menuWrap; white-space: @menuWrap;
font-size: 1rem;
font-size: @relativeMedium;
text-shadow: none; text-shadow: none;
text-align: @menuTextAlign; text-align: @menuTextAlign;

Loading…
Cancel
Save