123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- /* 弹框层表单 */
- fieldset {
- margin: 0;
- border: 1px solid #e6e6e6;
- padding: 10px 20px 5px 20px;
- legend {
- color: #666;
- padding: 0 10px;
- font-size: 14px
- }
- }
- .form-search {
- .layui-btn {
- height: 32px;
- line-height: 28px;
- font-size: 12px;
- padding: 0 10px
- }
- .layui-form-label {
- width: auto !important;
- padding: 0 8px;
- height: 32px;
- line-height: 30px
- }
- .layui-input-inline {
- width: 170px;
- input, select {
- width: 100%;
- height: 32px;
- padding: 2px 8px;
- line-height: 1em
- }
- }
- .layui-form-select dl {
- top: 31px;
- padding: 0
- }
- }
- .layui-form {
- input.layui-input, select.layui-select {
- line-height: 1em;
- }
- }
- /* 表单验证异常提示 */
- .label-required {
- &-prev:before {
- width: 1em;
- color: red;
- content: '*';
- display: inline-block;
- position: absolute;
- text-align: left;
- font-weight: 700;
- line-height: 1.6em;
- margin-left: -0.8em;
- }
- &:after, &-next:after {
- top: 6px;
- right: 5px;
- color: red;
- content: '*';
- position: absolute;
- margin-left: 4px;
- font-weight: 700;
- line-height: 1.8em
- }
- &-null:before {
- content: none !important
- }
- }
- /** 自定义表单样式 */
- .think-form-label {
- padding: 9px 15px;
- font-weight: 400;
- line-height: 20px;
- text-align: right
- }
- .think-form-group-right {
- border-left: none;
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .think-form-group-left input {
- border-right: none;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .think-box-shadow {
- background: #fff;
- padding: 20px 20px !important;
- box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);
- }
- /** checkbox & radio */
- label.think-checkbox, label.think-radio {
- margin-right: 10px;
- display: inline-block;
- }
- .think-checkbox, .think-radio {
- cursor: pointer;
- margin-top: 10px;
- font-weight: 400;
- line-height: 17px;
- }
- .think-checkbox input[type=checkbox] {
- width: 18px;
- height: 18px;
- border: 1px solid #dcdcdc;
- cursor: pointer;
- margin: 0 5px 0 0;
- position: relative;
- display: inline-block !important;
- background: #fff;
- appearance: none;
- box-sizing: border-box !important;
- border-radius: 1px;
- vertical-align: bottom;
- -webkit-appearance: none;
- &:checked:after {
- color: #666;
- padding: 2px;
- display: block;
- content: "\e605";
- font-size: 12px;
- font-style: normal;
- font-weight: 700;
- position: absolute;
- font-family: layui-icon !important;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale
- }
- }
- .think-radio input[type=radio] {
- width: 18px;
- height: 18px;
- cursor: pointer;
- margin: 0 5px 0 0;
- position: relative;
- border: 1px solid #dcdcdc;
- display: inline-block !important;
- box-sizing: border-box !important;
- appearance: none;
- background: #fff;
- border-radius: 1em;
- vertical-align: bottom;
- -webkit-appearance: none;
- &:checked:after {
- top: 4px;
- left: 4px;
- width: 8px;
- height: 8px;
- content: '';
- display: block;
- position: relative;
- background: #666;
- border-radius: 1em
- }
- }
|