util.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. @import "variable";
  2. .textAlignCenter {
  3. text-align: center !important;
  4. }
  5. .textAlignRight {
  6. text-align: right !important;
  7. }
  8. .textAlignLeft {
  9. text-align: left !important;
  10. }
  11. .hide {
  12. display: none !important;
  13. }
  14. /*** Table ***/
  15. .searchFilterDropdown {
  16. background-color: @white;
  17. padding: 8px;
  18. border-radius: 6px;
  19. box-shadow: @popover-box-shadow;
  20. }
  21. .unSelected {
  22. color: @codemirror-placeholder
  23. }
  24. // @rich-text
  25. .highlight {
  26. color: @primary-color;
  27. }
  28. /*** Form ***/
  29. .formStepArea {
  30. padding: 0 5%;
  31. margin: 10px 0 30px;
  32. }
  33. /*** Modal ***/
  34. .modalLeftButton {
  35. float: left;
  36. margin-left: 6px;
  37. }
  38. /*** Breadcrumb ***/
  39. .breadcrumb {
  40. a {
  41. font-size: 1.25em;
  42. line-height: 32px;
  43. }
  44. }
  45. :global {
  46. .widget-tooltip-circle {
  47. display: inline-block;
  48. width: 10px;
  49. height: 10px;
  50. margin-right: 5px;
  51. border-radius: 50%;
  52. }
  53. }
  54. .shortcut {
  55. display: flex;
  56. align-items: center;
  57. justify-content: space-between;
  58. a {
  59. width: 38px;
  60. color: inherit;
  61. }
  62. i {
  63. font-size: 24px;
  64. // line-height: 64px;
  65. }
  66. }