123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- .textbox {
- position: relative;
- border: 1px solid #abafb8;
- background-color: #fff;
- vertical-align: middle;
- display: inline-block;
- overflow: hidden;
- white-space: nowrap;
- margin: 0;
- padding: 0;
- -moz-border-radius: 0px 0px 0px 0px;
- -webkit-border-radius: 0px 0px 0px 0px;
- border-radius: 0px 0px 0px 0px;
- }
- .textbox .textbox-text {
- font-size: 12px;
- border: 0;
- margin: 0;
- padding: 4px;
- white-space: normal;
- vertical-align: top;
- outline-style: none;
- resize: none;
- -moz-border-radius: 0px 0px 0px 0px;
- -webkit-border-radius: 0px 0px 0px 0px;
- border-radius: 0px 0px 0px 0px;
- }
- .textbox .textbox-text::-ms-clear,
- .textbox .textbox-text::-ms-reveal {
- display: none;
- }
- .textbox textarea.textbox-text {
- white-space: pre-wrap;
- }
- .textbox .textbox-prompt {
- font-size: 12px;
- color: #aaa;
- }
- .textbox .textbox-bgicon {
- background-position: 3px center;
- padding-left: 21px;
- }
- .textbox .textbox-button,
- .textbox .textbox-button:hover {
- position: absolute;
- top: 0;
- padding: 0;
- vertical-align: top;
- -moz-border-radius: 0 0 0 0;
- -webkit-border-radius: 0 0 0 0;
- border-radius: 0 0 0 0;
- }
- .textbox-button-right,
- .textbox-button-right:hover {
- border-width: 0 0 0 1px;
- }
- .textbox-button-left,
- .textbox-button-left:hover {
- border-width: 0 1px 0 0;
- }
- .textbox-addon {
- position: absolute;
- top: 0;
- }
- .textbox-icon {
- display: inline-block;
- width: 18px;
- height: 20px;
- overflow: hidden;
- vertical-align: top;
- background-position: center center;
- cursor: pointer;
- opacity: 0.6;
- filter: alpha(opacity=60);
- text-decoration: none;
- outline-style: none;
- }
- .textbox-icon-disabled,
- .textbox-icon-readonly {
- cursor: default;
- }
- .textbox-icon:hover {
- opacity: 1.0;
- filter: alpha(opacity=100);
- }
- .textbox-icon-disabled:hover {
- opacity: 0.6;
- filter: alpha(opacity=60);
- }
- .textbox-focused {
- border-color: #8f95a1;
- -moz-box-shadow: 0 0 3px 0 #abafb8;
- -webkit-box-shadow: 0 0 3px 0 #abafb8;
- box-shadow: 0 0 3px 0 #abafb8;
- }
- .textbox-invalid {
- border-color: #ffa8a8;
- background-color: #fff3f3;
- }
|