style.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .tool-bar {
  2. @apply flex items-center justify-between;
  3. background: #fff;
  4. height: 36px;
  5. padding: 0 8px;
  6. margin-bottom: 5px;
  7. border: 1px solid #e8eaec;
  8. .tools {
  9. .el-button {
  10. height: 24px;
  11. line-height: 16px;
  12. min-height: auto;
  13. border: none;
  14. padding: 4px;
  15. border-radius: 0;
  16. margin-right: 6px;
  17. &.is-disabled {
  18. color: #8a9194;
  19. }
  20. & + .el-button {
  21. margin-left: 0;
  22. }
  23. &:hover {
  24. background-color: #edeff5;
  25. }
  26. .iconfont {
  27. vertical-align: bottom;
  28. }
  29. }
  30. }
  31. .menus {
  32. height: 34px;
  33. line-height: 34px;
  34. .menu-item {
  35. @apply relative inline-block align-bottom cursor-pointer select-none;
  36. margin-left: 10px;
  37. padding: 0 8px;
  38. &.active {
  39. &::before {
  40. display: block;
  41. content: " ";
  42. position: absolute;
  43. left: 0;
  44. top: -1px;
  45. width: 100%;
  46. height: 35px;
  47. border: 1px solid #ddd;
  48. border-top-color: #409eff;
  49. border-bottom: none;
  50. background-color: #f5f7f9;
  51. }
  52. color: #409eff;
  53. }
  54. &.disabled {
  55. color: #ccc;
  56. cursor: not-allowed
  57. }
  58. .text {
  59. @apply relative;
  60. z-index: 1;
  61. }
  62. .icon {
  63. font-size: 17px;
  64. }
  65. }
  66. }
  67. }