Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.7 KiB

  1. @import '~primeflex/src/_variables'
  2. @import '~primeflex/src/_grid'
  3. @import '~primeflex/src/_formlayout'
  4. @import '~primeflex/src/_display'
  5. @import '~primeflex/src/_text'
  6. @import '~primeflex/src/flexbox/_flexbox'
  7. @import '~primeflex/src/_spacing'
  8. @import '~primeflex/src/_elevation'
  9. @import '~primevue/resources/themes/fluent-light/theme.css'
  10. @import '~primevue/resources/primevue.min.css'
  11. @import '~primeicons/primeicons.css'
  12. @import 'layout'
  13. @import "components/index"
  14. body
  15. height: 100%
  16. margin: 0
  17. background: #f8f9fa
  18. #app
  19. font-family: Avenir, Helvetica, Arial, sans-serif
  20. -webkit-font-smoothing: antialiased
  21. -moz-osx-font-smoothing: grayscale
  22. text-align: center
  23. color: #2c3e50
  24. display: flex
  25. flex-direction: column
  26. min-height: 100vh
  27. #nav
  28. padding: 30px
  29. a
  30. font-weight: bold
  31. color: #2c3e50
  32. &.router-link-exact-active
  33. color: #42b983
  34. // Temp location
  35. .box
  36. cursor: pointer
  37. margin-left: 1rem
  38. margin-bottom: 1rem
  39. background-color: var(--surface-e)
  40. text-align: center
  41. padding: 1rem
  42. border-radius: 4px
  43. &.selected
  44. border-color: dodgerblue
  45. &.is-plain
  46. cursor: default
  47. &.is-highlighted
  48. border-color: #50b0ff
  49. &.auto
  50. width: auto
  51. min-width: 100px
  52. .searcher.box
  53. align-items: flex-start
  54. .flex-row
  55. display: flex
  56. flex-direction: row
  57. .flex-column
  58. display: flex
  59. flex-direction: column
  60. .flex-center
  61. display: flex
  62. align-items: center
  63. justify-content: center
  64. .searcher-link
  65. &:hover
  66. color: dodgerblue
  67. cursor: pointer
  68. .searchers-row
  69. background: #f3f3f3
  70. padding: 1rem
  71. border-radius: 5px
  72. margin-bottom: 1rem