mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Poll component supports mobile environment
- 설문조사 컴포넌트의 모바일 장치 지원 - 브라우저 자체 datepicker 를 지원하는 경우 jQuery datepicker 는 나타내지 않음 (중복 UI 정리) - 자체 datepicker 로 입력하는 경우에도 정상적으로 날짜 처리.
This commit is contained in:
parent
eef87175d4
commit
43b82c0e5f
5 changed files with 43 additions and 25 deletions
|
|
@ -1,3 +1,4 @@
|
|||
@charset "UTF-8";
|
||||
.rx_poll_default_wrap{max-width:100%;}
|
||||
.rx_poll_default_wrap .pollWidget{padding:5px;}
|
||||
.rx_poll_default{border-radius: 10px;border:1px solid #e0e0e0;overflow:auto; background-color:#ffffff; color:#000000; font-size:12px; font-family:"Open Sans","나눔바른고딕",NanumBarunGothic,"맑은 고딕","Malgun Gothic","애플 SD 산돌고딕 Neo","Apple SD Gothic Neo","돋움",Dotum,AppleGothic,Helvetica,sans-serif;}
|
||||
|
|
@ -16,7 +17,10 @@
|
|||
.rx_poll_default .rx_poll_content .poll_vote .poll_item label{display:block;width:auto}
|
||||
.rx_poll_default .rx_poll_content .poll_vote .poll_item .poll_item_delete{position:absolute;right:0;top:7px;}
|
||||
|
||||
.rx_poll_default .rx_poll_content .poll_vote .poll_item_add input[type="text"]{width:100%;
|
||||
.rx_poll_default .rx_poll_content .poll_vote .poll_item_add input[type="text"]{
|
||||
-webkit-appearance: none;
|
||||
border-radius: 0;
|
||||
width:100%;
|
||||
line-height: 25px;
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
@charset "UTF-8";
|
||||
.rx_poll_smpl_wrap{max-width:100%;}
|
||||
.rx_poll_smpl_wrap .pollWidget{padding:5px;}
|
||||
.rx_poll_smpl{box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);overflow:auto; background-color:#ffffff; color:#000000; font-size:12px; font-family:"Open Sans","나눔바른고딕",NanumBarunGothic,"맑은 고딕","Malgun Gothic","애플 SD 산돌고딕 Neo","Apple SD Gothic Neo","돋움",Dotum,AppleGothic,Helvetica,sans-serif;}
|
||||
.rx_poll_smpl{box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);border:1px solid #e0e0e0;overflow:auto; background-color:#ffffff; color:#000000; font-size:12px; font-family:"Open Sans","나눔바른고딕",NanumBarunGothic,"맑은 고딕","Malgun Gothic","애플 SD 산돌고딕 Neo","Apple SD Gothic Neo","돋움",Dotum,AppleGothic,Helvetica,sans-serif;}
|
||||
.rx_poll_smpl .rx_poll_header{padding:13px 15px 10px;overflow:auto;border-bottom:2px solid #bdbdbd;}
|
||||
.rx_poll_smpl .rx_poll_h_strong{font-weight:bold}
|
||||
.rx_poll_smpl .rx_poll_content{padding: 15px;}
|
||||
|
|
@ -17,6 +18,8 @@
|
|||
.rx_poll_smpl .rx_poll_content .poll_vote .poll_item .poll_item_delete{position:absolute;right:0;top:7px;}
|
||||
|
||||
.rx_poll_smpl .rx_poll_content .poll_vote .poll_item_add input[type="text"]{
|
||||
-webkit-appearance: none;
|
||||
border-radius: 0;
|
||||
width:100%;
|
||||
box-sizing: border-box;
|
||||
line-height: 25px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue