12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @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 {
- .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;
- }
- }
|