12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- @import '../../app.less';
- .g-input-container {
- .g-input-wrapper {
- display: flex;
- background: #F7F7F7;
- height: 44px;
- padding: 8px 0;
- line-height: 28px;
- margin-bottom: 20px;
- .g-input {
- flex: 1;
- background: transparent;
- border: none;
- padding: 10px;
- height: 28px;
- }
- .g-input-left {
- position: relative;
- .g-input-left-select {
- height: 28px;
- border-right: 1px solid #eee;
- padding-left: 10px;
- i {
- margin-left: 5px;
- font-size: 10px;
- margin-right: 10px;
- }
- }
- }
- .g-input-right {
- padding: 0 10px;
- .g-input-right-verification {
- color: #41A6F3;
- }
- .g-input-right-verification.loading {
- color: #A7A7B7;
- }
- }
- }
- .g-input-wrapper.error {
- margin-bottom: 0;
- }
- .g-input-error {
- color: #FF562E;
- font-size: 10px;
- height: 20px;
- line-height: 20px;
- }
- .select-list {
- top: 36px;
- width: 61px;
- border: 1px solid #EAEDF2;
- max-height: 200px;
- overflow-y: auto;
- list-style: none;
- margin: 0;
- padding: 5px 10px;
- position: absolute;
- background: #fff;
- }
- }
|