관리자 페이지에서 발생하는 XpressEditor UI 버그 수정

관리자 페이지에서 XpressEditor의 select 박스 가로 폭이 비정상적으로 늘어나는 버그를 수정했습니다.

admin.css에서 min-width 값을 변경하기 때문에 가로폭이 늘어나는군요.크롬에서 디버깅해보니
min-width:auto가 무시되길래 min-wdith 속성을 width 값과 동일하게 64px로 변경했습니다.
This commit is contained in:
SMaker 2013-11-24 11:04:10 +09:00
parent 75a2a95ff0
commit dfd8dc5057
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@
.xpress-editor .tool li.html span button,
.xpress-editor .tool li.preview span button{left:2px;height:21px;background-position:right top;font:11px/21px Tahoma, Sans-serif;padding:0 4px;*overflow:visible;*line-height:20px}
.xpress-editor .tool ul.type li{float:none;display:inline;*top:1px}
.xpress-editor .tool ul.type li select{height:21px;width:64px;white-space:nowrap;min-width:auto;padding:0}
.xpress-editor .tool ul.type li select{height:21px;width:64px;white-space:nowrap;min-width:64px;padding:0}
.xpress-editor .tool ul.type li option{white-space:nowrap}
.xpress-editor.black .tool ul.type li select{color:#fff;background-color:#000}
/* Content > Tool > Button Default */

File diff suppressed because one or more lines are too long