12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- @import '../../app.less';
- .g-tag-wrapper {
- display: inline-block;
- .g-tag {
- display: inline-block;
- text-align: center;
- .anticon-close {
- margin-left: 5px;
- }
- }
- }
- .g-tag-wrapper.small {
- .g-tag {
- font-size: 10px;
- line-height: 16px;
- border-radius: 2px;
- padding: 0 5px;
- }
- }
- .g-tag-wrapper.small.radius {
- .g-tag {
- border-radius: 8px;
- }
- }
- .g-tag-wrapper.basic {
- .g-tag {
- font-size: 12px;
- line-height: 28px;
- border-radius: 3px;
- padding: 0 8px;
- }
- }
- .g-tag-wrapper.basic.radius {
- .g-tag {
- border-radius: 14px;
- }
- }
- .g-tag-wrapper.default {
- .g-tag {
- background: #41A6F3;
- color: #fff;
- border: 1px solid #41A6F3;
- }
- }
- .g-tag-wrapper.border {
- .g-tag {
- background: #fff;
- color: #40A8E2;
- border: 1px solid #40A8E2;
- }
- }
- .g-tag-wrapper.disabled {
- .g-tag {
- background: #F2F2F2;
- color: #A7A7B7;
- border: 1px solid #A7A7B7;
- }
- }
- .g-tag-wrapper.white {
- .g-tag {
- background: #fff;
- color: #A7A7B7;
- border: 1px solid #A7A7B7;
- }
- }
|