index.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. @import '../../app.less';
  2. .g-tag-wrapper {
  3. display: inline-block;
  4. .g-tag {
  5. display: inline-block;
  6. text-align: center;
  7. .anticon-close {
  8. margin-left: 5px;
  9. }
  10. }
  11. }
  12. .g-tag-wrapper.small {
  13. .g-tag {
  14. font-size: 10px;
  15. line-height: 16px;
  16. border-radius: 2px;
  17. padding: 0 5px;
  18. }
  19. }
  20. .g-tag-wrapper.small.radius {
  21. .g-tag {
  22. border-radius: 8px;
  23. }
  24. }
  25. .g-tag-wrapper.basic {
  26. .g-tag {
  27. font-size: 12px;
  28. line-height: 28px;
  29. border-radius: 3px;
  30. padding: 0 8px;
  31. }
  32. }
  33. .g-tag-wrapper.basic.radius {
  34. .g-tag {
  35. border-radius: 14px;
  36. }
  37. }
  38. .g-tag-wrapper.default {
  39. .g-tag {
  40. background: #41A6F3;
  41. color: #fff;
  42. border: 1px solid #41A6F3;
  43. }
  44. }
  45. .g-tag-wrapper.border {
  46. .g-tag {
  47. background: #fff;
  48. color: #40A8E2;
  49. border: 1px solid #40A8E2;
  50. }
  51. }
  52. .g-tag-wrapper.disabled {
  53. .g-tag {
  54. background: #F2F2F2;
  55. color: #A7A7B7;
  56. border: 1px solid #A7A7B7;
  57. }
  58. }
  59. .g-tag-wrapper.white {
  60. .g-tag {
  61. background: #fff;
  62. color: #A7A7B7;
  63. border: 1px solid #A7A7B7;
  64. }
  65. }