themePanel.less 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .theme-panel {
  2. height: 42px;
  3. margin: 5px;
  4. padding: 0 5px 0 0;
  5. border-right: 1px dashed #eee;
  6. display: inline-block;
  7. vertical-align: middle;
  8. }
  9. .theme-list {
  10. min-width: 162px;
  11. }
  12. div a.theme-item {
  13. display: inline-block;
  14. width: 70px;
  15. height: 30px;
  16. text-align: center;
  17. line-height: 30px;
  18. padding: 0 5px;
  19. font-size: 12px;
  20. cursor: pointer;
  21. text-decoration: none;
  22. color: #000;
  23. }
  24. .theme-item-selected {
  25. width: 100px;
  26. padding: 6px 7px;
  27. border: 1px solid #fff;
  28. &:hover {
  29. background-color: @tool-hover;
  30. }
  31. .caret {
  32. margin-left: 5px;
  33. }
  34. &[disabled] {
  35. opacity: 0.5;
  36. }
  37. }
  38. .theme-item-wrap {
  39. display: inline-block;
  40. width: 80px;
  41. height: 40px;
  42. padding: 5px;
  43. }
  44. .theme-item-wrap:hover {
  45. background-color: #eff3fa;
  46. }